I am trying to access a web service from a naive c++ application via IServerXMLHTTPRequest interface. I believe the web service is a WCF one. Currently I am accessing the web service via the service url , for eg:
ie. the web service method accepts two inputs and returns the data. I am able to get the expected result and display in client.
From the WCF documentation I read that we have to generate the proxy class of the web service and use that in the web service header to call the web service methods. My question is since I am already able to get the data using the url above, should i generate the proxy class? What is the difference between using the proxy class and calling the service using url?
Bookmarks