sudzc 生成错误的肥皂请求

发布于 2025-01-03 05:07:54 字数 981 浏览 0 评论 0原文

我尝试使用 Sudzc 生成 SOAP 请求。但生成的请求是错误的。 下面是 Sudzc 生成的肥皂请求和一个非常简单的示例请求的工作 SoapUI 请求。有人遇到过同样的问题吗?

Sudzc 生成的肥皂请求:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:sap-com:document:sap:soap:functions:mc-style">
    <soap:Body>
        <urn:ZcaptoSccMatDet>
            <IvMatnr>D300</IvMatnr>
        </urn:ZcaptoSccMatDet>
    </soap:Body>
</soap:Envelope>

工作 SoapUI 生成的消息:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sap com:document:sap:soap:functions:mc-style">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:ZcaptoSccMatDet>
         <IvMatnr>D300</IvMatnr>
      </urn:ZcaptoSccMatDet>
   </soapenv:Body>
</soapenv:Envelope>

I tried to use Sudzc to generate my SOAP requests. But the generated requests are wrong.
Below are the Sudzc generated soap request and the working SoapUI request of a very simple example request. Has anybody experienced the same problems?

Sudzc generated soap request:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="urn:sap-com:document:sap:soap:functions:mc-style">
    <soap:Body>
        <urn:ZcaptoSccMatDet>
            <IvMatnr>D300</IvMatnr>
        </urn:ZcaptoSccMatDet>
    </soap:Body>
</soap:Envelope>

Working SoapUI generated message:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sap com:document:sap:soap:functions:mc-style">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:ZcaptoSccMatDet>
         <IvMatnr>D300</IvMatnr>
      </urn:ZcaptoSccMatDet>
   </soapenv:Body>
</soapenv:Envelope>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

噩梦成真你也成魔 2025-01-10 05:07:55

凯,

如果您需要将输出更改为 soapenv,请查看 Soap.m 中的(Sudzc 生成的)代码。特别是,请查看 createEnvelope 方法。您可以将此方法中的硬编码引用从 soap 更新为 soapenv

Kay,

If you need to change the output to soapenv take a look at the (Sudzc generated) code in Soap.m. In particular, check out the createEnvelope method. You can update the hardcoded references in this method from soap to soapenv.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文