Hi Are there any good examples, tutorials or books for developing Axis2.0clients and services. I have a requirement where i have to build a Client to consume webservice, the XSD i have is pretty complicated, i used WSDL2Java to create the required java files, and XSD as i am using XMLBeans as client But now i am stuck, dont know how to create a test class for the client I would like to see an example where client is creates from WSDL I have done MyTestStub stub = new MyTestStub();
MyReqDoc req = new MyReqDoc(null); // the constructor has SchemaType as input which i have no clue what is now this req requires to have some input etc, but it is not working. MyResponse res = stub.synchMyData(req); Ashish
