我想使用 HTTP_Request2 Pear Class 发布。当我使用 cURL 做同样的事情时我是成功的,但是当我使用 HTTP_Request 时我没有得到响应数据。它说内容长度为 0。我阅读了 HTTP_Request2 的 PEAR 文档并按照它来编写代码。如果有人指出我的错误,那将有很大帮助。cURL 方法有效,但 HTTP_Request2 方法无效。我认为 HTTP_Request2 方法无法发布数据,但我也不确定标头。我的代码是
function header()
{
$this->setGuid(guid());
$this->header = array($this->service,
time(), $this->getGuid());
return $this->header;
}
function header1()
{
$this->setGuid(guid());
$this->header = array('X-OpenSRF-service: '.$this->service,
'X-OpenSRF-xid: '.time(), 'X-OpenSRF-thread: '.$this->getGuid());
return $this->header;
}
function toArray()
{
$url4 = urldata($this->method, $this->param);
return $url4; //returns an encoded url
}
function send1()
{
require_once 'HTTP/Request2.php';
//------cURL Method-------------------------
$endpoint = $this->endpoint;
$data = $this->toArray();
$header = $this->header1();
$url_post = 'http://'.$endpoint.'/osrf-http-translator';
$this->curl = curl_init();
curl_setopt($this->curl, CURLOPT_URL, $url_post);
curl_setopt($this->curl, CURLOPT_HEADER, 1);
curl_setopt($this->curl, CURLOPT_POST, 1);
curl_setopt($this->curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->curl, CURLOPT_HTTPHEADER, $header);
$this->server_result = curl_exec($this->curl);
if (curl_error($this->curl) != 0 ) {
$error = 'Curl error: ' . curl_error($this->curl);
return $error;
}
var_dump ($this->server_result);
echo "<HR />";
//-----HTTP_REQUEST2 Method---------------
$request = new HTTP_Request2();
$request->setUrl($url_post);
$request->setHeader(array('X-OpenSRF-service' => $header[0], 'X-OpenSRF-xid' => $header[1], 'X-OpenSRF-thread' => $header[2]));
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->addPostParameter($data);
var_dump ($request); echo "<HR />";
$response = $request->send(); var_dump($response);
}