transport of runtime exceptions

2005-01-05 Thread Westfall, Eric Curtis
Hello, I was curious if anybody knows of a way to get a runtime exception (such as NullPointerException) thrown from a webservice call to be rebuilt in the client. This currently happens for RemoteExceptions, but not for runtime exceptions. Of course, I realize that its not trivial to

RE: Running code outside of actual SOAP transaction?

2005-01-04 Thread Westfall, Eric Curtis
You could write a custom handler which extends BasicHandler and override the onFault method. Thats what I did and it seems to work. Hope that helps, Eric Westfall From: Brian Davis [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 04, 2005 5:39 PM To: [EMAIL PROTECTED]

RE: Service Specific Exception not working

2004-12-30 Thread Westfall, Eric Curtis
not really 100% sure what is going on inside. It seems like I may be able to patch my source to get it to do what I want. Perhaps I should post a question about this on the developer list? Thanks for your time, Eric Westfall -Original Message- From: Westfall, Eric Curtis Sent: Wednesday

RE: client config solved and on to the next problem

2004-12-30 Thread Westfall, Eric Curtis
Well, I'm not really sure if this is what you're looking for or not, but this site has a reference for the .wsdd files. I believe they both use the same schema: http://www.osmoticweb.com/axis-wsdd/ Hope that helps, Eric Westfall -Original Message- From: Jay Doggett [mailto:[EMAIL

RE: Ok the new error is:

2004-12-30 Thread Westfall, Eric Curtis
Well, here's my guess. According to the copy of the source that I have, at line 176 in FileProvider.java you've got: WSDDDocument doc = new WSDDDocument(XMLUtils.newDocument(getInputStream())); And XMLUtils.newDocument returns an org.w3c.dom.Document object. It sounds to me like you don't have

RE: Service Specific Exception not working

2004-12-30 Thread Westfall, Eric Curtis
. Patrick -Original Message- From: Westfall, Eric Curtis [mailto:[EMAIL PROTECTED] Sent: 30 December 2004 15:57 To: [EMAIL PROTECTED] Subject: RE: Service Specific Exception not working I've done some more investigating on this and this is what I've come up with. Hopefully, this will help

Service Specific Exception not working

2004-12-29 Thread Westfall, Eric Curtis
Hello, I've searched the list for answers to this issue and I haven't been able to find any satisfactory ones. I'm having trouble getting Service Specific Exceptions as defined in the JAX-RPC specification to work properly. If I define a custom exception and have it extend RemoteException, then