I want to write some code to communicate with a RESTfull service which is created by another company. SO far I just integrated SOAP services into my own code and this worked pretty well with Service as a reference.
As I understood, this is not possible with REST Services. In my particular case, I would have to PUSH a XML file to the Service and I will recive an XML file back. With a referenced SOAP service, I wouldn't have to deal with the XML but with objects instead. Is there chance to obtain similair functionality with a REST service?
I looked into Web API but I am not sure if that is the right way.
Hopefully you get the point of my question.
Thank you very much for the help.