I have .net 4.0 application ported from net 3.5 that uses net.msmq running on server 2008 x64

Setup

  • net.msmq Service with address "net.msmq://localhost/private/msmqdataservice.svc"
  • net.msmq endpoing with address "net.msmq://localhost/private/msmqdataservice.svc"
  • queue in MSMQ -> name = "$private\msmqdataservice.svc"

everything is working on production right now with .net 3.5.

I installed .net 4.0 on server and created new site to for staging on same box.

New staging msmq setup is

  • net.msmq Service with address "net.msmq://localhost/private/staging/msmqdataservice.svc"
  • net.msmq endpoing with address "net.msmq://localhost/private/staging/msmqdataservice.svc"
  • queue in MSMQ -> name = "$private\staging/msmqdataservice.svc"

Created another queue for different site.

Another change i made with new site is this is different site in iis with listening on different ip address. I have left net.msmq binding to 'localhost'. Main site as well has same binding for net.msmq -> 'localhost'. I think that's how it should be. Please point out if need some different configuration.

Issue is my requests are making into queue but not getting picked up by application it just stays there

There is no indication of anything wrong in log. Only thing i am seeing in log related to this is a warning "msmqactivation cannot discover queue". Although this warning i have never understood correctly as we have been seeing this always with everything fine with msmq in 3.5.

Anything i can think is verified and it's correct.

  • Application's app pool is running as network service and it has full access to queue.
  • net.msmq activation service is running with network service
  • Tried different naming convention of service url with same result

Summary

Please provide any insight into multiple sites setup with net.msmq. I am using net.msmq binding with value = 'localhost' for both site. I think it's machinename identity.

Any way to diagnose this issue?

Any thing else you may think of may help.

We had to hold off release yesterday as after spending like 100 man hours we can't figure out what's the issue is. Also can't make it break in my development machine.

Edit

Issue was that after creating new site naming convention does not work like

net.msmq Service with address "net.msmq://localhost/private/staging/msmqdataservice.svc" net.msmq endpoing with address "net.msmq://localhost/private/staging/msmqdataservice.svc" queue in MSMQ -> name = "$private\staging/msmqdataservice.svc"

it worked with service name net.msmq://localhost/private/msmqdataservice.svc

but now i cannot have two sites using exactly same endpoint.

Any way to have same endpoint in two different site with different url and different queue in same machine?

link|improve this question

70% accept rate
feedback

3 Answers

How about using a different port? You can use the same host name and tell WAS to activate on the new port in a new vdir or site.

link|improve this answer
Msmq prortocol has no port option. – Drew Marsh Jun 11 '11 at 15:24
feedback

Unfortunately, the listener uses the service name to determine which queue to listen for so if your receiving service is called

MYOrganisation.Services.MyService.svc

your queue should be called

net.msmq://localhost/MYOrganisation.Services/MyService.svc

So, the queue is called:

MYOrganisation.Services/MyService.svc

Try this out and get back to me. I can post a full example of the config that works.

It occurs to me that even though you may not have 2 different endpoints, you could have the same service with a different namespace (or just rename the service) listening to a different queue. Not ideal, but it's the only thing I found that would work.

link|improve this answer
feedback

The URI of your service endpoint must match (more or less, cf http://msdn.microsoft.com/en-us/library/ms789042.aspx) the queue name. So here, the solution would be to create a virtual directory named staging and put your service there.

As for the binding info, localhost points to the server was queue listener shoudl be listen at so if your queues are installed on the same machine as IIS, this shoumld indeed be localhost.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.