(在问题编辑中回答。转换为社区 wiki 答案。请参阅将问题的答案添加到问题本身时的适当操作是什么?)
OP写道:
最后,达到我的解决方案的方法是使用 Travelport 测试工具编写我的 xml 请求并传递包含 xml 的字符串。
认证所需:
$this->credentials["login"]=$user;
$this->credentials["password"]=$pass;
$this->credentials["traceid"]=$traceid; (branchcode)
然后我创建了肥皂客户端:
$client = new SoapClient("galileo/air_v20_0/Air.wsdl", $this->credentials);
$rsp=$client->__doRequest($this->request, $this->credentials['location'], $this->credentials['soapaction'], $this->credentials['soap_version']);
这满足了我的需求:)
现在,我正在尝试使用 SoapClient 和 WSDL 函数在这篇文章中使用相同名称的 WSDL 函数传递请求信息。如何选择一个?