SOAPENV_QUALIFIER + ":" + SOAP_BODY);
Element fault = response.createElementNS(SOAP_NAMESPACE,
SOAPENV_QUALIFIER + ":" + SOAP_FAULT);
newBody.appendChild(fault);
Element faultcode = response.createElement(SOAP_FAULTCODE);
faultcode.appendChild(response
.createTextNode("Server.Exception"));
fault.appendChild(faultcode);
Element faultstring = response.createElement(SOAP_FAULTSTRING);
faultstring.appendChild(response.createTextNode(text));
fault.appendChild(faultstring);