如何使用groovy脚本在soapui中设置Outgoing WS-Securtiy配置

时间:2015-07-21 04:39:14

标签: groovy soapui

我需要使用groovy脚本在soapui工具中为web服务设置传出的WS-Security配置。我找到了以下代码。

None

任何人都可以帮我解决如何为特定的WSDL项目分配此配置吗?如果这种方法是正确的还是有其他替代方法可以让我知道吗?

先谢谢。

1 个答案:

答案 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);
}

https://community.smartbear.com/t5/SoapUI-Open-Source/Groovy-to-handle-WSS-Outgoing-Incoming-requests/td-p/118524上找到了代码段