如何使用SOAP 1.2和WSDL将XML作为请求发送给供应商并接收响应?

时间:2018-08-09 23:21:09

标签: php xml

我明天要去做一个测试(抱歉,恕不另行通知)。我似乎无法弄清楚如何将XML作为请求发送给供应商并接收响应?我应该在php中发送请求。将数据发送回客户端到服务器。我认为对于客户来说,我需要2行代码。第一行代码用于请求第二行代码用于响应。任何帮助将不胜感激!

function autoLogin() {

document.getElementById("userName").value = "username";
document.getElementById("pwd").value = "password";
document.getElementById("LoginButton").click();

}
autoLogin();

function nextPage() {
window.location.replace("https://www.website.com/page2");
}

nextPage();

1 个答案:

答案 0 :(得分:0)

您可以使用PHP:SoapClient类来解决您的问题:

http://php.net/manual/en/class.soapclient.php

您可以在线找到一些代码示例,这些示例使用PHP Soap Client类库发送XML请求和接收XML响应。