php – SoapClient设置自定义HTTP标头
作者:互联网
我正在编写一个基于PHP的SOAP客户端应用程序,该应用程序使用PHP5本机的SOAP库.我需要发送一个HTTP cookie和一个额外的HTTP头作为请求的一部分. cookie部分没问题:
码:
$client = new SoapClient($webServiceURI, array("exceptions" => 0, "trace" => 1, "encoding" => $phpInternalEncoding));
$client->__setCookie($kkey, $vvalue);
我的问题是HTTP标头.我希望有一个名为的函数
__setHeader
要么
__setHttpHeader
在SOAP库中.但没有这样的运气.
还有其他人处理过吗?有解决方法吗?不同的SOAP库是否更容易使用?谢谢.
(我在这里找到了这个未提出的问题http://www.phpfreaks.com/forums/index.php?topic=125387.0,我复制了它b / c我也有同样的问题)
解决方法:
尝试为soap客户端设置流上下文:
$client = new SoapClient($webServiceURI, array(
"exceptions" => 0,
"trace" => 1,
"encoding" => $phpInternalEncoding,
'stream_context' => stream_context_create(array(
'http' => array(
'header' => 'SomeCustomHeader: value'
),
)),
));
标签:php,soap,soap-client 来源: https://codeday.me/bug/20191004/1854566.html