我对 SOAP 不是很熟悉。我正在尝试通过 XML 请求使用 SOAP WSDL。此请求工作正常,由 chrome 扩展程序 Boomerang 创建。当我从 Boomerang 运行它时,我也在 SOAP UI 中执行了它,在云应用程序“boomi”中执行了一个进程,这是预期的结果。
但是,出于演示目的,我想知道是否可以使用 HTML 或 JavaScript 运行此请求?
<x:Envelope xmlns:x="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.platform.boomi.com/">
<x:Header/>
<x:Body>
<api:executeProcess>
<api:properties processId="1876e5e9-ceb7-4417-a465-04f1ee381d01" processName="Box CSV to HA" atomId="de5b7bf7-2cf2-4fa1-952f-ad960db0990b">
<api:ProcessProperties>
<api:ProcessProperty>
<api:Name>LoginName</api:Name>
<api:Value>XXXXX@XXXXXX.com</api:Value>
</api:ProcessProperty>
<api:ProcessProperty>
<api:Name>Password</api:Name>
<api:Value>XXXXXX</api:Value>
</api:ProcessProperty>
</api:ProcessProperties>
</api:properties>
</api:executeProcess>
</x:Body>
</x:Envelope>