I have 2 web forms applications written in c# asp.net. This is the kind of thing I need:
- A user clicks a button in web app 1
- Web app 1 needs to send some parameters to web app 2 and get a response
- Web app 1 uses the response from web app 2 to finish processing the post-back
- User is happy
So I guess I need to incorporate some kind of web service thing into my web applications? Please point me in the right direction.
Update:
I’ve done some more research and found that WCF seems to be a goer. I have used WCF once before (stumbled through it) but how do I use WCF inside a web application – or do I need to create another application just for WCF?
Inter-process communication is a pretty large topic and there are many ways to do it.
Some tings to consider are
For something of this nature I would be inclined to use something like a message-queue maybe managed by something like nservicebus it would be a very simple, yet robust solution. WCF is another option and so is MVC 4.0 web services.