Hi, Has any one got a need way of doing this, apart from opening a queue and peeking the lot with a count. I understand MSMQ version 3 has this option but as...
i think unless you have msmq 3.0, you have to loop through and count the messages ... _________________________________________________________________ ...
Messages in queue performance counters give you this number and they can be accessed programmatically. ... From: Saikrishna Nori [mailto:sai_nori@...] ...
Keith Schaab
keithsc@...
Nov 1, 2002 8:44 pm
2959
Please how can i fend the component of MSMQ 3.0 Thanks for response...
euromagfr
euromagfr@...
Nov 4, 2002 4:02 pm
2960
What language are you using? MSMQ 3.0 object definitions are contained in the MSMQ typelib which is in mqoa.dll on a MSMQ 3.0 machine. ... From: euromagfr...
Hello, I am considering MSMQ to handle some file delivery isssues. Can someone tell me if these are doable? 1. In simple examination it looks to me if I have...
c_daniel2002
c_daniel2002@...
Nov 4, 2002 7:36 pm
2963
Chris Not knowing every thing about your requirement, it'd be tough to say what is the "right" way to do it, but i defenitely think that trying to move file ...
Please why this code is not valid Dim mRecept As New MSMQMessage Dim qinfo As New MSMQQueueInfo Dim qRecept As New MSMQQueue strFormatName = "DIRECT=TCP:" &...
please why this code is not valid for reception, I use NT server and MSMQ 2.0 : Dim mRecept As New MSMQMessage Dim qinfo As New MSMQQueueInfo Dim qRecept As...
Please why this code is not valid : Dim mRecept As New MSMQMessage Dim qinfo As New MSMQQueueInfo Dim qRecept As New MSMQQueue strFormatName = "DIRECT=TCP:" &...
foro ne, you dont have to do new on MSMQQueue and MSMQMessage. You just Dim them and then assign the objects returned from MSMQQueueInfo and MSMQQueue ...
Please why the methode open for receive don't work with FormatName strFormatName = "DIRECT=TCP:" & txtHost.Text & "\" & txtQueue.Text qinfo.FormatName =...
It would be extremely useful to know what the error was. Also, I assume that txtHost.Text is a valid IP that you can ping and txtQueue.Text is a valid queue...
Are you using MSMQ 1? You cannot open remote queues for receive access using direct format names using MSMQ 1. ... From: euromagfr...
Keith Schaab
keithsc@...
Nov 5, 2002 5:53 pm
2971
You are using NT 4.0 server and MSMQ 1.0 or Win2k and MSMQ 2.0; you cannot be running NT server and MSMQ 2.0. What error(s) do you get and on which line(s)? ...
Keith Schaab
keithsc@...
Nov 5, 2002 5:56 pm
2972
You might want to look at the utility fcopy that comes with the NT Server and Win2k Server resource kits. This utility utilizes MSMQ to transfer files. The...
Keith Schaab
keithsc@...
Nov 5, 2002 6:01 pm
2973
please why this code is not valid for reception, I use windows 200 and MSMQ 2.0 : Dim mRecept As New MSMQMessage Dim qinfo As New MSMQQueueInfo Dim qRecept As...
I'm not a VB expert but it would seem that you should not be using new with qRecept and mRecept because you are assigning objects to them. ... From: euromagfr...
Keith Schaab
keithsc@...
Nov 5, 2002 6:23 pm
2975
Hi, Keith, Refering back to your message 994, you have mentioned that one of the cause of error 0xc00e0027 Insufficient resources as: "if you call...
What I was referring to is that you cannot have more than 64 concurrent requests on the same queue from the same process. For example if you are using...
Keith Schaab
keithsc@...
Nov 7, 2002 9:49 pm
2977
Hey there, New to this list but need some help with MSMQ so decided to ask the experts :-) I want to add a performance alert and be notified when there is more...
eu_1009
eu_1009@...
Nov 8, 2002 2:24 pm
2978
Is MSMQ Installed on those servers? ... _________________________________________________________________ Tired of spam? Get advanced junk mail protection with...
Yes, it is installed... ... more ... the ... somehow?...
eu_1009
eu_1009@...
Nov 8, 2002 3:20 pm
2980
Well, the only thing I can tell you is that I looked at my servers, and the only servers I dont see the MSMQ performance monitor on were servers where MSMQ...
MSMQ Service counters are on that machine? You have MSMQ installed and the service is running? ... From: eu_1009 [mailto:eu_1009@...] Sent: Friday,...
Keith Schaab
keithsc@...
Nov 8, 2002 5:39 pm
2982
Hi, Yep i've just checked it, it's installed and the service is running but i still can't see "msmq queue" on the specific server. It's a DC if it's any help. ...
eu_1009
eu_1009@...
Nov 10, 2002 7:21 am
2983
In "event viewer" i have the following message: "The open procedure for service MSMQ in DLL C:\WINNT\SYSTEM32 \MQPERF.DLL failed. Performance data for this...
eu_1009
eu_1009@...
Nov 10, 2002 2:35 pm
2984
Hello all, I'm trying to add a stand alone Windows 2000 professional machine running MSMQ 2.0 to a MSMQ 1.0 enterprise. I want the windows 2000 professional...
Use direct format names to send, you can use these to send to public or private queues. Example: direct=os:mycomputer\myqueue to send/receive to public queue...