My computer (Win2000) is in domain A, which is served by (Win2000) domain server with MSMQ server installed. I (user) am member of another domain; these two...
Can you send your on error... statement along with your error handling code? I'm pretty sure you should be receiving MQ_ERROR_INSUFFICIENT_RESOURCES...
Keith Schaab
keithsc@...
Mar 1, 2002 5:52 pm
1712
here is the code: Private Sub PutMessage(strQueueName, strMessage) On Error GoTo ErrorHandler Set m_QueueInfo = New msmq.MSMQQueueInfo m_QueueInfo.PathName =...
Keith, Thanks for your help. It worked I am using invoking COM from triggers. It's working fine..I was testing to trigger an EXE. NOw have one more problem...
manish_shri
manish_shri@...
Mar 1, 2002 7:21 pm
1714
Triggers are running as the local system account, change the logon parameters on the service to run as a domain user. ... From: manish_shri...
Keith Schaab
keithsc@...
Mar 1, 2002 8:27 pm
1715
The code that you sent me had a MsgBox call in it. If this is the real code, then it is possible that the caller isn't handling the error properly. Otherwise...
Keith Schaab
keithsc@...
Mar 1, 2002 8:31 pm
1716
my actual code (in the component) raises an error. it looks like: Err.Raise Err.Number, Err.Source, Err.Description so I am sure it is not raising any error! ...
From MSDN: Note: DIRECT=AddressSpecification\SYSTEM$;computersystemqueue (Introduced in MSMQ 2.0 for the computer journal and dead-letter queues.) where...
Keith Schaab
keithsc@...
Mar 1, 2002 8:46 pm
1718
Raising an error is going to raise an error back to your calling application. If your calling application has on error resume next you are discarding the...
Keith Schaab
keithsc@...
Mar 1, 2002 8:52 pm
1719
I was handling the errors in the calling application too .. but as you have rightly pointed out, this error was never raised. I am sending the queues with...
Hi, Environment - MSMQ2.0. In my program, how can I verify if a public queue name is a valid queue name in the MSMQ or not? Currently I am using OpenQueue and...
Hi, I have a problem with MSMQ Transactions. I am using MSMQ 2.0 with Internal Transaction for guaranteed once and only once message sending. The problem is...
ANAND
anand.jammi@...
Mar 4, 2002 7:52 am
1722
I'm writting an application that should spread information on a private network. I've written so far a program to test performances. my problem is that I could...
titoeuf
titoeuf@...
Mar 4, 2002 8:45 am
1723
Hello! I have application which uses MSMQ 2.0 on Win2000 server. I use COM interfaces to access MSMQ functionality. After some time of running my application...
... I use WinXP Pro only. I don't have MSMQ bridge or anything just several computers under WinXP using private queues and 1 multicast @ Thanks...
titoeuf
titoeuf@...
Mar 4, 2002 10:46 am
1725
Srikanth, Using PathName, you can call MSMQQueueInfo.Open, MSMQQueueInfo.Refresh, or MSMQQuery.LookupQueue, MQPathNameToFormatName(), ...
Keith Schaab
keithsc@...
Mar 5, 2002 2:38 pm
1726
LSASS is the lanman security service. Sounds like you are leaking queries, are you using MQLocateXXX or MSMQQuery? You have to call MQFreeMemory() after...
Keith Schaab
keithsc@...
Mar 5, 2002 3:37 pm
1727
Is this a question related to MSMQ or using broadcast packets through a socket? If you are using sockets it sounds like you are being synchronous, bad idea....
Keith Schaab
keithsc@...
Mar 5, 2002 5:45 pm
1728
Anand, I'm requesting verification of this but I believe transactional messages are not ordered until you call commit. Therefore they will be delivered in the...
Keith Schaab
keithsc@...
Mar 5, 2002 5:56 pm
1729
This morning I tried to purge a queue from the MSMQ Client on an NT WorkStation. The queue itself resides on an Win2K Server. For some reason this brought...
Hollibaugh, Mike
mhollibaugh@...
Mar 5, 2002 6:09 pm
1730
Hi, folks. What is the relation between those two things? I encountered the problem with sending / receiving messages to queues, and after some time of msg...
What is the XACT Dead Letter queue, and how do messages get in there?...
Hollibaugh, Mike
mhollibaugh@...
Mar 5, 2002 10:00 pm
1732
I use COM components, not API - so I think they are destroyed as usual COMponents. I use one API function from Admin API - MQMgmtGetInfo, but I avoided calling...
Hi All, I just wanted to share an interesting problem that I faced. The description is going to be a bit longer because I would like to explain all my...
Purging a queue takes a lock which prevents messages from being received. If you were dealing with a lot of messages both in the queue you were purging and...
Keith Schaab
keithsc@...
Mar 6, 2002 12:00 am
1735
Hi Keith, I have the same problem, on the same configuration.(msmq 2 on win2000) The MQFreeMemory() call can be used on VB? When we should use this: after each...
Hi Keith, i want to load balance msmq servers.is there any way to do it except to do it at the application level by hard coding the paths to different msmq...
vishwas_kakkar
vishwas_kakkar@...
Mar 6, 2002 1:37 am
1737
Keith, i want to achieve load balancing on 2 msmq servers.how can it be possible with a single client configured to send messages to 2 different servers.Even...
vishwas_kakkar
vishwas_kakkar@...
Mar 6, 2002 2:13 am
1738
Are you using transactional messages? Could you give me a rate in messages per second? ... From: titoeuf [mailto:titoeuf@...] Sent: Monday, March 04,...
Keith Schaab
keithsc@...
Mar 6, 2002 3:04 am
1739
I checked the MSDN and apparently in MSMQ 3.0 there is a LookupId property which will return the message ID, but we're using 2.0 and aren't really in a...