// Validate XML request to make sure elements are properly qualified
// or not per the WSDL
MessageContext mc = MessageContext.getCurrentContext();
Message request = mc.getRequestMessage();
SOAPEnvelope env = request.getSOAPEnvelope();
String requestString = request.getSOAPPartAsString();
Element body;
try {
body = env.getFirstBody().getAsDOM();
} catch (Exception e) {
throw new AxisFault("Unable to get request body as DOM Element on server");
}
// debug
//System.err.println("Request:\n---------\n" + requestString + "\n------");
/*
* Here is what we expect the Body to look like:
* <FormOverride xmlns="urn:qualifyTest">
* <complex xmlns="">
* <ns1:name xmlns:ns1="urn:qualifyTest">Timmah</ns1:name>
* </complex>
* </FormOverride>
*/
// Now we have a DOM Element, verfy namespace attributes
String FormOverrideNS = body.getNamespaceURI();
if (!FormOverrideNS.equals(namespace) ) {
throw new AxisFault("Namespace of FormOverrideNS element incorrect: " +
FormOverrideNS + " should be: " + namespace);
}
Node complexNode = body.getFirstChild();
String complexNS = complexNode.getNamespaceURI();
if (complexNS != null ) {
throw new AxisFault("Namespace of <complex> element incorrect: " +
complexNS + " should be: NULL");
}
// FIXME: for some reason I can't get at the <name> node which is
// under the <complex> node. Are we not converting the request to
// DOM correctly?
if (complexNode.hasChildNodes()) {
Node nameNode = complexNode.getFirstChild();
String nameNS = nameNode.getNamespaceURI();
if (!nameNS.equals(namespace)) {
throw new AxisFault("Namespace of <name> element incorrect: " +
nameNS + " should be: " + namespace);
}
}
// Return a response (which the client will validate)
test.wsdl.qualify.FormOverrideResponseResponse r = new FormOverrideResponseResponse();
r.setName("Tommy");
return r;