The NServiceBus Web service bridge example only demonstrates a Command message scenario. I am interested in a scenario where the web service bridge uses request/reply to do a synchronous response to the client like any other normal web service call. In other words, can I use the web service bridge to create a web service that does the following things
- expose a synchronous method e.g. ClassA process(ClassB objectB) via the web service interface
- Behind the scenes call various ascynhronous services hosted as NServicebus services.
- When I get all my replies back, synchronously respond with a ClassA object to the web service client
Any help is appreciated.