问题 PHP SoapClient():发送“User-Agent”和“Accept”HTTP Header
由于防火墙审核,请求必须始终具有“UserAgent”和“Accept”标头。
我试过这个:
$soapclient = new soapclient('http://www.soap.com/soap.php?wsdl',
array('stream_context' => stream_context_create(
array(
'http'=> array(
'user_agent' => 'PHP/SOAP',
'accept' => 'application/xml')
)
)
)
);
服务器soap收到的请求
GET /soap.php?wsdl HTTP/1.1
Host: www.soap.com
User-Agent: PHP/SOAP
Connection: close
预期的结果
GET /soap.php?wsdl HTTP/1.1
Host: www.soap.com
Accept application/xml
User-Agent: PHP/SOAP
Connection: close
为什么没有发送“接受”? “用户代理”有效!
2831
2018-04-29 07:50
起源
答案:
生成请求标头时,SoapClient构造函数不会读取所有stream_context选项。但是,您可以将任意标头放在一个字符串中 header
里面的选项 http
:
$soapclient = new SoapClient($wsdl, [
'stream_context' => stream_context_create([
'user_agent' => 'PHP/SOAP',
'http'=> [
'header' => "Accept: application/xml\r\n
X-WHATEVER: something"
]
])
]);
要设置多个,请将它们分开 \r\n
。
(正如提到的那样 伊恩菲利普斯,“user_agent”可以放在stream_context的根目录下,也可以放在“http”部分内。)
13
2018-02-04 15:20
根据 PHP SoapClient手册页, user_agent
是一个顶级选项。所以你应该像这样修改你的例子:
$soapclient = new SoapClient('http://www.soap.com/soap.php?wsdl', [
'stream_context' => stream_context_create([
'http' => ['accept' => 'application/xml'],
]),
'user_agent' => 'My custom user agent',
]);
2
2018-05-10 23:05
如果您希望您的代码更灵活,请使用此方法。
$client = new SoapClient(
dirname(__FILE__) . "/wsdl/" . $env . "/ServiceAvailabilityService.wsdl",
array(
'login' => $login,
'password' => $password
)
);
//Define the SOAP Envelope Headers
$headers = array();
$headers[] = new SoapHeader(
'http://api.com/pws/datatypes/v1',
'RequestContext',
array(
'GroupID' => 'xxx',
'RequestReference' => 'Rating Example',
'UserToken' => $token
)
);
//Apply the SOAP Header to your client
$client->__setSoapHeaders($headers);
2
2018-02-10 14:57
答案:
生成请求标头时,SoapClient构造函数不会读取所有stream_context选项。但是,您可以将任意标头放在一个字符串中 header
里面的选项 http
:
$soapclient = new SoapClient($wsdl, [
'stream_context' => stream_context_create([
'user_agent' => 'PHP/SOAP',
'http'=> [
'header' => "Accept: application/xml\r\n
X-WHATEVER: something"
]
])
]);
要设置多个,请将它们分开 \r\n
。
(正如提到的那样 伊恩菲利普斯,“user_agent”可以放在stream_context的根目录下,也可以放在“http”部分内。)
13
2018-02-04 15:20
根据 PHP SoapClient手册页, user_agent
是一个顶级选项。所以你应该像这样修改你的例子:
$soapclient = new SoapClient('http://www.soap.com/soap.php?wsdl', [
'stream_context' => stream_context_create([
'http' => ['accept' => 'application/xml'],
]),
'user_agent' => 'My custom user agent',
]);
2
2018-05-10 23:05
如果您希望您的代码更灵活,请使用此方法。
$client = new SoapClient(
dirname(__FILE__) . "/wsdl/" . $env . "/ServiceAvailabilityService.wsdl",
array(
'login' => $login,
'password' => $password
)
);
//Define the SOAP Envelope Headers
$headers = array();
$headers[] = new SoapHeader(
'http://api.com/pws/datatypes/v1',
'RequestContext',
array(
'GroupID' => 'xxx',
'RequestReference' => 'Rating Example',
'UserToken' => $token
)
);
//Apply the SOAP Header to your client
$client->__setSoapHeaders($headers);
2
2018-02-10 14:57
也许你可以使用 fsockopen()
这样做的方法
喜欢这个
<?php
$sock = fsockopen('127.0.0.1' /* server */, 80 /* port */, $errno, $errstr, 1);
$request = "<Hello><Get>1</Get></Hello>";
fputs($sock, "POST /iWsService HTTP/1.0\r\n");
fputs($sock, "Content-Type: text/xml\r\n");
fputs($sock, "Content-Length: ".strlen($request)."\r\n\r\n");
fputs($sock, "$request\r\n");
$buffer = '';
while($response = fgets($request, 1024)){
$buffer .= $response;
}
// Then you can parse that result as you want
?>
我现在手动使用该方法从我的指纹机器获取SOAP数据。
-1
2018-02-05 12:05