Re: wsdl2java -ss (server-side) classes required for complex object serialization?

2008-02-13 Thread Amila Suriarachchi
you can do two types of service development with Axis2. 1. Contract first This is what you currently doing. you start with a wsdl file (contract) and generate the java code for this. 2. Code first approach you first write the service classes and then generates the wsdl and service from th

wsdl2java -ss (server-side) classes required for complex object serialization?

2008-02-13 Thread Kraus, David
Currently our web service generates server-side logic automatically using wsdl2java with the "-ss" parameter. The resulting classes handle the serialization of complex objects, created on the server-side, to xml to be transported back to the client (and vice-versa). My question is: Is this th