System.Messaging.MessageQueueException: Queue with the specified path name
is already registered in the DS.
The GetPublicQueuesByMachine method does't find this queue and gives the
Unhandled Execution Error and MessageQueueException with message text as
NULL.
But GetPrivateQueuesByMachine method works fine and retrieves all private
queues. Another thing is, if the same code is run in a Windows Application,
it works fine and retrieves the public queue.
So why does it not find the PUBLIC queue in a WEB application?
and if i switched the code to manage PRIVATE Queue no problems found....!!
here is my code. Please help.
if (!MessageQueue.Exists(".\\requestq")) //???
{
MessageQueue requestq = MessageQueue.Create(".\\requestq");
}
MessageQueue[] mqlist = null;
try
{
mqlist = MessageQueue.GetPublicQueuesByMachine("."); //???
}
catch (MessageQueueException ex)
{
string mesg = ex.Message;
}
--
Sakhrawy
If you feel you must post to multiple groups it is helpful if you
cross-post one message to multiple groups rather than posting a message
to a group and then a second message to a second group and so on. If
you cross-post at least the newsgroup reading software can recognise the
message is posted in multiple groups and can mark them as read in all
groups at once.