lunes, 21 de abril de 2014

dummy server wsdl java skeleton

You can use Apache Axis's wsdl2java to generate skeleton classes from the WSDL:
Just as a stub is the client side of a Web Service represented in Java, a skeleton is a Java framework for the server side. To make skeleton classes, you just specify the "--server-side --skeletonDeploy true" options to WSDL2Java.
...
The skeleton class is the class that sits between the Axis engine and the actual service implementation.
You would effectively be creating your own version of the server-side implementation of the web service. You can then implement the skeleton to return some stub/dummy data, deploy that to your application server, and then make web service calls to your skeleton just as you would to the live web service.


http://stackoverflow.com/questions/211995/dummy-web-service

No hay comentarios: