Package org.jboss.soa.esb.services.soapui.SoapUIClientService

Examples of org.jboss.soa.esb.services.soapui.SoapUIClientService.WsdlOperationInfo


        File wsdlFile = new File(WSDL_LOCATAION + "/BPELRetailer.wsdl");
        SoapUIClientService mbean = new SoapUIClientService();

        properties.setProperty(HttpClientFactory.TARGET_HOST_URL, wsdlFile.toURI().toString());
       
        WsdlOperationInfo retailerBlast1 = mbean.getOperationInfo(wsdlFile.toURI().toString(), "BlastOrder", "{http://docs.active-endpoints.com/activebpel/sample/wsdl/retailer/2006/04/Retailer.wsdl}RetailerService", properties, true);
        WsdlOperationInfo retailerBlast2 = mbean.getOperationInfo(wsdlFile.toURI().toString(), "BlastOrder", "{http://docs.active-endpoints.com/activebpel/sample/wsdl/retailer/2006/04/Retailer.wsdl}RetailerService", properties, true);
        WsdlOperationInfo retailerBlast3 = mbean.getOperationInfo(wsdlFile.toURI().toString(), "BlastOrder", "{http://docs.active-endpoints.com/activebpel/sample/wsdl/customer/2006/04/Customer.wsdl}CustomerService", properties, true);
       
        assertTrue(retailerBlast1 == retailerBlast2);
        assertFalse(retailerBlast2 == retailerBlast3);
    }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.services.soapui.SoapUIClientService.WsdlOperationInfo

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.