Reputation: 8161
I am using wsdl2code web tool for generating Java code for given wsdl. But , generated code has the different definition of the method from web-service. Method in wsdl contains the return type boolen but in wsdl2code generated code contains the same method with void return type.
I tried to create the client using axis2 plugin but that code is not working for android , many APIs are not resolved like rmi ..
What is the best way to generate java code from wsdl in android.
I have already spent lot of time and didn’t get any good solution so far.
Upvotes: 1
Views: 758
Reputation: 3475
If you are using ksoap2
, you can generate java classes via online web tool EasyWSDL.
Upvotes: 2