when we add strings to a fault detail, as in addFaultDetailString(), we do
this
Document doc = XMLUtils.newDocument();
Element element = doc.createElement("string");
Text text = doc.createTextNode(detail);
element.appendChild(text);
fault
Just adding some stuff (and tests) to Axis fault; starting with some looking
at what is there to start with. this method draws my attention:
/**
* set the fault detail element to the arrary of details
* @param details list of detail elements, can be null
*/
public void setFa