I've read somewhere that there is a lightweight and simpler webservice alternative to SOAP. Now I cant find it again. In the exapmle I saw, I think it was used in Android to call services on App Engine.
Does anybody know about this?
|
I've read somewhere that there is a lightweight and simpler webservice alternative to SOAP. Now I cant find it again. In the exapmle I saw, I think it was used in Android to call services on App Engine. Does anybody know about this? |
|||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Well, there are quite a few to choose from. http://en.wikipedia.org/wiki/List_of_web_service_protocols But it sounds like maybe you mean JSON RPC? |
|||
|
|
It's called REST. |
|||
|
|
|
Depends what you're trying to do, but ultimately, HTTP is usually all you need. do an HTTP POST request to http://example.com/my/resource and you've created new resource that will be available at http://example.com/my/resource/[id]. Do an HTTP PUT on http://example.com/my/resource/[id] and you've updated that resource. Everybody generally refers to this as a "RESTful" web service, but really, it's just using HTTP in a much purer way, and, since it's pure HTTP, the content type can be of your choosing for representing the data you want to store and retrieve. There are frameworks for many languages that make defining the end points of your webservice painfully easy as well. JAVA has Jersey, PHP has Glue and Python has Flask for example. |
|||
|
|
|
I think you are talking about See here EDIT: Are you then referring to |
||||
|
|
REST– Rahul Jul 6 '11 at 19:37Atom protocolORCisco's Etch? I searched google and found them – Rahul Jul 6 '11 at 19:48