in reply to Re: Re: CGI to MSMQ
in thread CGI to MSMQ
This sets up the object for you. I don't see a way to pass args to the constructor, so you have to set the property for the target queue. Example:use Win32::OLE; my $myQueue = Win32::OLE->new("MessageQueue") or die("Create object failed! :P");
Then to send the message it will be so:$myQueue->{targetQueue} = "./" . $private . "/myQueue";
Note that these are analogs for what happens above, and you'll have to work it together like you want/need. I would have been more help if I had the MessageQueue object, but I'm sure my guesses are quite close.$myQueue->Send($messageText);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: CGI to MSMQ
by Anonymous Monk on Jun 16, 2003 at 10:49 UTC | |
|
Re: Re: Re: Re: CGI to MSMQ
by Anonymous Monk on Jun 16, 2003 at 09:00 UTC | |
by meredith (Friar) on Jun 16, 2003 at 12:41 UTC | |
by Anonymous Monk on Jun 17, 2003 at 13:27 UTC | |
by gellyfish (Monsignor) on Jun 17, 2003 at 13:53 UTC | |
by Anonymous Monk on Jun 17, 2003 at 15:25 UTC |