NServiceBus - Message Sent to and Removed from Queue, but Never Fire IHandleMessages.Handle
First let me state, today is my first day using NSesrviceBus - so I hope my question isn't too elementary.
I have managed to set up Sender, Receiver, and Messages projects. When I debug the Sender, I see the messages show up in the configured queue. When I debug the Receiver, the messages are removed from the queue. However, my IHandleMessages Handle event never fires, and no Console output is displayed.
I'm s开发者_开发技巧ure I've done something wrong (I think I may have mixed tutorials from different versions of NServiceBus) - any suggestions would be appreciated.
- Are you Send()ing messages or Publish()ing them? If you're publishing, then they might be subscription messages and you may have no subscribers.
- Check out these two sets of great tutorials on the NServiceBus Wiki.
- In your receiver are you not even getting the slew of debug info when the host process starts up?
- Are you using a fluent configuration in your IConfigureThisEndpoint implementation? If so, what?
精彩评论