Re: Can't find default constructor exception on the client side

2003-08-26 Thread Jeyakumaran.C
Hi, I had also met this prbs before. For beans u need to have a default constructor.(may be for axis bean serialization). regards, Jeyakumaran.C - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 15, 2003 12:49 PM Subject: Can't find default construc

Re: Can't find default constructor exception on the client side

2003-08-15 Thread Steve Maring
Yes.  You should only allow the BeanSerializer to manage your type mapping if you had the wsdl2java process generate your beans or your WSDL was generated by a java2wsdl base on your beans, which would have to be REAL JavaBeans with default constructors.  Otherwise, you will need to plug in a custo

Re: Can't find default constructor exception on the client side

2003-08-15 Thread Stuart Barlow
I think that AXIS requires a default constructor if you are using bean based serialization. Maybe possible with custom serialization? someone else know? [EMAIL PROTECTED] wrote: Hi, I have an abstract class, Users, that is extended by several classes such as Administrator, Tester etc. My servic