从SOAP UI工具获取SOAP Header xml

时间:2016-11-14 16:16:50

标签: xml web-services soapui

我正在使用SOAP UI发送请求。我传递的xml是这样的:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://PWS">
    <soapenv:Header/>
    <soapenv:Body>
        <psw:Method1...>

           <pws:model query="">
               <pws:keys query="">
                    <pws:MyID type="String" ...></pws:MyID>
               </pws:keys>
           </psw:model>
        </psw:Method1>
   </soapenv:Body>
</soapenv:Envelope>

<soapenv:Header/>部分由SOAP UI设置,我不知道如何从工具中查看它。如何查看完整的SOAP请求?

1 个答案:

答案 0 :(得分:0)

在请求编辑器中,您会在左侧看到一个标签Raw。从soapui发送请求后,只需单击那个。

您可以找到发送到端点的确切数据,包括soap Header信息。

以下是描述相同内容的示例屏幕。

enter image description here

<强>更新 如果您打算在soap header下查看某些数据,则需要在请求属性中添加凭据,这些凭据将显示在请求编辑器的左侧。

有关详细信息,请参阅文档here