I have a system that sends a object to another service via WCF using MSMQ. The service picks the message up fine and does what it have to with it. But the problem i have now is that i need to send a response to the calling system.
Example:
- Create a Customer object
- Populate the information
- Send the message to the service using WCF over MSMQ
- Pick the message up from the queue using a windows service
- Call Customer.Insert() method on the windows service
- I now need to send the new customer id back to the calling application here.
Any ideas?