我得到這個從SOAP客戶端請求:不是有效的AllXsd值
異常:異常的SOAPFault: [肥皂:客戶端]服務器無法 讀請求。 --->在XML文檔(2,273)中有一個錯誤 。 ---> 字符串'2010-5-24'不是有效的 AllXsd值。在/path/filinet.php:21 堆棧跟蹤:#0 [內部函數]: SoapClient - > __ call('SubIdDetailsByO ...', Array)#1 /path/filinet.php(21): SoapClient - > SubIdDetailsByOfferId(陣列)#2 {}主要
好像我發送一個不正確的值,我如何在PHP格式化的AllXsd我的價值?
這裏是我的代碼:
<?php
$start = isset($_GET['start']) ? $_GET['start'] : date("Y-m-d");
$end = isset($_GET['end']) ? $_GET['end'] : date("Y-m-d");
//define parameter array
$param = array('userName'=>'user', 'password'=>'pass', 'startDate' => $start, 'endDate' => $end, 'promotionId' => '');
//Get wsdl path
$serverPath = "https://webservices.filinet.com/affiliate/reports.asmx?WSDL";
//Declare Soap client
$client = new SoapClient($serverPath);
try {
//make the call
$result = $client->SubIdDetailsByOfferId($param);
//If error found display error
if(isset($fault))
{
echo "Error: ". $fault;
}
//If no error display response
else
{
//Used to display raw XML in the Web Browser
header("Content-Type: text/xml;");
//SubIdDetailsResult = XML results
echo $result->SubIdDetailsByOfferIdResult;
}
}
catch(SoapFault $ex) {
echo "<b>Exception:</b> ". $ex;
}
unset($client);
?>
遺憾,它並沒有奏效。 – 2010-05-24 20:09:43