Package org.apache.muse.ws.resource.properties.query.impl

Examples of org.apache.muse.ws.resource.properties.query.impl.QueryRequest


    }
   
    public Node[] queryResourceProperties(String query, String dialect)
        throws SoapFault
    {
        QueryRequest request = new QueryRequest(query, dialect);  
       
        Element response = invoke(WsrpConstants.QUERY_RESOURCE_PROPERTIES_URI, request.toXML());
       
        NodeList children = response.getChildNodes();
        return XmlUtils.convertToArray(children);
    }
View Full Code Here


    }
   
    public Node[] queryResourceProperties(String query, String dialect)
        throws SoapFault
    {
        QueryRequest request = new QueryRequest(query, dialect);  
       
        Element response = invoke(WsrpConstants.QUERY_RESOURCE_PROPERTIES_URI, request.toXML());
       
        NodeList children = response.getChildNodes();
        return XmlUtils.convertToArray(children);
    }
View Full Code Here

TOP

Related Classes of org.apache.muse.ws.resource.properties.query.impl.QueryRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.