This content has been marked as final.
Show 5 replies
-
1. Re: How to Consume WSDL file from Eclipse Java project?
Jason MillerMar 20, 2015 12:02 PM (in response to ahmed abdelhamed)
Discussion successfully moved from BMC Engage to Remedy AR System
-
2. Re: How to Consume WSDL file from Eclipse Java project?
Ranjith P E Mar 23, 2015 5:50 AM (in response to ahmed abdelhamed) -
3. Re: How to Consume WSDL file from Eclipse Java project?
Laurent MatheoMar 27, 2015 1:50 AM (in response to ahmed abdelhamed)
I used something like this to "convert" the wsdl to java code (I don't have the documentation with me right now).
In Eclipse, New->Java project.
Then create a package, then a class.
The import the wsdl:
New->Other-web service client (choose the wsdl). Select "assemble client", it should generate the java code to use the wsdl.
You'll need to add axis.jar to the dependencies (project libraries), maybe some others too, I really don't have the documentation with me .
-
5. Re: How to Consume WSDL file from Eclipse Java project?
ahmed abdelhamed Mar 31, 2015 4:45 PM (in response to Laurent Matheo)but why do i use AXIS and don't use CXF 2.x?