We are sending xml files in two ways: uncompressed files are sent as strings in message body, compressed msgs are sent at binary array of bytes. no problem......
Hi, Martin I forgotton following code in previous code. ''''''''' Dim textWriter As XmlTextWriter = New XmlTextWriter("C:\myXmFile.xml", Nothing) '''''''''''''...
Well, do you want to save xml to string or directly to a file? The code I sent you was intended as xml-to-string operation. If you want to store xml to file,...
Hi, I'm trying to create a queue through VB 6.0 code. I have MSMQ set up as independent client on my PC and am trying to create a queue on a different PC set...
If this is all transactional failing and calling set abort may be replacing the message in the queue. You cannot debug this method call at all to see how it...
Keith Schaab
keithsc@...
Sep 2, 2003 6:33 pm
3644
Hi everyone, I have a situation & I am having a hard time finding any good documentation: We have private queues set up for a COM+ application, which logs to a...
Are messages building up in the retry queues or are they not being processed? ... From: Erica [mailto:ehenso@...] Sent: Tuesday, September 02, 2003 2:21...
Keith Schaab
keithsc@...
Sep 3, 2003 7:31 pm
3646
i have a client in europe who is having intermittent problems receiving q messages while connected to my server here in nyc by vpn. during the times when he is...
Help! I am trying to get my MSMQ NT service running and am getting the following errors in the events. The service will not come up. I can't manage my queues...
If the messages are not being processed listen isn't turned on or QC does not have read permissions to the queue. Did you create the queue through COM+ or...
Keith Schaab
keithsc@...
Sep 4, 2003 9:48 pm
3650
one thing you could try, if you havent already done it, is open the queue right before a receive. i'm assuming, your application opens the queue once and keeps...
Hi, I'm trying to write a message into MSMQ and as a company we prefer to use hresults rather than exceptions. I've read MSDN and I can see that it's...
msmq will resolve should keep trying to resolve the queue if the connection goes down. there is an increasing timeout (can be changed in the registry). plus...
It seems like you are running the MSMQ service as a particular user. Is this user a domain user and if so does this user have permissions to the PSC/PEC? ... ...
Keith Schaab
keithsc@...
Sep 8, 2003 8:34 pm
3656
Personally I tend to prefer to use __uuidof(MSMQQueueInfo) as this header (and other midl generated files) use the uuid declspec and it's easier to read and...
Keith Schaab
keithsc@...
Sep 8, 2003 8:39 pm
3657
So long as it's an independent client I know you can. If you are talking about dependent clients I'm not sure. ... From: rafss [mailto:rafss@...] Sent:...
Keith Schaab
keithsc@...
Sep 8, 2003 8:40 pm
3658
Remote receive is through RPC. You have to realize in order to remote receive a live connection must be established (and maintain) as there is no way to cache...
Keith Schaab
keithsc@...
Sep 8, 2003 8:40 pm
3659
As I said in the mail, __uuidof(MSMQQueueInfo) doesn't work either. I am linking in mqoa.lib. Anyway, I solved the problem by generating an idl file by copying...
Hi all, in an ASPToday article (see http://www.asptoday.com/content.asp? id=1954) I have read, that MSMQ 3 supports transport of messages btw two MSMQ servers...
... i've seen this work on the 'send' side, but not on the 'receive'. i am using the 'Arrived' event of MSMQEvent and it seems that event gets lost at some...
... this is correct. the q is opened and the application waits for the 'Arrived' event of MSMQEvent. .gary __________________________________ Do you Yahoo!? ...
I have seen this happen alot when you are debugging through the VB IDE. Do you have an arrived error event defined? I just want to make sure the case where...
I found what I need: MSSdk on undocumeted API fuctions that helps me to see outgoing messages bodies in NT4.0. BUT.... When I compiled and linked my test...