I have a client that consumes asmx webservices of ASP.Net application. This client uses axis1 framework. I want to upgrade to axis2 to make communication between server and client faster. I have used wsdl2java utility and generate again classes with following parametrs:
*wsdl2java.bat -uri "http://localhost:8090/ExampleService.asmx?WSDL" -u -d xmlbeans -or -o "C:\JAVA_SERVER\ServerApp"*
After I use -uw parameter and XMLbeans databinding, I can't compile client because of errors in ..Stub files.
After I use adb databinding - some classes not created.
I just want to use unwrapped parametrs like here:
WebServiceStub ws = factory.getWebService();
string answer = ws.getAnswer(1, "question", instanceOfDotNetClass);
What is the best way to upgrade axis1 to axis2?