RE: SOAPFaultException in Axis

2003-11-19 Thread Pedro Salazar
On Wed, 2003-11-19 at 09:58, Pedro Salazar wrote: > On Wed, 2003-11-19 at 07:53, Jorge Lorenzo wrote: > > Hi Pedro, > > I know that everything is easier with AxisFault, but I have to construct > > some JAX-RPC handlers (instead of Axis handler) that need to work in every > > JAX-RPC SOAP engine. >

RE: SOAPFaultException in Axis

2003-11-19 Thread Pedro Salazar
On Wed, 2003-11-19 at 07:53, Jorge Lorenzo wrote: > Hi Pedro, > I know that everything is easier with AxisFault, but I have to construct > some JAX-RPC handlers (instead of Axis handler) that need to work in every > JAX-RPC SOAP engine. > Axis is one of this, but there are some points where Axis do

RE: SOAPFaultException in Axis

2003-11-19 Thread Jorge Lorenzo
ption is in the JAX-RPC standard but it doesn't work in Axis. Regards, Jorge -Mensaje original- De: Pedro Salazar [mailto:[EMAIL PROTECTED] Enviado el: martes, 18 de noviembre de 2003 18:20 Para: [EMAIL PROTECTED] Asunto: RE: SOAPFaultException in Axis On Mon, 2003-11-10 at 17:54, Jor

RE: SOAPFaultException in Axis

2003-11-18 Thread Pedro Salazar
On Mon, 2003-11-10 at 17:54, Jorge Lorenzo wrote: > When you create a SOAPFaultException, you specify four elements (in the > constructor): > SOAPFaultException(QName faultcode, String faultstring, String faultactor, > Detail faultdetail) > But Axis only uses the faultstring (and in part beca

RE: SOAPFaultException in Axis

2003-11-10 Thread Jorge Lorenzo
lto:[EMAIL PROTECTED] Enviado el: lunes, 10 de noviembre de 2003 18:42 Para: [EMAIL PROTECTED] Asunto: RE: SOAPFaultException in Axis This works with both Axis 1.0 and 1.1, but I don't think I control anything but fault code and fault string. When SOAPFaultException is thrown, Axis code c

RE: SOAPFaultException in Axis

2003-11-10 Thread Vladimir Umansky
aultException in the > > handleRequest of a JAX-RPC Handler but it looks > like > > Axis finally generates its own exception. My code > > is: > > > > Detail detail = null; > > try { > > detail = > SOAPFactory.newInstance().createDetail(); > > > detail.addC

RE: SOAPFaultException in Axis

2003-11-10 Thread Jorge Lorenzo
art of the faultstring. The rest is generated by Axis. Regards, Jorge -Mensaje original- De: Vladimir Umansky [mailto:[EMAIL PROTECTED] Enviado el: lunes, 10 de noviembre de 2003 18:15 Para: [EMAIL PROTECTED] Asunto: Re: SOAPFaultException in Axis This works for me private void throwSO

Re: SOAPFaultException in Axis

2003-11-10 Thread Vladimir Umansky
> } catch (SOAPException e1) {} > throw new SOAPFaultException( > new QName("http://test/test";, "test"), > "info on the fault", > "info on the actor", > detail); > > Is it possible to work with SOAPFaultException in >

SOAPFaultException in Axis

2003-11-10 Thread jlorgal
t;).addTextNode(" aile"); } catch (SOAPException e1) {} throw new SOAPFaultException( new QName("http://test/test";, "test"), "info on the fault", "info on the actor", detail); Is it possible to work with SOAPFa