exception - NServiceBus without input queue -
Is it possible to use NSSSBs in any application without any input queues?
The reason is, I am an ASP.NET MVC application that sends messages to other applications when something happens (for example a new user registrar). The web application never receives any feedback or other messages and so I do not want to suppress the app. With MSMackie picking, which throws every other exception.
This is supported, just remove the msmstranport config section and all should be OK This app.config appearance Works with the version of NServiceBus with version 2.0.2281.0 (Net 4)
using NServiceBus; Namespace SendOnlyEndpoint.Custom {Public Class Program} {Static Zero Main (string [] ARG) {var bus = Configure. (). Default Bullder () XML Serializer () MSMXTRAsport () .ununestubus () .CreateBus () Start (); Bus.Send ("SendOnlyDestination", New TestMessage ()); }} More information on sending only Endpoint
Comments
Post a Comment