views:

21

answers:

0

I'm working on a device that uses Java ORB for communicating with SOAP web services.

Our SOAP web service is hosted via WCF and exposes its interface via a WSDL.

The example I have for the device suggests looking at the WSDL and manually converting it to an IDL which can then be consumed by jidl to generate the required Java stubs.

Is there a way to do the WSDL to IDL conversion programmatically? It would make it much easier to utilize complex types in our web service and to update it down the road as new methods are added.

The best link I've found thus far is this one which while it might work is not very clean and still requires manual steps.