Let me rephrase the question. Is anybody out their using fault codes? If so,
how are you throwing the exception/axis fault on the server?

-----Original Message-----
From: David Logan 
Sent: Tuesday, January 14, 2003 1:51 PM
To: '[EMAIL PROTECTED]'
Subject: RE: AxisFaults


Actually, the
FaultCode={http://schemas.xmlsoap.org/soap/envelope/}Server.generalException

-----Original Message-----
From: David Logan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 14, 2003 1:35 PM
To: '[EMAIL PROTECTED]'
Subject: AxisFaults


What is the best way to create/throw axis faults from the service?

I am having trouble getting the fault code from the exception when caught on
the client. I get the message but the FaultCode is = "";


----------------------------------------------------------------------------
-----------------------------------------------
public class TitanServicesException extends AxisFault {

  public TitanServicesException() {

  }

  public TitanServicesException(String message, String faultCode) {
    super(new QName(faultCode), message, faultCode, null);
  }
}

Reply via email to