What is the easiest way to generate a Java client from WSDL encoded in RPC

I am new to web services concept and Im currently working on a project where I need to get some data from an external application via SOAP.

This application provides RPC encoded WSDL. Im currently very difficult to create a client for this service in Java due to the replacement of RPC.

The closest Ive is still using JAX-RPC, but every time I try to run the ws-compile program, I get an error message that says "error code to large."

I researched AXIS 2 and tried to compile it with WSDL2JAVA, but due to RPC encoding, I keep getting exceptions in all data binding methods.

I was wondering if I could get some tips or guidance on building Java clients from WSDL RPC encoded. What are the steps? What should I consider before trying to write a client?

I am currently using netbeans 6.9.1

+8
java web-services
source share
1 answer

If you are trying to create a client stub from the wsdl url, follow this

thanks

+3
source share

All Articles