Hi After trying my best to researh on the web and looking through the reference material I could gather I have come to the groups; Please help me : I have a...
manuj_chat@...
Jul 3, 2001 8:28 am
364
This is what transactions are for. If not all records are imported you abort the transaction. Use DTC transactions and your message is only removed if all...
Keith Schaab
keithsc@...
Jul 3, 2001 4:42 pm
365
Ihave a trigger on one of my queues that invokes a com object (dll), but I keep getting this error message: InvokeMSMQRuleHandlers() failed to complete the...
kcgrove@...
Jul 3, 2001 5:36 pm
366
I am fairly new to msmq. I can send a message (string) from my ce device to my desktop w/o a problem. I am confused as to how to read anything other than a...
Hagens, Dan
hagens@...
Jul 3, 2001 5:51 pm
367
I have been sending images using MSMQ. I send them as a byte array. Just keep the 2mb per message limit in mind. ... From: Hagens, Dan [mailto:hagens@...] ...
Labrie, Rene
rene.labrie@...
Jul 3, 2001 6:19 pm
368
Hi: Does msmq provide a message selector functionality, ie. I should be able to do a blocking wait on a Queue for a message with a particular Label (or on any...
mprabhala@...
Jul 3, 2001 9:08 pm
369
Hi, you can setup a queue cursor (a pointer to a position in the queue) that allows you to peek all of the messages in your queue. Each thread can cursor down...
Richard Donovan
RDonovan@...
Jul 4, 2001 6:53 am
370
Hi Richard: Thanks for your reply, if I use a cursor and peek at the message and decide to remove the message, some other thread could already have decided to...
mprabhala@...
Jul 4, 2001 1:16 pm
371
Would you possible be able to send me some code snippets that you have used in the past to send images. I am still having troubles. How do you determine when...
hagens@...
Jul 5, 2001 12:52 pm
372
You can send any data through MSMQ. Strings and binary data can be treated exactly the same. This is from MSDN: WCHAR wszMessageBody[] = L"Test Message."; ...
Keith Schaab
keithsc@...
Jul 5, 2001 5:20 pm
373
4mb is the size limit per message. 2gb is the default (and maximum) size limit for all MSMQ messages stored on one QM (ind client/PEC/PSC/BSC). ... From:...
Keith Schaab
keithsc@...
Jul 5, 2001 5:22 pm
374
This is not a feature available on currently released versions of MSMQ. Look for this feature in Windows XP. Methods corresponding to this functionality are: ...
Keith Schaab
keithsc@...
Jul 5, 2001 5:32 pm
375
If you attempt to receive a message by cursor that has already been received you get an error, not a different message. ... From: mprabhala@......
Keith Schaab
keithsc@...
Jul 5, 2001 5:32 pm
376
Hi Keith: Thanks for your reply, even with the feature in Windows XP it wont help me if I want to select a message by more than one property.... I am also...
mprabhala@...
Jul 5, 2001 5:53 pm
377
... From: mprabhala@... [mailto:mprabhala@...] Sent: Thursday, July 05, 2001 1:54 PM To: msmq@yahoogroups.com Subject: [msmq] Re: MSMQ Message...
Dehmani, Hassan (LNG)
Hassan.Dehmani@...
Jul 5, 2001 5:55 pm
378
These documents are in the clustering section of the MSMQ documentation in the Windows 2000 help file. Server clustering is for clustering of queues. Network...
Keith Schaab
keithsc@...
Jul 5, 2001 6:20 pm
379
Thanks for the response. I still don't fully understand the MQPROPVARIANT structure. For example, what is CAUB and CAI and CAUI..... where are those...
hagens@...
Jul 5, 2001 7:53 pm
380
Sorry network load balancing is supported by MSMQ on Windows 2000 for non-transactional queues. It is fully supported on Windows XP. ... From: Keith Schaab...
Keith Schaab
keithsc@...
Jul 5, 2001 8:39 pm
381
Hi Keith: Thanks for all the info. One more question, does the choice of Public or Private Queue matter when using Server clustering for clustering of queues...
mprabhala@...
Jul 5, 2001 9:05 pm
382
Hi Keith: Thanks for the info... One more question, does the choice of using Public or Private queues effect using Server clustering for clustering of queues...
mprabhala@...
Jul 5, 2001 9:06 pm
383
I keep getting an error in my trigger monitor everytime one of my rules becomes true. The error says: InvokeMSMQRuleHandlers() failed to complete the...
kcgrove@...
Jul 5, 2001 9:06 pm
384
No, you can use either public or private queues with both server clustering and network load balancing. ... From: mprabhala@......
Keith Schaab
keithsc@...
Jul 5, 2001 9:10 pm
385
Reregister your component, 3 is The system cannot find the path specified. Either your component is registered in the incorrect location or the method you...
Keith Schaab
keithsc@...
Jul 5, 2001 9:12 pm
386
maccynf@...
Jul 6, 2001 7:24 am
387
Hi, I am a novice as far as MSMQ is concerned. I was trying to install MSMQ server on a Win NT server 4.0 from Option pack 4. However I was not able to...
vap75@...
Jul 9, 2001 11:56 am
388
hi, I have a PSC , and have set up two independent clients also. I have a code which sends a message to the queue in the PSC. when i execute the code in the...
krithika_suki@...
Jul 9, 2001 12:53 pm
389
Check the PathName you are using. I have had this kind of situation before and the only thing that was wrong was the pathname. If it still does not work post...
Sawant, Naresh
NSawant@...
Jul 9, 2001 2:06 pm
390
If you want to try it with .Net you might want to post this messagge on http://discuss.develop.com (select the .donet list). But before you post search their...
Sawant, Naresh
NSawant@...
Jul 9, 2001 2:58 pm
391
Is there a way to select a message out of a queue (like through the message ID) and then delete it?...
kcgrove@...
Jul 9, 2001 3:34 pm
392
I am a novice when it comes to MSMQ. I have several questions that I need answered. Hopefully someone out there can help me.... 1. I set up a queue using...