AxisFault question #2

2002-12-29 Thread Steve Loughran
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

AxisFault Question

2002-12-28 Thread Steve Loughran
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