Search code examples
web-servicesparsingxpathwsdl

During the search xPath returns null


I have this wsdl file

<definitions targetNamespace="http://testwork/" name="HelloWorldService"
             xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
             xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy"
             xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:tns="http://testwork/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <types>
        <xsd:schema>
            <xsd:import namespace="http://soapServlet/" schemaLocation="http://localhost:8085/testwork/soapServlet?xsd=1"/>
        </xsd:schema>
    </types>
    <message name="sayHelloWorldFrom">
        <part name="parameters" element="tns:sayHelloWorldFrom"/>
    </message>
    <message name="sayHelloWorldFromResponse">
        <part name="parameters" element="tns:sayHelloWorldFromResponse"/>
    </message>
    <message name="additionalFault">
        <wsdl:part name="error" element="tns:responseFault"/>
    </message>
    <portType name="HelloWorld">
        <operation name="sayHelloWorldFrom">
            <input wsam:Action="http://testwork/HelloWorld/sayHelloWorldFromRequest" message="tns:sayHelloWorldFrom"/>
            <output wsam:Action="http://testwork/HelloWorld/sayHelloWorldFromResponse" message="tns:sayHelloWorldFromResponse"/>
            <wsdl:fault name="error" message="additionalFault"/>
        </operation>
    </portType>
    <binding name="HelloWorldPortBinding" type="tns:HelloWorld">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="sayHelloWorldFrom">
            <soap:operation soapAction=""/>
            <input>
                <soap:body use="literal"/>
            </input>
            <output>
                <soap:body use="literal"/>
            </output>
            <fault name="error">
                <soap:fault name="error" use="literal"/>
            </fault>
        </operation>
    </binding>
    <service name="HelloWorldService">
        <port name="HelloWorldPort" binding="tns:HelloWorldPortBinding">
            <soap:address location="http://localhost:8085/testwork/soapServlet"/>
        </port>
    </service>
</definitions>

I use xPath to search for the operation name, this is my snippet of code

public void parseWsdl(String wsdl, String funcName) throws ServiceException {
        InputStream isr = IOUtils.toInputStream(wsdl);
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        factory.setNamespaceAware(true);
        funcName = "sayHelloWorldFrom";
        try {
            org.w3c.dom.Document doc = factory.newDocumentBuilder().parse(isr);
            XPathFactory xFactory = XPathFactory.newInstance();
            XPath xPath = xFactory.newXPath();
            xPath.setNamespaceContext(new MyNamespaceContext());
            org.w3c.dom.Element element = (org.w3c.dom.Element) xPath.compile("ns:definitions/ns:portType/ns:operation[@name='" + funcName +"']").evaluate(doc, XPathConstants.NODE);
            log.info("element " + element);
            if (element == null) {
                throw new ServiceException(ErrorCode.SOAP_EXCEPTION_005);
            }
        } catch (ParserConfigurationException e) {
            throw new ServiceException(e, ErrorCode.SOAP_EXCEPTION_002);
        } catch (XPathExpressionException e) {
            throw new ServiceException(e, ErrorCode.SOAP_EXCEPTION_006);
        } catch (SAXException e) {
            throw new ServiceException(e, ErrorCode.SOAP_EXCEPTION_002);
        } catch (IOException e) {
            throw new ServiceException(e, ErrorCode.SOAP_EXCEPTION_001);
        }
    }


import javax.xml.namespace.NamespaceContext;
import java.util.Iterator;

public class MyNamespaceContext implements NamespaceContext {

    public String getNamespaceURI(String prefix) {
        if("ns".equals(prefix)) {
            return "http://schemas.xmlsoap.org/wsdl/";
        }
        return null;
    }

    public String getPrefix(String namespaceURI) {
        return null;
    }

    public Iterator getPrefixes(String namespaceURI) {
        return null;
    }

}

But even if the operation name is "sayHelloWorldFrom", element is still null, what is wrong? I thought that the problem was in default namespace, but I was trying to solve this problem with the help of the class described above, but the problem wasn't solved.


Solution

  • Could you try tns namespace?

    org.w3c.dom.Element element = (org.w3c.dom.Element) xPath.compile("tns:definitions/tns:portType/tns:operation[@name='" + funcName +"']").evaluate(doc, XPathConstants.NODE);
    

    EDIT:

    I check many options to resolve this issue. First I changed prefix name to wsdl, because it is wsdl namespace. But it not helped. Second I checked your WSDL. It is wierd for me two namespace declaration for WSDL:

    xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    

    When I deledet first I got correct element. I tested with XPath Tester.

    My XPath expression:

    //portType/operation[@name='sayHelloWorldFrom']
    

    My code:

    DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
    domFactory.setNamespaceAware(true);
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document doc = builder.parse(wsdl);
    
    XPathFactory xFactory = XPathFactory.newInstance();
    XPath xPath = xFactory.newXPath();
    xPath.setNamespaceContext(new MyNamespaceContext());
    XPathExpression expr = xPath.compile("//wsdl:portType/wsdl:operation[@name='" + funcName +"']");
    org.w3c.dom.Element element = (org.w3c.dom.Element)expr.evaluate(doc, XPathConstants.NODE); 
    

    Now in this case when I add portype without a name prefix I get null. So, I use prefix in java code. Please check and test it!