我想在添加WSDL文件后使用SoapUI中生成的操作生成一些Testcases映射。 步骤进行:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET">
<soapenv:Header/>
<soapenv:Body>
<web:getAirportInformationByISOCountryCode>
<!--Optional:-->
<web:CountryAbbrviation>?</web:CountryAbbrviation>
</web:getAirportInformationByISOCountryCode>
</soapenv:Body>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:web="http://www.webserviceX.NET">
<soap:Header/>
<soap:Body>
<web:getAirportInformationByISOCountryCode/>
</soap:Body>
</soap:Envelope>
<web:CountryAbbrviation>?</web:CountryAbbrviation>
<web:getAirportInformationByISOCountryCode/>
醇>
请告诉我在SoapUI中是否有任何设置在映射操作后生成Soap Request测试步骤时我遗漏了。目前我只是手动添加缺少的输入标签,但我确信这不是正确的做法。