My project is consuming services from an Axis server, and we'd like to compile a list of the possible faultstring values we could get returned in a SOAP fault message, so we can design an auditing service that properly accounts for all known error conditions that fit certain criteria. I thought I might get this info from the Axis source code, but it looks like I'd have to go through every class that invokes an Exception, and note the message string that it passes to the exception object, as the message strings with which exceptions are invoked usually make their way into the faultstring element of the SOAP fault message. The info is not important enough to justify that sort of effort, but I was wondering if there might be documented somewhere already a list of the exception messages/faultstring values generated by the Axis code. Even a partial list would be of some value.

Reply via email to