Is it possible to deploy a SOAP server with Axis without using WSDD?
Posted
by Alceu Costa
on Stack Overflow
See other posts from Stack Overflow
or by Alceu Costa
Published on 2009-05-14T13:45:58Z
Indexed on
2010/03/17
2:21 UTC
Read the original article
Hit count: 411
In the project I am working I have deployed a SOAP server using Deployment Descriptors (WSDD) files. To do that a webserver (e.g tomcat, jetty) is started and then the following command is executed:
java -cp %AXISCLASSPATH% org.apache.axis.client.AdminClient deploy.wsdd
What I need is to skip the above command to avoid a call to the Axis AdminClient. Is it possible to deploy my webservice as war file?
Note: A solution with JWS can't be used due to its limitations.
© Stack Overflow or respective owner