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

I want to understand the difference between top down web service and bottom up web services in Java. Also, it would be great if someone tells me the the difference between SOAP and RESTful webservices.

thanks

share|improve this question

2 Answers

up vote 14 down vote accepted

Top-down means you start with a WSDL and then create all the necessary scaffolding in Java all the way down.

Bottom-up means you start with a Java method, and generate the WSDL from it.

SOAP means that the URL is the same for all invocations, and only the parameters to the Java method differs. REST means that the URL reflects the operation to be done.

share|improve this answer
For the SOAP vs REST, I think your answer is fair considering the amount of effort in research the OP put before asking... But still, here are some articles that may dig a little bit further: en.wikipedia.org/wiki/Representational_State_Transfer and en.wikipedia.org/wiki/SOAP – Anthony Accioly May 4 '11 at 22:19

Mad Programmer. You mean building the Webs Services with a Bottom Up or Top Down Approach. In the first, you start programming the classes and business logic as java code and then generate the web service contract (i.e. WSDL) from it. The latter approach means the opposite (generating class stubs from the WSDL).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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