What are the different ways of consuming A WEB SERVICE [closed]
Can you please explain what are the different ways of consuming aws? eg:we can consume a web service through http query also using API 's. is there any other ways to consume a web service other than this?
To consume a web service you need a protocol. You can find most of them here http://en.wikipedia.org/wiki/List_of_web_service_protocols
To consume any web service you need to write client code in your preferred language which makes http call. Java has libraries like HttpClient through which you can consume any web services like SOAP based, XML-RPC based or even REST based.
精彩评论