Yes, I'm running the latest MassTransit.RuntimeServices on the same
machine.
Here is the output from the MT.Messages appender for the application
service.
INFO 2011-11-16 10:15:10 SEND:msmq://lanaryu/mt_subscriptions?
tx=false:AddSubscriptionClient:
Here is the output from the MT.Messages appender for the
RuntimeServices.
INFO 10:15:12 RECV:msmq://lanaryu/mt_subscriptions?
tx=false:MassTransit.Services.Subscriptions.Messages.AddSubscriptionClient,
MassTransit:6a4f0476-2699-4e16-8068-93616047ce8b\145409
INFO 10:15:12 SEND:msmq://lanaryu/mt_subscriptions?
tx=false:SubscriptionClientAdded:
INFO 10:15:13 RECV:msmq://lanaryu/mt_subscriptions?
tx=false:MassTransit.Services.Subscriptions.Server.Messages.SubscriptionClientAdded,
MassTransit:6a4f0476-2699-4e16-8068-93616047ce8b\145410
INFO 10:15:15 SEND:msmq://lanaryu/icompile_server?
tx=false:SubscriptionRefresh:
The SubscriptionRefresh message is sitting in the icompile_server
queue unprocessed.
<?xml version="1.0"?>
<envelope><destinationAddress>msmq://lanaryu/icompile_server?tx=false</
destinationAddress><headers/><message/
><messageType>urn:message:MassTransit.Services.Subscriptions.Messages:SubscriptionRefresh</
messageType><retryCount>0</retryCount><sourceAddress>msmq://lanaryu/
mt_subscriptions?tx=false</sourceAddress></envelope>
While the system was in this state, I then started a new instance of
the Web app which produced the following log followed by a timeout
exception.
DEBUG 2011-11-16 10:27:35 Application_Start
INFO 2011-11-16 10:27:48 MassTransit v2.0.1.0, .NET Framework
v4.0.30319.239
DEBUG 2011-11-16 10:27:49 A queue was created: msmq://lanaryu/icompile_web?tx=false
DEBUG 2011-11-16 10:27:49 A queue was created: msmq://lanaryu/icompile_web_error?tx=false
DEBUG 2011-11-16 10:27:54 Starting SubscriptionClient using
msmq://localhost/mt_subscriptions
DEBUG 2011-11-16 10:27:55 Creating MessageQueue:
FormatName:DIRECT=OS:localhost\private$\mt_subscriptions
DEBUG 2011-11-16 10:27:55 SEND:FormatName:DIRECT=OS:localhost\private$
\mt_subscriptions:MassTransit.Services.Subscriptions.Messages.AddSubscriptionClient,
MassTransit:6a4f0476-2699-4e16-8068-93616047ce8b\145412
INFO 2011-11-16 10:27:55 SEND:msmq://lanaryu/mt_subscriptions?
tx=false:AddSubscriptionClient:
DEBUG 2011-11-16 10:27:55 Waiting for response from the subscription
service
The icompile_web queue had 2 unprocessed messages in it, a
SubscriptionRefresh and an AddSubscriptionClient.
It seems like the problem is that I'm just not configuring whatever
starts receiving the messages in my processes. Any ideas?