我正在尝试通过带有 CURL 的 Internet Explorer 访问 Web 服务(在本地工作正常),但我收到了以下错误消息:
System.InvalidOperationException:缺少参数:服务器。在 System.Web.Services.Protocols.ValueCollectionParameterReader.Read(NameValueCollection 集合) 在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() 在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
这是我的电话:
$aParamWS["serverName"] = $paramArray["serverName"];
$aParamWS["userName"] = $paramArray["userName"];
$sUrl_ws = "http://myServer/WS_TEST/test_webService.asmx/TestMethod";
$curl = curl_init($sUrl_ws);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_VERBOSE, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
//curl_setopt($curl, CURLOPT_USERAGENT, "PhpRestClient");
curl_setopt($curl, CURLOPT_POST, true);
foreach($aParamWS as $key=>$value)
{
$post_array_string .=$key.'='.$value.'&';
}
$post_array_string = rtrim($post_array_string, '&');
curl_setopt($curl, CURLOPT_POST, count($aParamWS));
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_array_string);
$curl_response = curl_exec($curl);
curl_close($curl);
echo $curl_response;
我知道这个问题已经通过 stringify array 解决了很多次,但它仍然不起作用。任何想法 ?非常感谢