Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
I think you are talking about REST – Rahul Jul 6 '11 at 19:37
I don't mean REST. I should have mentioned that. It is a protocol to do Remote Procedure Calls. Exactly as webservices is used, just another implementation and another protocol. – Erik Z Jul 6 '11 at 19:43
@Erik, is it Atom protocol OR Cisco's Etch? I searched google and found them – Rahul Jul 6 '11 at 19:48

closed as not a real question by John Saunders, marc_s, Nathan Hughes, Dour High Arch, C. A. McCann Jul 13 '11 at 0:05

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.

4 Answers

up vote 1 down vote accepted

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?

http://en.wikipedia.org/wiki/JSON-RPC

share|improve this answer
The list on Wikipedia helped me. I was looking for Hessian! Thank you very much! – Erik Z Jul 6 '11 at 20:07

It's called REST.

http://en.wikipedia.org/wiki/REST

share|improve this answer

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.

share|improve this answer

I think you are talking about Representational State Transfer OR REST. REST is a lightweight alternative to mechanisms like RPC (Remote Procedure Calls) and Web Services

See here

REST

EDIT:

Are you then referring to Atom protocol OR CISCO's Etch. I searched Google and found them

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.