Hey guys, here's my requirement:
I have one central App which receives requests from other apps, does something, and then returns data to that App. In its simplest form this data would be an XML document.
Now, at design time, this central App doesn't know which other applications will be making requests.
Each time the Central App receives a request, it will also receive a URL, telling the central App its web service address (see below), so the Central App knows where to push the data to:
http://someapp1.com/UpdateData
http://someapp2.com/UpdateData
Now, I'd like to use either SOAP, or some kind of RESTful implementation, preferably not WCF.
My questions are these:
- With SOAP can I dynamically, at run time, change the service URL, if the interfaces are all the same?
- If I can, then how would I go about posting large amounts of XML in a RESTful way?