FileDocCategorySizeDatePackage
Qualify_BindingImpl.javaAPI DocApache Axis 1.45766Sat Apr 22 18:57:26 BST 2006test.wsdl.qualify

Qualify_BindingImpl

public class Qualify_BindingImpl extends Object implements test.wsdl.qualify.Qualify_PortType
Qualify_BindingImpl.java Service implementation for Qualified/Nonqualified elements in a complex type. The service validates the request XML and the test client validates the response XML to verify the elements that should be namesapce qualified are, and those that are not supposed to be aren't.

Fields Summary
public static final String
namespace
Constructors Summary
Methods Summary
public test.wsdl.qualify.FormOverrideResponseResponseformOverride(test.wsdl.qualify.FormOverrideComplex complex)

        // 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;
    
public java.lang.Stringsimple(java.lang.String name)

    
          
        // 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:
         *   <Simple xmlns="urn:qualifyTest">
         *    <name>Tommy</name>
         *   </Simple>
         */

        // Now we have a DOM Element, verfy namespace attributes
        String simpleNS = body.getNamespaceURI();
        if (!simpleNS.equals(namespace) ) {
            throw new AxisFault("Namespace of Simple element incorrect: " + 
                                simpleNS + " should be: " + namespace);
        }

        NodeList list = body.getChildNodes();
        for(int i=0;i<list.getLength();i++) {
            Node node = list.item(i);
            if(node.getNodeType() == Node.TEXT_NODE)
                continue;
            String nameNS = node.getNamespaceURI();
            if (!nameNS.equals("urn:qualifyTest")) {
                throw new AxisFault("Namespace of name element incorrect: " + 
                                    nameNS + " should be: urn:qualifyTest");
            }
        }
        
        // Return a response (which the client will validate)
        return "Hello there: " + name;