Alex
Alex

Reputation: 223

Use Axis 1.1 in Eclipse Juno

I am forced to use Axis 1.1 in my Java Application to create a stub for a Asp.net C# WSDL. The reason for this is that the external WSDL uses method overloading, which is not supported in Axis versions later than 1.1. However, there does not seem te be an option to downgrade the Axis version in Eclipse Juno. Axis 2 has an input field which contains the location for your Axis 2 folder, but Axis 1.x does not seem to offer this feature.

Can someone explain how I can downgrade from the Juno Axis version (1.4?) to Axis 1.1? Thanks in advance!

Upvotes: 0

Views: 739

Answers (2)

Paul Vargas
Paul Vargas

Reputation: 42040

See an excellent tutorial in Axis 1.x Client Stub Generation. You see a command like the next:

java -cp "$AXISCLASSPATH" org.apache.axis.wsdl.WSDL2Java myService.wsdl

For that, you need to donwload the Axis 1 Runtime from Apache Axis.

Additionally, you can see the oficial guide in Apache page.

Upvotes: 0

David Hofmann
David Hofmann

Reputation: 5775

If you are using the wizard that creates the axis stubs you can not override that easily. It will be much less painful if you generate the stubs outside eclipse.

Upvotes: 1

Related Questions