What is the difference between REST and SOAP?
-
I am trying to send an image from android device to sever which is based on .NET, which should I consider REST or SOAP and how much will be the performance variation?
-
Answer:
SOAP stands for Simple Object Access Protocol. REST stands for REpresentational State Transfer. SOAP is a protocol, which says how client and server will communicate that is the way they will exchange information. REST is a software architectural style (concept) as how the system should be designed to solve common occurring problems in many applications. Even though an architectural pattern conveys an image of a system, it is not an architecture. REST is simply a concept and protocol for exchanging information is up to implementer. 3. SOAP protocol uses XML as a medium for exchanging information between client and server. REST keeps it open to implementer as what protocol they want to use. Protocol here is not fixed, Implementer can use XML, JSON Plain text, HTML etc as a medium for exchanging information between client and server. 4. One of the most important point is, SOAP uses services interfaces to expose the business logic. @WebService interface WeatherService{ @WebMethod public String getWeather(String cityName); } In SOAP, we expose the above WeatherService interface and operation inside it. For above sample service, getWeather() method is exposed to outside world which take city name as input and return weather details as output. In REST, intsead of Service interface, URI are exposed to outside world. @Path("/WeatherService") class WeatherService{ @Path("/GetWeather/{cityName} public String getWeather(@PathParam("cityName") String cityName){ .... } } So the URI to invoke above method will be: http://<AppName>:<Port>/WeatherService/GetWeather/<Bangalore 5. SOAP defines much standards that need to strictly followed for communication. Eg: Any exceptions in communication from service should go in Fault section. REST does not define too much standards like SOAP and implementer can have there own way of implementing things.Read all captured important differences here: http://javabypatel.blogspot.in/2016/02/difference-between-soap-and-rest-service.html
Jayesh Patel at Quora Visit the source
Related Q & A:
- What Is The Difference Between Magicjack And Magicjack Plus?Best solution by Yahoo! Answers
- what is the difference between sum of first n primes and prime(prime(n?Best solution by Mathematics
- What's the difference between Current (I) and Potential Difference (V?Best solution by diffen.com
- What does it mean to be unresponsive? What's the difference between unresponsive and unconscious?Best solution by answers.yahoo.com
- What is the chemical difference between detergent and soap?Best solution by wiki.answers.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.