diff -urNb tridas.orig/daq/xoap/src/common/SOAPBody.cc tridas/daq/xoap/src/common/SOAPBody.cc --- tridas.orig/daq/xoap/src/common/SOAPBody.cc Mon Oct 28 09:01:32 2002 +++ tridas/daq/xoap/src/common/SOAPBody.cc Tue Nov 12 16:20:02 2002 @@ -19,7 +19,7 @@ DOM_Document doc = node_.getOwnerDocument(); DOMString prefix = doc.getDocumentElement().getPrefix(); char* prefixStr = prefix.transcode(); - SOAPName faultName ( "fault", prefixStr, "http://schemas.xmlsoap.org/soap/envelope/"); + SOAPName faultName ( "Fault", prefixStr, "http://schemas.xmlsoap.org/soap/envelope/"); delete prefixStr; SOAPElement e = this->addChildElement ( faultName ); @@ -35,9 +35,9 @@ DOMString faultName; if (prefix.equals("") ) { - faultName = "fault"; + faultName = "Fault"; } else { - faultName = prefix + ":fault"; + faultName = prefix + ":Fault"; } @@ -62,9 +62,9 @@ DOMString faultName; if (prefix.equals("") ) { - faultName = "fault"; + faultName = "Fault"; } else { - faultName = prefix + ":fault"; + faultName = prefix + ":Fault"; } DOM_NodeList l = doc.getElementsByTagName (faultName);