2014-11-02 93 views
0

爲什麼我收到錯誤415,如果有人能幫助我 我不明白爲何出現錯誤 鏈接錯誤 http://agency.lastminute-hr.com/stranice/upisi_destinacije_unico.phpPHP與XML - 如何生成一個SOAP請求錯誤415

這是怎樣的XML

POST /services/WebService.asmx HTTP/1.1 
Host: wl.filos.com.gr 
Content-Type: application/soap+xml; charset=utf-8 
Content-Length: length 

    <?xml version="1.0" encoding="utf-8"?> 
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> 
     <soap12:Body> 
     <PlaceSearch xmlns="http://www.cyberlogic.gr/webservices/"> 
      <xml>string</xml> 
     </PlaceSearch> 
     </soap12:Body> 
    </soap12:Envelope> 

我的代碼是:

$soapUrl = "http://wl.filos.com.gr/services/WebService.asmx?op=PlaceSearch"; 



$soap_request = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; 
    $soap_request .= "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"; 
    $soap_request .= " <soap:Body>\n"; 
    $soap_request .= " <PlaceSearch xmlns=\"http://www.cyberlogic.gr/webservices/\">\n"; 
    $soap_request .= " <xml><PlaceSearchRequest><Username>******</Username><Password>******</Password><PlaceType>Cities</PlaceType><Language>en</Language></PlaceSearchRequest></xml>\n"; 
    $soap_request .= " </PlaceSearch>\n"; 
    $soap_request .= " </soap:Body>\n"; 
    $soap_request .= "</soap:Envelope>"; 
$xml_post_string = $soap_request; 



$headers = array(
"POST /services/WebService.asmx HTTP/1.1", 
"Host: wl.filos.com.gr", 
"Content-Type: application/soap+xml; charset=utf-8", 
"Content-Length: ".strlen($xml_post_string) 
); 




$url = $soapUrl; 

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_POST, true); 
curl_setopt($ch, CURLOPT_POSTFIELDS, ($xml_post_string)); 
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

$response = curl_exec($ch); 

$info = curl_getinfo($ch); 

    // echo results 
     echo "The server responded: <br />"; 
     echo " " . $info['http_code']. " <br />"; 

curl_close($ch);   
$response1 = str_replace("<soap12:Body>","",$response); 
$response2 = str_replace("</soap12:Body>","",$response1); 

$parser = simplexml_load_string($response2); 
+0

這與您自己和已經問過的問題有什麼不同? 415是不支持媒體類型的代碼。您必須以Web服務端點接受的格式創建請求XML數據。你仍然不這樣做。具有* XML示例的webservice *的文檔位於:http://wl.filos.com.gr/services/WebService.asmx?op=PlaceSearch - 即使有一些測試工具。 – hakre 2014-11-02 12:32:46

回答

0

這XML是使用web服務無效。

這裏貼吧:http://wl.filos.com.gr/services/WebService.asmx?op=PlaceSearch和檢查什麼是錯的

+0

$ xml_post_string ='<?xml version =「1.0」encoding =「utf-8」?> SERUNCD TA78UNC城市'; – sale2211 2014-11-02 12:28:50

+0

現在得到錯誤400 你能幫我嗎 http://agency.lastminute-hr.com/stranice/upisi_destinacije_unico.php – sale2211 2014-11-02 12:29:44

+0

所以它仍然是無效的。更正 – 2014-11-02 12:30:52

0

415是HTTP狀態代碼你從火中嫋嫋的HTTP請求的響應獲得。

這些代碼是standardized and documented,在你的415案:

415不支持的媒體類型

服務器拒絕,因爲請求的實體的格式不能以服務請求由請求的資源爲請求的方法提供支持。

請求的實體表示請求主體,它是POST方法的請求主體。簡而言之,這意味着您發送給服務器的數據不符合需求。

您必須首先修復發送給服務器的數據,否則後面的所有操作(如將響應字符串加載到simplexml中)都將失敗。另外,如果你確定你正確地遵循了web服務的規範,你唯一可以做的就是正確的錯誤處理,也就是說,如果服務器爲你的請求返回一個錯誤(代碼400到499)不是進一步處理返回值,但只是表示錯誤情況。