To create a SOAPUI project using a wsdl
问题 I want to create a SOAPUI project using a wsdl. this is my code : File projectFile =new File("Test/sampleURI-soapui-project"); SoapUI.setSoapUICore(new StandaloneSoapUICore(true)); WsdlProject project = new WsdlProject("sampleURI"); WsdlInterface[] wsdls = WsdlImporter.importWsdl(project, "http://192.168.18.171/sample/api/v2_soap/?wsdl"); for(int j=0;j<wsdls.length;j++){ WsdlInterface wsdl = wsdls[j]; String soapVersion = wsdl.getSoapVersion().toString(); int c = wsdl.getOperationCount();