13 years ago
Accessing SoapUIPro via jar libraries
Hi,
Right now, I have integrated SoapUI into our test framework using the jar files under SoapUI lib directory. So our framework (groovy) code looks like:
Users need not install SoapUI on their machine. Framework code takes care of accessing SoapUI. My company is planning to buy SoapUIPro. So will the above design still work with SoapUIPro?
In case of floating licenses, how do I handle pointing to the license server in code, rather than installing SoapUIPro on every machine?
thanks,
Joseph
Right now, I have integrated SoapUI into our test framework using the jar files under SoapUI lib directory. So our framework (groovy) code looks like:
project = new WsdlProject(projectName);
project.setPropertyValue('operator', '1234');
testSuite = project.getTestSuiteByName(testSuiteName);
soapuiTestCase = testSuite.getTestCaseByName(testCase);
soapuiTestCase.run(new PropertiesMap(), false);
Users need not install SoapUI on their machine. Framework code takes care of accessing SoapUI. My company is planning to buy SoapUIPro. So will the above design still work with SoapUIPro?
In case of floating licenses, how do I handle pointing to the license server in code, rather than installing SoapUIPro on every machine?
thanks,
Joseph