0
votes

Here is what I am trying to do:

  1. Pick up files from various locations using BizTalk
  2. Debatch the data
  3. Publish a message to NService bus.

The question is how to publish a message to NSB when the underlying transport for NSB is SqlServer and not MSMQ?

1
-1 already? I have done some research and I dont see any solutions or pointerBitmask
Are you really looking for each piece of the process, or just the publishing to NServiceBus - points 1 and 2 are relatively basic and lots of details can be found online already.Nick Heppleston
Just publishing to NSB. 1,2 are quite straight forwardBitmask
Is this blog post any help? blog.bitsnbytes.us/2013/08/…Udi Dahan
Not quite. NSB is already running using SQL Transport. Its the BizTalk piece of dropping messages for NSB that I am concerned about. One option that I have is to create a new adapter using NSB - but if I knew how to build the Header and required correlation ID i could just drop the message with these properties into the table using WCF-SQL adapter.Bitmask

1 Answers

0
votes

Have you considered exposing a Service in NServiceBus as a WCF endpoint? You can then call the WCF endpoint from Biztalk.