Reputation: 16
Publisher and subscriber both start up with no bugs, but subscriber does not respond when I publish a message (it's supposed to print something to the screen). Please help!!
Subscriber app.config looks like this:
<add Messages = "Messages" Assembly = "Messages" Endpoint = "MyPublisher" />
Endpoint for Publisher:
Configure.With()
.DefaultBuilder()
.JsonSerializer
.DefiningEventsAs(t => t.Namespace != null && t.Namespace == "Messages")
.MsmqSubscriptionStorage
Endpoint for subscriber:
Configure.With()
.DefaultBuilder()
.JsonSerializer
.DefiningEventsAs(t => t.Namespace != null && t.Namespace == "Messages");
Upvotes: 0
Views: 2313
Reputation: 2178
There's no a lot of information here. But here's what you can test
Hope this helps find the solution.
Upvotes: 2