Compilation errors in Axis2 tools package.
1. The org.apache.axis2.tool.codegen.WSDL2JavaGenerator is referencing org.apache.axis2.description.WSDL2AxisServiceBuilder builder class that no longer exist in the current org.apache.axis2.description package. The description package now contains WSDLToAxisServiceBuilder.java as parent builder class with WSDL11ToAxisServiceBuilder and WSDL20ToAxisServiceBuilder as subclasses.
2. Also, the following line of code in org.apache.axis2.tool.codegen.WSDL2JavaGenerator class --
WSDL2AxisServiceBuilder builder = new WSDL2AxisServiceBuilder(url.openConnection().getInputStream());
will not only fail to compile because the class no longer exist in the Axis2 description package, it will also fail to compile because the one-argument Constructor that is being referenced in this line of code does not exist in the newly created builder classes.
Samuel...............Have a great day.
IBM WebSphere Development ("Web Services Engine") {
phone = "(512) 838-4963, T/L : 678-4963";
internet = "[EMAIL PROTECTED]";
}
- Axis2: Tools package Samuel Isokpunwu
- Re: Axis2: Tools package Davanum Srinivas
