We have 2 web applications, one running in php/apache and the other one is in .net/IIS. How can we possibly exchange data between these two web applications?
Basically the process is we exchange data from/to our php web application and the .net web application using the REST API. How can we do that in php...? I never had any experience handling .net web applications and communicating with them.
Any suggestions and ideas are really appreciated. thanks!
Do you need the exchange to happen on the web pages? Or are either one or both web services? Either way, the best way to transfer data like that is using JSON (http://www.w3schools.com/json/) - it does not have the structure or overhead of XML and .NET, PHP and JavaScript can iterate through the data.
I hope this helps.