hi everyone, I'm quite new to msmq. I'm searching for a very reliable way and time- independent method of sending a file to another system. I am wondering if...
st_michael@...
Feb 15, 2001 9:01 am
311
hi all, Me and my friends are developing an application that involves sending data from the database side to the client and back using MSMQ.we are having...
meghudu@...
Feb 26, 2001 10:33 am
312
Hello Meg We use the ADO DataFactory object to send Recordsets on MSMQ 1.0. Anthony ... From: meghudu@... [mailto:meghudu@...] Sent: Monday,...
Anthony Van Zyl
anthony@...
Feb 26, 2001 10:36 am
313
hi Anthony, thanks a ton but could u plz also show us sample code as to how the recordset is set to a message body Thanx, M ... an ... and ... ...
meghudu@...
Feb 26, 2001 10:44 am
314
Hi Meg This bit of code outlines the gist of it... Set dataFactory = CreateObject("RDSServer.dataFactory") Set Rs =...
Anthony Van Zyl
anthony@...
Feb 26, 2001 10:58 am
315
Hi , I am building a Distributed application using MSMQ I have a PEC and an Independent Client installed on separate machines The client application opens the...
meghudu@...
Feb 26, 2001 3:13 pm
316
Hello Meg Are you specifying the queue name using FormatName or PathName when opening the queue to send to? My understanding is that you must specify...
Anthony Van Zyl
anthony@...
Feb 26, 2001 3:25 pm
317
You can use direct format name to guarantee your application always works off line. For example, take the following code (in VB): Dim qi as MSMQ.MSMQQueueInfo...
Keith Schaab
keithsc@...
Feb 26, 2001 4:52 pm
318
Hi , I am unable to delete private queues using the MSMQ Explorer Why is that so ?? I would appreciate any help in this matter .. Mukta...
muktabehere@...
Feb 26, 2001 5:24 pm
319
Hi .. I am building a application where the client and server communicate using MSMQ . Right now my client and server machines are on the same LAN If i wish...
muktabehere@...
Feb 26, 2001 5:31 pm
320
I don't think you have to change anything ... Suggestion : In the recent code that I wrote I read 1. COMPUTER NAME 2. QUEUE NAME 3. QUEUE ACCESS (LOCAL/REMOTE)...
Naresh Sawant
nsawant@...
Feb 26, 2001 6:48 pm
321
You might have to make changes to your code. There are several problems you might run into when going over the Internet. The first is going to be firewalls....
Keith Schaab
keithsc@...
Feb 26, 2001 8:48 pm
322
hi everyone, I'm quite new to msmq. I'm searching for a very reliable way and time- independent method of sending a file to another system. I am wondering if...
st_michael
st_michael@...
Feb 27, 2001 6:56 am
323
Hello, I am testing a MSMQ server as well as client code on the same machine . I obviously need to make this machine the PEC . Do i need to have a Network...
muktabehere@...
Feb 27, 2001 1:15 pm
324
Hi keith, Thanks for your suggestion . But in my application the server side code creates a queue at run-time .. So my client application does not know the...
meghudu@...
Feb 27, 2001 1:24 pm
325
Help ... I have been receiving dozens of these msmq messages over the past few days. There possibly for someone who left this company 2 years ago!! How can I...
G Park
garry@...
Feb 27, 2001 4:30 pm
326
You cannot create public queues when you are offline at all. You can't lookup queues when offline either. After you have a queue info structure from...
Keith Schaab
keithsc@...
Feb 27, 2001 6:58 pm
327
I realize this is an MSMQ based discussion list, but thought I would post anyway. If you run out of solutions for MSMQ, we offer a very powerful file/data...
Art.Brady@...
Feb 28, 2001 4:52 pm
328
You want to check out the fcopy utility that comes with the NT Resource Kit. This utility transfers files through MSMQ and is significantly faster than other...
Keith Schaab
keithsc@...
Feb 28, 2001 4:59 pm
329
Hi Keith, I installed NT resource Kit in my computer but i could not find fcopy utility. thanks. ... You want to check out the fcopy utility that comes with...
st_michael
st_michael@...
Mar 1, 2001 2:17 am
330
This is in one of the updates. Install the latest update at ftp://ftp.microsoft.com/reskit/nt4/x86/ and you will then have it. ... From: st_michael...
Keith Schaab
keithsc@...
Mar 1, 2001 6:54 pm
331
Hi Keith, Thanks. Just a follow question and comment : My company needs to integrate different systems over the internet. In the first place we created these...
st_michael
st_michael@...
Mar 6, 2001 5:11 pm
332
Hi all, I have suffered a problem whereby messages I've had on queues were lost on machine reboot. Someone has mentioned to me about express messages, but...
Tim Tyler
tim.tyler@...
Mar 13, 2001 4:10 pm
333
From C++: if(bRecoverable) msg->PutDelivery(MQMSG_DELIVERY_RECOVERABLE); else msg->PutDelivery(MQMSG_DELIVERY_EXPRESS); Do this before sending the message. ...
Douglas Nebeker
doug@...
Mar 13, 2001 4:13 pm
334
What happens when I use Queued components, are the messages recoverable by default or do I have set them some how ? ... From: Douglas Nebeker...
Naresh Sawant
nsawant@...
Mar 13, 2001 5:51 pm
335
Douglas, Many thanks for that - that's worked great! I'm now hitting a problem (since that change has gone in), where messages are not being delivered...have...
Tim Tyler
tim.tyler@...
Mar 14, 2001 3:08 pm
336
Without knowing more about your situation, I'd look in the local outgoing queue to see if messages are building up there. I think you could look at the queue...
Douglas Nebeker
doug@...
Mar 14, 2001 4:12 pm
337
Is it possible to use MSMQ for a java pgm to talk to a c++ program??? Not considering j++... Thanks!...
ralph_dellamorte@...
Mar 14, 2001 9:19 pm
338
When I use a path name of SERVER1\QUEUE1 everything works great. When I try DIRECT=OS:SERVER1\QUEUE1, I get the following error: hr=0xC00E0003, The queue is...
Douglas Nebeker
doug@...
Mar 16, 2001 1:00 am
339
Hi Doug From my experience, you can't use DIRECT when trying to open a queue for reading, only sending. I suppose that it make sense in that you can't read a...