I have a system that sends an object to another service through WCF using MSMQ. The service perfectly displays the message and does what is connected with it. But the problem I have now is that I need to send a response to the calling system.
Example:
- Create Customer Object
- Enter information
- Send a message to the service using WCF on top of MSMQ
- Select a message from the queue using the Windows service
- Calling the Customer.Insert () method on a windows service
- Now I need to send the new client ID back to the calling application.
Any ideas?
Neale source
share