MSMQs
-
Can we create Queues to the remote Machine............ If Yes please give me the format Thanks in Advance
which type of queues u want
Piyush Vardhan Singh Programmer TAS NewDelhi India 9313077379
-
which type of queues u want
Piyush Vardhan Singh Programmer TAS NewDelhi India 9313077379
-
Can we create Queues to the remote Machine............ If Yes please give me the format Thanks in Advance
-
Can we create Queues to the remote Machine............ If Yes please give me the format Thanks in Advance
Providing you have the security privileges, you can. You can do it by calling
MessageQueue.Create("Machine\\Queue");
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
Providing you have the security privileges, you can. You can do it by calling
MessageQueue.Create("Machine\\Queue");
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
i have declared a queuepath in web.config as Inplace of IPaddress i would like to give the machine number which doesnt belongs to me. and in code behind i created the queue as string mqPath =QueuePath + "result"; MessageQueue mq = MessageQueue.Create(mqPath, false); After doing this i am getting an error: Queue cannot be created with the FormatName:Direct=TCP:IPAddress\Quename........ Help me how to create a public queue in the remote machine.
-
i have declared a queuepath in web.config as Inplace of IPaddress i would like to give the machine number which doesnt belongs to me. and in code behind i created the queue as string mqPath =QueuePath + "result"; MessageQueue mq = MessageQueue.Create(mqPath, false); After doing this i am getting an error: Queue cannot be created with the FormatName:Direct=TCP:IPAddress\Quename........ Help me how to create a public queue in the remote machine.
What exception are you getting? I suspect that you don't have the permissions to create a queue on the remote machine.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
What exception are you getting? I suspect that you don't have the permissions to create a queue on the remote machine.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
this is the exception i am getting;............. Queue cannot be created with the FormatName:Direct=TCP:IPAddress\Quename........ Even if i am connecting to my system in place of ipaddress i am getiing the same exception
Take a closer look at the exception details (hint; what does the inner exception contain) - it still looks like a permissions issue.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
Take a closer look at the exception details (hint; what does the inner exception contain) - it still looks like a permissions issue.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
NO i got the exception as Cannot create a queue with the path soap.msmq:\\http:\\IPAddress\\private$\\DevXTestQueue.
Doesn't the exception indicate anywhere WHY you can't create the queue? As Pete said, look at the innerException, or the stack trace so see exactly where the exception is being thrown from. That will give you more of a clue as to what the problem is.
Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... "I wouldn't say boo to a goose. I'm not a coward, I just realise that it would be largely pointless." Ready to Give up - Your help will be much appreciated. My website
-
Doesn't the exception indicate anywhere WHY you can't create the queue? As Pete said, look at the innerException, or the stack trace so see exactly where the exception is being thrown from. That will give you more of a clue as to what the problem is.
Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... "I wouldn't say boo to a goose. I'm not a coward, I just realise that it would be largely pointless." Ready to Give up - Your help will be much appreciated. My website
-
NO i got the exception as Cannot create a queue with the path soap.msmq:\\http:\\IPAddress\\private$\\DevXTestQueue.
Have you checked that the listening port is open?
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
honeyss wrote:
No thats the whole exception
No, it isn't. There will be a stack trace, even if there isn't an inner exception.
Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... "I wouldn't say boo to a goose. I'm not a coward, I just realise that it would be largely pointless." Ready to Give up - Your help will be much appreciated. My website