... Win 2K Pro, SP2 No The Q is not remote. And apparently, that does not make any difference. Regards, Ashrut Associate Consultant i-flex solutions limited ...
I would recommend you call support to resolve this issue. ... From: ashrut.khatter@... [mailto:ashrut.khatter@...] Sent: Sunday,...
Keith Schaab
keithsc@...
Mar 3, 2003 5:26 pm
3262
Thanks for your time Keith. The problem's already reported to MS Support and they have been able to simulate it at their end as well. And the feedback from MS...
I am not sure about the administration account being mirrored. I dont think we have access rights that allow anonymous users privileges. Yes we can ping the...
s_panuganti
s_panuganti@...
Mar 5, 2003 1:56 pm
3264
I am not sure about the administration account being mirrored. I dont think we have access rights that allow anonymous users privileges. Yes we can ping the...
s_panuganti
s_panuganti@...
Mar 5, 2003 1:56 pm
3265
If the administrator account isn't mirrored and anonymous users don't have everyone privileges then you will not be able to send to that queue as that...
Keith Schaab
keithsc@...
Mar 5, 2003 5:31 pm
3266
Hmmm...do you have the case number? I looked for this error in the case archive when you first sent out mail and I didn't encounter your case. ... From:...
Keith Schaab
keithsc@...
Mar 5, 2003 5:38 pm
3267
Hi All, I want to rewrite the MSMQ application using VB. Could any of you suggest a good sample web site or VB code for me please...
sskannan
sskannan@...
Mar 12, 2003 11:17 am
3268
Hello, Does anyone know of a way to send a user defined type via MSMQ, something like: type myDef bytes(10) as byte name as string*10 end type public myRec as...
Rick Klenotiz
rjk@...
Mar 12, 2003 2:30 pm
3269
You can only attach automation compliant data types to MSMQMessage.Body as it takes a VARIANT type. Your type is not automation compliant. _____ From: Rick...
Keith Schaab
keithsc@...
Mar 13, 2003 8:11 am
3270
Hi All We have a Win2k server running a number of MSMQ 2.0 queues (public), which are accessed (read/write via dependent client) by some Win2k and NT4 PC's. ...
itavenger2003
itavenger2003@...
Mar 13, 2003 8:34 am
3271
Rob, I have a few questions for you in order to try to help you with your problem: I want to make sure I understand you correctly, you are using dependent ...
Keith Schaab
keithsc@...
Mar 13, 2003 10:54 pm
3272
http://msdn.microsoft.com/library/default.asp?url=/code/list/msmq.asp ... From: sskannan [mailto:sskannan@...] Sent: Wednesday, March 12, 2003 3:18 AM ...
Keith Schaab
keithsc@...
Mar 13, 2003 10:57 pm
3273
Thanks for the quick response Keith! To answer your questions:- We are only using Dependent clients. NT4 PC's using MQ1.0 are SP6a with mqqm.dll V1.0.0.262 ...
itavenger2003
itavenger2003@...
Mar 14, 2003 8:24 am
3274
... url=/code/list/msmq.asp ... and...
sskannan
sskannan@...
Mar 14, 2003 10:24 am
3275
... url=/code/list/msmq.asp ... and...
sskannan
sskannan@...
Mar 14, 2003 10:24 am
3276
Thanks for your reply. My problem also similar to Message 3273. I don't understant why it is happening. The performance montor goes to 100% and uses all the...
sskannan
sskannan@...
Mar 14, 2003 10:27 am
3277
Rob, One thing you will need to do is reapply SP6a, v1.0.0.262 of mqqm.dll is the NT Option Pack. V1.0.0.298 is the correct version for SP6a. Unfortunately...
Keith Schaab
keithsc@...
Mar 14, 2003 5:52 pm
3278
Are you polling the queue in a tight loop? ... From: sskannan [mailto:sskannan@...] Sent: Friday, March 14, 2003 2:28 AM To: msmq@yahoogroups.com Thanks...
Keith Schaab
keithsc@...
Mar 14, 2003 5:55 pm
3279
Actually. I send messages from web server to the message queue server. Then receive the message from the Queue and do some process. If that process returns...
sskannan
sskannan@...
Mar 17, 2003 10:00 am
3280
Web services attempt to receive is probably failing due to security permissions. Web services run in specific user contexts, are you using ASP or ASPX? If...
Keith Schaab
keithsc@...
Mar 17, 2003 8:56 pm
3281
Hi Keith, Thanks for your reply. I didn't see your reply when I was working. I am in London.I am using ASP. I don't see any security problem because I have...
sskannan
sskannan@...
Mar 18, 2003 10:57 am
3282
Hello gentlemen, I am new to the group, and hope to be somewhat of a contributor here, but I am not a developer. My company makes a distributed commercial ...
Hello, Let me explain outgoing queues as it applies to MSMQ. Any time you send a message it is persisted in memory (express) or on disk (recoverable and...
Keith Schaab
keithsc@...
Mar 19, 2003 9:27 pm
3284
ArrivedError is not being handled? Empty I would suspect there is a timeout given to EnableNotification and there is an ArrivedError handling this event. CPU...
Keith Schaab
keithsc@...
Mar 19, 2003 9:40 pm
3285
I am having issues installing MSMQ on NT 4.0 with SQL 2000. I have ready the articles about this hot fix and how to use it but there is no where to download...
rlessnessman
rrojas@...
Mar 19, 2003 10:04 pm
3286
Hi All... i want to learn MSMQ. Pls Help me how to start. what and all i need to install MSMQ. Where to start to learn MSMQ. Regards yugs....
Thanks for your time Keith. Yes your are correct ArrivedError is not handled and it is returning null. Unfortunately, I am not allowed to send the code. Please...
sskannan
sskannan@...
Mar 20, 2003 12:18 pm
3288
Here is the code for receive message Will this help you to find the problem Public Function ReceiveMessage(ByVal strReceivedThis As String) As String Dim Qinfo...
sskannan
sskannan@...
Mar 20, 2003 12:26 pm
3289
Hi Keith if I set the following statement in the ReceiveMassage I sent earlier Set Qmsg = Q.Receive(ReceiveTimeout:=0) as Set Qmsg = Q.Receive() will it be...