Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Public Queue With ASP.NET Problem

3 views
Skip to first unread message

Mohammad Abd Elrahman

unread,
Oct 22, 2008, 3:13:01 AM10/22/08
to
Hello,
I am using message queues in C# asp.net 3.5. I create a public message
queue and on subsequent execution of the code, I check if the queue exists.
If it does, I don't want to create it again. The queue gets created
successfully, but the problem is MessageQueue.Exists method or
GetPublicQueuesByMachine method can't find this queue once it is created, so
the control goes to the 'create' statement again and it fails by giving this
error:

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

John Breakwell (MSFT)

unread,
Oct 23, 2008, 5:32:19 AM10/23/08
to
Answered in microsoft.public.msmq.networking.

"Mohammad Abd Elrahman" <mb...@live.com> wrote in message
news:D05A5886-6998-43F7...@microsoft.com...

0 new messages