Examples of WSDL11SupplierTemplate


Examples of org.apache.axis2.dataretrieval.WSDL11SupplierTemplate

        assertTrue(wsdl.contains("<wsdl:description xmlns:wsdl=\"http://www.w3.org/ns/wsdl\">"));
        assertTrue(wsdl.contains("</wsdl:description>"));
    }

    public void testWSDL11SupplierTemplate() throws Exception {
        WSDL11SupplierTemplate value = new TestWSDL11SupplierTemplate();
        axisService.addParameter(Constants.WSDL_SUPPLIER_PARAM, value);
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        axisService.printWSDL(outputStream);
        String wsdl = outputStream.toString();
        assertTrue(wsdl.contains("<wsdl:definitions"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.