2010-12-02 105 views
6

我試圖使用PHP向服務器發送帶有XML數據的HTTPS POST請求。PHP https使用cURL發佈XML數據

任何發送到服務器都需要身份驗證,因此我會使用cURL。

一些背景信息:XML數據將請求服務器將文件從特定URL上載到其本地存儲。

使用此API的一個規則是我必須將每個請求的內容類型設置爲application/xml

這是我做了什麼,但沒有工作...

<?php 
$fields = array(
'data'=>'<n1:asset xmlns:n1="http://.....com/"><title>AAAA</title><fileName>http://192.168.11.30:8080/xxx.html</fileName><description>AAAA_desc</description><fileType>HTML</fileType></n1:asset>' 
); 
$fields_string = ""; 
foreach($fields as $key=>$value) { 
$fields_string .= $key.'='.$value.'&'; 
} 
rtrim($fields_string,'&'); 

$url = "https://192.168.11.41:8443/"; 

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_POST, count($fields)); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); 

curl_setopt($ch, CURLOPT_HEADER, true); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($ch, CURLOPT_USERPWD, "admin:12345678"); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/xml', 'Content-length: '. strlen($fields_string))); 

$result = curl_exec($ch); 

curl_close($ch); 

echo $result; 
?> 

我希望得到的XML答覆要麼成功上傳或上傳失敗。 但相反,我收到此錯誤消息。

HTTP/1.1 415不支持的媒體類型 服務器:Apache-狼/ 1.1 內容類型:文本/ XML;字符集= UTF-8 的Content-Length:0時間:星期三,12月02日 2010 03 :02:33 GMT

我確定文件類型是正確的,XML格式是正確的。 我試過urlencode的領域,但它沒有奏效。 我還可能做錯了什麼?

回答

0

也許你可以嘗試text/xml而不是application/xml?

+0

試過了,沒有工作,沒有 – EDDIU 2010-12-02 04:12:51

0

你要做的,在你原來的代碼:

curl_setopt($ch, CURLOPT_POST, true); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields['data']); 

curl_setopt($ch, CURLOPT_POSTFIELDS, '<n1:asset xmlns:n1="http://.....com/"><title>AAAA</title><fileName>http://192.168.11.30:8080/xxx.html</fileName><description>AAAA_desc</description><fileType>HTML</fileType></n1:asset>'); 

我的意思是,你必須將XML直接發送。

+0

只是去嘗試,沒有工作。它回覆了同樣的錯誤信息。 – EDDIU 2010-12-02 04:43:33

3

我解決

$xml = $this->getXml(); 
$url = $this->getUrl(); 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_HEADER, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
             'Content-type: application/xml', 
             'Content-length: ' . strlen($xml) 
            )); 
$output = curl_exec($ch); 
curl_close($ch); 
+0

curl_setopt($ ch,CURLOPT_POST,1)與有什麼區別?和curl_setopt($ ch,CURLOPT_POST,true);這是什麼告訴CURL? – TimNguyenBSM 2015-03-31 16:30:26