Search the web
Sign In
New User? Sign Up
msmq · Microsoft MSMQ Discussion List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4081 - 4110 of 4356   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4081
I am using win2k msmq 2.0 trying to do a remote peek opening the queue using direct format name. what kind of network call does that make? RPC? what are...
Michael Ledesma
basket_baller2
Offline Send Email
Mar 1, 2004
4:39 pm
4082
Any remote read is done using RPC. The number of connections is limited by the sockets layer. 50 concurrent connections aren't bad, but if you open/close the...
Keith Schaab
keithsc@...
Send Email
Mar 1, 2004
4:46 pm
4083
Thanks for all the good info Keith. I have just one more question. When you say a connection, do you mean 1 computer? For example, 1 client opens a queue on a...
Michael Ledesma
basket_baller2
Offline Send Email
Mar 1, 2004
4:50 pm
4084
If you open 1 queue then open another queue while the first queue is open this is one connection therefore client goes to RPC port (TCP 135) and negotiates a...
Keith Schaab
keithsc@...
Send Email
Mar 1, 2004
5:04 pm
4085
Since you are using Win2K, you might get more mileage out of putting IIS (or Cassini) in front of your MSMQ server, make an .aspx that takes HTTP requests and...
SteveC
stevecatomic9
Offline Send Email
Mar 1, 2004
6:31 pm
4086
I want to handle trigger operations(creating triggers, adding rules etc.) programmatically and want no manuel administration. Is it possible or not? Thanks a...
ismailgunes81
Offline Send Email
Mar 3, 2004
7:32 am
4087
Waht I did was use the Trigadm.exe and use a python script to run the commands and capture the output of these commands. when you create a trigger it spits...
Michael Ledesma
basket_baller2
Offline Send Email
Mar 3, 2004
12:23 pm
4088
It is very possible. If you are using the .NET Framework, there are tons of good samples out there. Google a little on it. If you are using a COM language,...
SteveC
stevecatomic9
Offline Send Email
Mar 3, 2004
8:35 pm
4089
Just as an FYI, the COM objects for triggers administration is meant as internal only, so it may change or might work unexpectedly. ... From: SteveC...
Keith Schaab
keithsc@...
Send Email
Mar 4, 2004
2:15 pm
4090
But aren't the .NET MSMQ classes for Triggers just wrappers for the COM objects? I'm a little confused... ... From: Keith Schaab...
SteveC
stevecatomic9
Offline Send Email
Mar 4, 2004
4:28 pm
4091
.NET MSMQ classes for triggers? Are you using Whidbey by any chance? ... From: SteveC [mailto:stevec@...] Sent: Thursday, March 04, 2004 8:28 AM To:...
Keith Schaab
keithsc@...
Send Email
Mar 4, 2004
4:36 pm
4092
Hello! I am getting this error occasionaly... The strange thing is that I use only COM objects, not MSMQ C API where MQReceiveMessage and...
Bodlák Martin
mbodlak
Offline Send Email
Mar 10, 2004
10:24 am
4093
I did not see any KB articles on it. Just curious, in the case when you hit this, how big is the label of the message you are receiving? This seems like a...
Keith Schaab
keithsc@...
Send Email
Mar 12, 2004
7:00 pm
4094
Hi Friends, I am asking this question out of curiosity. We have written an application to send messages to a queue. While testing it on Win2K, I found that the...
Rakhee Khilnani
krakhee20
Offline Send Email
Mar 18, 2004
1:10 pm
4095
i never had to look at it, but if i had to guess, i'd say. may be it has something to do with how the message was posted? the app posting the messages is doing...
Saikrishna Nori
sai_nori
Offline Send Email
Mar 18, 2004
1:46 pm
4096
This string is case insensitive. The outgoing queue string is going to be the string you first opened the queue up with, so if there is a DIRECT=OS and a...
Keith Schaab
keithsc@...
Send Email
Mar 18, 2004
7:48 pm
4097
Hi, i have running my MSMQ and COM+ (.NET component service) for quite sometime. By lately due to heavy load. i realise that my MSMQ trigger that will trigger...
Eric Tan Koon Ming
koonming8
Offline Send Email
Mar 19, 2004
9:40 am
4098
Thanks for your reply. However, I am not specifying the moniker string as such. Actually, it is the 'response queue name' property of the acknowledgment ...
Rakhee Khilnani
krakhee20
Offline Send Email
Mar 19, 2004
11:26 am
4099
rakhee...biggest advantae to using formtnames is there is no lookup and if the network connection is broke for some reason, the message will be stored and...
Saikrishna Nori
sai_nori
Offline Send Email
Mar 19, 2004
2:14 pm
4100
Is the component transactional? Do you have pooling turned on for the component or application? ... From: Eric Tan Koon Ming [mailto:koonming8@...] ...
Keith Schaab
keithsc@...
Send Email
Mar 19, 2004
6:44 pm
4101
OK, when you receive an acknowledgement message the PROPID_M_RESP_QUEUE is set to the format name of the queue from which the message was sent. Therefore the...
Keith Schaab
keithsc@...
Send Email
Mar 19, 2004
9:19 pm
4102
Thanks for the info SaiKrishna, The existing application has been written such that it will uderstand only pathnames, but I shall keep a note of this point ......
Rakhee Khilnani
krakhee20
Offline Send Email
Mar 23, 2004
10:04 am
4103
Hi Keith, Thanks for taking the trouble to check the code. However, the lower case "os" still remains a mystery. Nowhere in the application are we formatting...
Rakhee Khilnani
krakhee20
Offline Send Email
Mar 23, 2004
10:11 am
4104
Sri, Sorry to barge in...but we too seem to be having the same problem. Its the same setup and scenario (using private queues in VB application and accessing...
sirisha_peyyeti
Offline Send Email
Mar 23, 2004
11:49 am
4105
In regards to losing messages, this means that you are using express delivery; if you were to use recoverable message type then the messages would not be lost....
Keith Schaab
keithsc@...
Send Email
Mar 23, 2004
5:24 pm
4106
Hi Keith, Thanks for the response.... Yeah, we are not using recoverable messages (since in our condition speed is of high importance) The situation in the...
sirisha_peyyeti
Offline Send Email
Mar 24, 2004
4:09 am
4107
How is this a problem? ... _________________________________________________________________ Find a broadband plan that fits. Great local deals on high-speed...
Michael Ledesma
basket_baller2
Offline Send Email
Mar 24, 2004
11:53 am
4108
Nope not a problem, as I said earlier everything is working fine. I was just curious to find out why was it happening this way. ... From: Michael Ledesma...
Rakhee Khilnani
krakhee20
Offline Send Email
Mar 24, 2004
12:00 pm
4109
Yeah, we are not using recoverable messages (since in our condition speed is of high importance) [Keith] If your messages need to be fault tolerant they should...
Keith Schaab
keithsc@...
Send Email
Mar 24, 2004
2:48 pm
4110
Keith, During the initial stages of checking the usage of MSMQ we did make a check on the performance difference b/w recoverable and express messages...and...
sirisha_peyyeti
Offline Send Email
Mar 25, 2004
4:26 am
Messages 4081 - 4110 of 4356   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help