function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jhon68Jhon68 

How can I convert WSDL file to java ???

HI All,

how can I convert WSDL file to java???

Please help in easy way ..

 

Thanks in advance..

 

Ryan-GuestRyan-Guest

You will want to use a framework that generates Java files from a WSDL.

 

I reccomend checking out Axis: http://ws.apache.org/axis/java/user-guide.html#UsingWSDLWithAxis

Navatar_DbSupNavatar_DbSup

Hi,

 

You can convert WSDL file to Java files by using axis-bin-1_4 and command is

 

 java org.apache.axis.wsdl.WSDL2Java -a ...'.wsdl or .xml file location ' -o ..'out put dir location'

 

 But before running this command you have to setup the class path for the following jar files.

 

 axis.jar,commons-logging-1.0.4.jar,commons-discovery-0.2.jar,jaxrpc.jar,wsdl4j-1.5.1.jar,axis-ant.jar,log4j-1.2.8.jar,saaj.jar,mail.jar

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.