我正在使用SoapUI对我们的一个 .net web 服务进行负载测试。
我是 SoapUI 的新手,所以我已经通过“入门”,使用公开可用的服务,并且没有任何问题。但是当我尝试向我的网络服务发送请求时,我收到了 HTTP/1.1 400 错误请求消息。
我从架构中生成了一个默认请求,并将请求 XML 插入到标签中,但是当我提交它时,我得到了上面的错误。
如果我浏览到该服务并在测试页面中插入相同的 XML,它会完美运行。
这是我提交的 XML:
<AccountInformationRequest xmlns="http://RedlineApplicationServices.com/CognitionAI/AccountInformationRequest.xsd">
<Authentication>
<LoginName>WWWWWW</LoginName>
<Password>KKKKKKK</Password>
</Authentication>
<Directives>
<Environment>TRIAL</Environment>
<RequestedAction>AccountSummary</RequestedAction>
<CustomerReference>77777</CustomerReference>
<AccountReference>000000111111</AccountReference>
</Directives></AccountInformationRequest>
任何想法我做错了什么?