Re: Help in Exception handling...

2004-08-28 Thread
the wsdl file. -d --- On Fri 08/20, matthew.hawthorne < [EMAIL PROTECTED] > wrote: From: matthew.hawthorne [mailto: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Fri, 20 Aug 2004 09:00:34 -0700 Subject: Re: Help in Exception handling... I read the article at http://www-106.ibm.com

Re: Help in Exception handling...

2004-08-20 Thread matthew.hawthorne
Ragunath Marudhachalam wrote: I tried customizing exceptions and i had .net on the client. All i can do on the client side is, i can catch the exception as SoapException and get the string from that exception. .net client could not build a class for the custom exceptions in the web reference like i

RE: Help in Exception handling...

2004-08-20 Thread Ragunath Marudhachalam
that is passed and returned as parameters. Thanks Ragu -Original Message- From: matthew.hawthorne [mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 12:01 PM To: [EMAIL PROTECTED] Subject: Re: Help in Exception handling... I read the article at http://www-106.ibm.com/developerworks

Re: Help in Exception handling...

2004-08-20 Thread matthew.hawthorne
I read the article at http://www-106.ibm.com/developerworks/xml/library/ws-tip-jaxrpc.html and made some customizations to my exceptions accordingly. The SOAP looks correct, but I just cannot get Axis to instantiate the exceptions on the client side. They are always returned as Axis faults. I

RE: Help in Exception handling...

2004-08-19 Thread Junaid . Bhatra
cc Please respond to Subject [EMAIL PROTECTED] RE: Help in Exception handlin

RE: Help in Exception handling...

2004-08-18 Thread Vikas Phonsa
matthew.hawthorne [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 4:00 PM To: [EMAIL PROTECTED] Subject: Re: Help in Exception handling... Christophe Roudet wrote: > I am not sure it is possible to skip the stack trace. > I have just looked to the AxisFault code and it seems tha

Re: Help in Exception handling...

2004-08-18 Thread matthew.hawthorne
Christophe Roudet wrote: I am not sure it is possible to skip the stack trace. I have just looked to the AxisFault code and it seems that fault details will always be filled with the stack trace (see the initFromException(Exception target) method). I think there may be a flag you can set that turn

RE: Help in Exception handling...

2004-08-18 Thread Lin, Zhongwu
used to determine the error. It worked fine with this way. john -Original Message- From: Vikas Phonsa [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 4:52 PM To: '[EMAIL PROTECTED]' Subject: RE: Help in Exception handling... Christophe, I am doing the exact same

RE: Help in Exception handling...

2004-08-18 Thread Christophe Roudet
mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 5:52 PM > To: '[EMAIL PROTECTED]' > Subject: RE: Help in Exception handling... > > Christophe, > > I am doing the exact same thing. Can u post a sample soap message returned > to the client when an exce

RE: Help in Exception handling...

2004-08-18 Thread Vikas Phonsa
message. Vikas -Original Message- From: Christophe Roudet [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:40 PM To: [EMAIL PROTECTED] Subject: RE: Help in Exception handling... I was only able to have exceptions extending RemoteException to be deserialized correctly (not as an

RE: Help in Exception handling...

2004-08-18 Thread Christophe Roudet
) ? super.getMessage() : _mess; } } Christophe > -Original Message- > From: matthew.hawthorne [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 4:42 PM > To: [EMAIL PROTECTED] > Subject: Re: Help in Exception handling... > > Ragunath Marudhachalam wrote:

RE: Help in Exception handling...

2004-08-18 Thread Vikas Phonsa
EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:42 PM To: [EMAIL PROTECTED] Subject: Re: Help in Exception handling... Ragunath Marudhachalam wrote: > Is it possible to throw an exception that extends java.lang.Excpetion from a > webservice. I found some material that throws AxisFault except

Re: Help in Exception handling...

2004-08-18 Thread matthew.hawthorne
Ragunath Marudhachalam wrote: Is it possible to throw an exception that extends java.lang.Excpetion from a webservice. I found some material that throws AxisFault exception. Also i read it is possible to throw an exception which has getter and setter methods. Any example and tips from anyone who ha