Friday, May 01, 2009
REST vs SOAP Webservices
After long time I am updating my blog since, I was very busy with my new project. Today I got some free time so thought I will update my blog with technology which I am using in my project. this time I am working on RESTful webservices ...ummm I know what next is coming in your mind..... what is RESTFul webservice and how its different from the the SOAP right ??? so here we go...... REST - stands for "Representational State Transfer", this basically means that each unique URL is a representation of some object. You can get the contents of that object using an HTTP GET, to delete it, you then might use a POST, PUT, or DELETE to modify the object (in practice most of the services use a POST for this). SOAP - stands for "Simple Object Access Protocol" was designed to be a platform and language-neutral alternative to previous middleware techologies like CORBA and DCOM Pros and cons of SOAP Pros :
Cons:
Pros and cons of REST Pros:
Cons :
|
hey dude can u explain me what is behaviour of Stack and Heap when an object (Integer) is type casted as a data type(int)?