We have an existing servicebus running off of MSMQ that consumes an event that needs to publish a command to a bus running on Azure.
We're exposing azure to the outside world and keeping msmq for internal messages.
I've tried to new up an instance of a send only bus to accomplish this but with no luck, some pointers/code samples would be greatly appreciated.
EDIT
I have not found an answer to this question and my workaround as of now is to set up a web api that hosts nservicebus running Azure as the transport protocol. So my MSMQ consumer will call the api and that api will send a command to to our Azure bus. Not ideal...at all, but it's what I could come up with.
EDIT2
Created slightly different, but related question regarding gateway configuration: Nservicebus msmq to azure queue using gateway