What is the difference between top down web service and a bottom up web service?

Answered

What is the difference between top down web service and a bottom up web service?

Ninja Asked on 18th September 2018 in Web Service.
Add Comment
1 Answer(s)
Best answer

The top-down and bottom-up web services differ in the way they are created.
When a web service is created using top-down approach, the WSDL file is created first. The Java skeleton classes and interfaces are generated from the WSDL file using tools. Then the web service is implemented in Java.

When a web service is created using bottom-up approach, the web service is defined in the Java class. The WSDL file is generated from the Java class.
The top-down approach is recommended way of creating web service, but the bottom-up approach is faster and easier.

Ninja Answered on 18th September 2018.
Add Comment