Nibha Jain
Nibha Jain

Reputation: 8161

generate java code from wsdl in android

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

Answers (1)

Wundwin Born
Wundwin Born

Reputation: 3475

If you are using ksoap2, you can generate java classes via online web tool EasyWSDL.

Upvotes: 2

Related Questions