I have a very simple test that includes a class library containing message
types, an mvc app that creates messages and sends them to a queue and a
console application that (is supposed to) consume the messages. It did work
at one time, but I cannot get it to work anymore. When I run the mvc app,
the messages are sent to the queue ( I can see them and open them using the
computer management tool). However, when I run the console app to consume
them, I get the following errors (over and over again):
A first chance exception of type
'Rhino.ServiceBus.Exceptions.TransportException' occurred in
Rhino.ServiceBus.dll
A first chance exception of type 'System.Transactions.TransactionException'
occurred in Rhino.ServiceBus.dll
My console code is:
var host = new DefaultHost();
host.Start<Bootstrapper>();
Bootstrapper is an empty class that inherits from UnityBootstrapper.
My config file for the console app:
<rhino.esb>
<bus threadCount="1"
numberOfRetries="5"
endpoint="msmq://localhost/auditmessages"
logEndpoint="msmq://localhost/audit"
queueIsolationLevel="ReadCommitted"
name="Client" />
</rhino.esb>
I am at a total loss as to how to diagnose the issue.
--
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/rhino-tools-dev.
For more options, visit https://groups.google.com/groups/opt_out.