Title: Custom Serialization
First, I like to share some comments with deployment descriptors
 
I finally got my service deployed through .wsdd file. The documentation is really unclear  and I
have to read  the AdminClient.java's code to figure out what's required.  It turns out that I need to put to use
 
java org.apache.axis.client.AdminClient -l <axis-servlet-url> <.wsdd file>
 
similarly for list
java org.apache.axis.client.AdminClient -l <axis-servlet-url> list
 
where <axis-servlet-url> is
  http://<host>:<port>/axis/servlet/AxisServlet 
 
host is default to localhost
port is defaullt to 8080
 
if it happens that your port is not 8080, you will get connection refused error.
 
Now, my question:
    Once I deployed, I should be able to get my WSDL through following
 
http://<host>:<port>/axis/services/<service-name>?wsdl
 
When I tried it,  I always got java.lang.NullPointerException
 
even for the java files which works file through  .jws approach
http://<host>:<port>/axis/services/myFIle.jws?wsdl
 
Can someone give me some pointer ?
 
Thanks
 
Chester

 

Reply via email to