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 ser
You could write a custom handler which
extends BasicHandler and override the onFault method. That’s 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]
Su
.
Get in touch if you're interested...
Hope this helps.
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
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
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 PROTEC
there ;)
I was just curious about this and was wondering what others thought.
I'm new to Axis so I'm 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 develop
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