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
|
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 |
||||
|
|
|
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. |
|||
|
|
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). |
||||
|
|