i never created a queue from my program, but dont u have to specify that u r trying to create a pvt queue? if he tries to create a public Q, u'll certainly get...
Yes i.e. it, he has to specify that it is a private queue. I was just giving a general explanation. ... __________________________________________________ Do...
You can't create public queues either, you were right. ... From: Saikrishna Nori [mailto:sai_nori@...] Sent: Tuesday, October 01, 2002 10:04 AM To:...
Keith Schaab
keithsc@...
Oct 1, 2002 5:08 pm
2887
I've been searching MSMQ documentation for the answer to this question but haven't found anything. I'm architecting an application that will be using MSMQ for...
mattm_58
meiser@...
Oct 3, 2002 4:15 pm
2888
Open the queue, send many messages. There is performance over head with opening the queue and closing the queue. Even if you are just using direct format...
Keith Schaab
keithsc@...
Oct 3, 2002 4:33 pm
2889
I think he is wrongly assuming "opening" a queue like "opening" a database connection... Itz not like that, because u can send messages to a queue even when...
Actually if you open a queue via path name there are AD hits for each time you do (one for resolving path name, another for resolving queue security) so plus...
Keith Schaab
keithsc@...
Oct 4, 2002 6:01 pm
2891
hi Friends can you pls give me a sample code for sending messages to a transactional Que in VB. Or give some links about msmq programming which gives exampls ...
Hi, We have MSMQ server installed in Win2k domain controller. When I post a message to a queue, sometimes I'm getting "MQ_ERROR_SERVICE_NOT_AVAILABLE" error. ...
hema, Shall i see your Code what you have used to send message. Also Tell from where you tried to send the messge to the queue .Send more details ... <HR> ...
normally it happens if MSMQ service is not running on the machine from where u r posting messages, or on the target machine(if you are using path names). make...
We've installed MSMQ in workgroup mode and periodically the following error is raised in our VB code: MQ_ERROR_SERVICE_NOT_AVAILABLE - Cannot connect to the...
Sara Ramert
sramert@...
Oct 7, 2002 5:18 pm
2896
Hi, Could someone give a code snippet (C#, .Net framework) or point to an example of using direct format names with remote private queues. I am getting the...
Epperson, James D
James.Epperson@...
Oct 8, 2002 6:45 pm
2897
And the answer is: MessageQueue.Path =@"FormatName:DIRECT=OS:machine\private$\test"; adding the 'FormatName:' to the front of the path. Thanks...
What service pack do you have applied to win2k? Which version of Win2k is the server? Are you sure that you are not hitting licensing issues where you are...
Keith Schaab
keithsc@...
Oct 8, 2002 8:22 pm
2900
First of all remove that "@" before the path. ... __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos...
hi i need very urgent help in developing a program which illustrates features such as tracking changes and recovery, i am knew to MSMQ. I need to create...
@ is literal string, it means he doesn't want to escape his escape characters (@'\' = '\\'). I believe he resolved his problem since he wasn't including...
Keith Schaab
keithsc@...
Oct 9, 2002 4:17 pm
2903
You fail to mention what help you need. ... From: singh13_maninder [mailto:singh13_maninder@...] Sent: Wednesday, October 09, 2002 2:22 AM To:...
Keith Schaab
keithsc@...
Oct 9, 2002 4:19 pm
2904
hi actually i need help in developing the program , i dont know anything about MSMQ and its programming and i need to know which languages i can use to write...
As far as languages, any language that supports COM. You can use the native API from languages like Visual C++ (or another) and Delphi. As far as help...
Keith Schaab
keithsc@...
Oct 10, 2002 7:02 pm
2906
We are using NT4 Sp6, can I install two MSMQ with the same PEC name in the same domian, if not, can I install it on a different domain with the same PEC name?...
jlee528
jlee528@...
Oct 14, 2002 7:49 pm
2907
You can't install two PECs with the same name. There will be name conflicts just to begin with. Installing two machines with the same name in the same domain...
Keith Schaab
keithsc@...
Oct 14, 2002 8:03 pm
2908
Has anyone been able to configure MSMQ through a vb or vb.net program. I'm ref the msmq trigobjs.dll and my code in vb 6.0 looks like this: Dim rulObj As...
Message is not a valid property, try Message.Body or Message.Label. Secondly the MSMQ trigger components aren't meant to be used externally. ... From: quee6297...
Keith Schaab
keithsc@...
Oct 15, 2002 3:40 am
2910
why are you having to create rules dynamically? even if i had to do it, what i'd do is, write to the registry directly instead of going through msmq triggers...