我需要使用groovy脚本在soapui工具中为web服务设置传出的WS-Security配置。我找到了以下代码。
None
任何人都可以帮我解决如何为特定的WSDL项目分配此配置吗?如果这种方法是正确的还是有其他替代方法可以让我知道吗?
先谢谢。
答案 0 :(得分:0)
原谅很久了..
def project = testRunner.testCase.testSuite.project;
def WssC = project.getWssContainer();
if (!WssC.getOutgoingWssList().contains("TestAutomation-Layer7")) {
def owss = WssC.addOutgoingWss("TestAutomation-Layer7");
owss.setActor("TestAutomation");
owss.setPassword("TestAutomation");
owss.setUsername("TestAutomation");
owss.setMustUnderstand(true);
}