in reply to Re: Re: Re: Re: Re: CGI to MSMQ
in thread CGI to MSMQ
The preceeding code does actually create the queue, so I know that this set of objects exists and functions. Still, I can't send a message! As I mentioned elsewhere, perhaps the problem is that the queue object I receive from calling $queueInfo->Open(2,0) is unblessed?use Win32::OLE; my $queueInfo = Win32::OLE->new('MSMQ.MSMQQueueInfo'); $queueInfo->{pathname} = '.\private$\foo'; $queueInfo->Create();
Continuing thanks,
A.M.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re(7): CGI to MSMQ
by gellyfish (Monsignor) on Jun 17, 2003 at 13:53 UTC | |
by Anonymous Monk on Jun 17, 2003 at 15:25 UTC |