Axis2's wsdl2java fails on RPC/Encoded style web services

前端 未结 8 1428
离开以前
离开以前 2021-02-05 18:24

Is there any alternative to Axis2? Or the way to make it work (different data binding, for example)?

Retrieving document at \'...\'.
Exception in thread \"main\"         


        
8条回答
  •  借酒劲吻你
    2021-02-05 18:46

    This issue raises if the soap encoding style is old axis2 wsdl2java or wsimport cannot understand the old RPC encoding style so use the axis 1.4 or older version of axis the draw back is that u will not find wsdl2java as a tool in old axis instead you will find it as a class file in the axis jar file so u have to manually set a the classpath and use that class

    D:\axis-1_4\lib>java -classpath \axis-1_4\lib* org.apache.axis.wsdl.WSDL2Java urwsdl

提交回复
热议问题