Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Your WSDL may be using some features that aren't supported by axis2. Axis2 doesn't support RPC/Encoded style services, for example. – Kenster Jan 22 at 15:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.