简单Web服务和Restful Web服务之间的区别

时间:2014-08-28 15:35:09

标签: android web-services servlets restful-architecture

我用客户端服务器方法实现了我的android应用程序。 像这样的approch在这里。

http://theopentutorials.com/tutorials/android/http/android-how-to-send-http-get-request-to-servlet-using-apache-http-client/

我不明白这个approch和Restful webservice之间的区别。我必须使用optimize approach.plz帮助我...提前感谢..

1 个答案:

答案 0 :(得分:0)

此链接提供了一种将Android应用程序链接到Servlet的方法。

Web服务有两种基本方法: 1.SOAP方式,数据以SOAP信封和正文格式进入XML。 http://www.w3schools.com/webservices/ws_soap_example.asp

2.REST结构,其中数据以JSON格式传入(它也可以以XML格式存在),但是没有关于SOAP正文或标题格式的数据的规则,例如http://www.webmonkey.com/2010/02/get_started_with_rest/#Example_REST_Request

基本思想是首先开发Web服务然后尝试使用它。 最好的例子:http://www.vogella.com/tutorials/REST/article.html