Hi All,
I am facing a problem related with method signature using code
generation tool in Axis2 1.3.
I have an interface to generate WSDL file.
Public interface ServiceInterface {
String addString(String s1, String s2) throws AxisFault;
}
When I generate WSDL (using ANT Java2WSDLTask task), I don't find any
information regarding 'Axis'Fault' in the generated WSDL. As a result of
this I also couldn't see throws clause for AxisFault in methods inside
generated Skeleton (using ANT AntCodegenTask task). Although it works
fine incase of other exceptions.
Is there any special handling for AxisFault?
Surprisingly, this seems to be working in Axis2 1.2.
Any help or pointer would be very helpful.
Thanks and advance.
Regards,
Ashish Arya