[Axis2 1.1.1] Exceptions and POJO services

2007-04-16 Thread Jarek Kucypera
If I declare a (non-void) service method to throw an exception, the resulting wsdl describes the corresponding exception type as anyType, like this: xs:complexType xs:sequence xs:element name=getWalletFault type=xs:anyType / /xs:sequence /xs:complexType Is there a way to

Re: [Axis2 1.1.1] Exceptions and POJO services

2007-04-16 Thread John G. Norman
I'm having the same problem. In my POJO service I have something like: public String myOp(String s) throws MyException . . . But no fault for MyException is showing up in the WSDL, and so when I try to generate an ADB client against the WSDL, I don't get client-side exception code generated.