Sounds like you are sending express messages. You have to mark your messages as recoverable or send to a transactional queue for messages to survive a restart...
Keith Schaab
keithsc@...
Apr 2, 2001 8:23 pm
347
I don't know which version you are using but version 1 (in NT 4) is very flacky. We use it to have reports delivered to user's machines and everything would...
cenon@...
May 14, 2001 5:58 am
348
The version of MSMQ1.0 in NT4 SP6 is quite reliable. Microsoft is committed to addressing any known problem: please work with Microsoft PSS on reporting...
Ilan Caron
ilanc@...
May 14, 2001 6:33 am
349
Has anyone else seen the following entry in their application error log? This crops up sporadically in an application I'm working on, and I haven't found the...
Steve Swope
steveswope@...
May 15, 2001 6:39 pm
350
I have an app that continually reads from a queue and processes requests About once or twice a day, the applications get the following error: 0xC00E004B -...
Douglas Nebeker
doug@...
Jun 1, 2001 4:19 pm
351
Got a weird, undefined MSMQ error. The error number is 0xC00E006A. I'm working on a Win2000 Advanced Server (not a domain controller) with MSMQ Server...
Leonid Bensman
lbensman@...
Jun 20, 2001 9:17 pm
352
I don't have any documentation in front of me at the moment, but most MS APIs typically require a \\ in front of the machine name if it is given. ... From:...
Douglas Nebeker
doug@...
Jun 20, 2001 9:22 pm
353
You cannot locate a private queue. You must use private or direct formats to open a private queue. If you want to locate queue you need to set up Active...
Keith Schaab
keithsc@...
Jun 21, 2001 2:22 pm
354
When using MSMQ it is not necessary to have the \\. I'm not sure what happens if you put them in there, but I figure you would get an error. ... From: Douglas...
Keith Schaab
keithsc@...
Jun 21, 2001 2:23 pm
355
Hello, I'm trying to send a recordset to MSMQ but I got error assigning a recordset to the message body "No such interface supported". I will apreciate some...
mmorales@...
Jun 28, 2001 2:21 pm
356
This requires NT service pack 4 or higher. If you have a higher service pack then you installed MSMQ after installing the service pack. You should always...
Keith Schaab
keithsc@...
Jun 28, 2001 4:36 pm
357
Thank you, but I already installed NT service pack 4 and I still got the same error. Â -----Original Message----- From: Keith Schaab...
Melva Morales
mmorales@...
Jun 29, 2001 3:53 am
358
If you right click mqoa.dll in the \winnt\system32 directory what is the version number? ... From: Melva Morales [mailto:mmorales@...] Sent:...
Keith Schaab
keithsc@...
Jun 29, 2001 4:08 pm
359
The version is 5.0.0.720 Melva Morales (954)453-7213 ... From: Keith Schaab [mailto:keithsc@...] Sent: Friday, June 29, 2001 12:06 PM To:...
Melva Morales
mmorales@...
Jun 29, 2001 4:15 pm
360
This is off a Windows 2000 box. 720 is the build for Win2k SP 2. You should be getting this error on a Windows NT 4.0 box. Are you getting this error on a...
Keith Schaab
keithsc@...
Jun 29, 2001 4:31 pm
361
Forget it, thank you so much, but I already resolved the problem. The solution was create a disconected recordset, in other words before send the recordset,...
Melva Morales
mmorales@...
Jun 29, 2001 4:43 pm
362
Great! There is a problem that will create this error on NT 4 prior to SP 4 which is what I thought your problem might be. ADO recordsets (when offline <G>)...
Keith Schaab
keithsc@...
Jun 29, 2001 4:50 pm
363
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@......