我了解到SOAP是一个非常有用的PHP库,用于将信息发送到wsdl web服务。我正在创建一个XML表单,并将其发送到web服务。我的朋友创建了web服务,他说它可以接收一个字符串。我尝试向他发送一个XML表单的字符串,当他复制粘贴XML时,它是正确的,但当我尝试使用web服务时,他得到的只是一个空指针。
while($row=mysql_fetch_array($result))
{
//Product Id is called ProductID in the XML
$product_id = $row['product_id'];
//Final price is called SalesPrice in the XML
$final_price = $row['final_price'];
echo $final_price.'<br>';
//qty is called Quantity in the XML
$qty = $row['qty'];
echo $qty.'<br>';
//Purchase cost is called PurchaseCost in the XML
$purchase_cost = $row['purchase_cost'];
echo $purchase_cost.'<br>';
$xml_output .="<SalesOrderLine>";
$xml_output.='<ProductID>'.$product_id.'</ProductID>';
$xml_output.='<Quantity>'.$qty.'</Quantity>';
$xml_output.='<SalesPrice>'.$final_price.'</SalesPrice>';
$xml_output.='<PurchaseCost>'.$purchase_cost.'</PurchaseCost>';
// Escaping illegal characters
$xml_output.='</SalesOrderLine>';
//$amount = $amount + $final_price;
//$i++;
}
$xml_output .="</SalesOrder>";
$xml = new SimpleXMLElement($xml_output);
$xml->asXML();
echo $xml;
try {
$client = new SoapClient("http://*&#^%(@%(*#(#$%)%CreateDB?wsdl");
$result = $client->addSalesOrder($xml);
} catch (SoapFault $e) {
var_dump(libxml_get_last_error());
var_dump($e);
}
//$result = $client->addSalesOrder($xml_output);
if (is_soap_fault($result)) {
trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})", E_USER_ERROR);
}
当我回显整个$xml_output字符串时,我可以通过检查代码看到它变成了一个XML工作表。无论是否使用SimpleXML库,将函数传递给Web服务都不起作用。如何将字符串安全地传输到XML工作表的Web服务,同时将其保持为字符串?
1条答案
按热度按时间ygya80vv1#
不能将XML作为Soap函数参数发送如果要将XML作为输入进行操作,请使用以下方式
请在链接http://www.php.net/manual/en/soapvar.soapvar.php上查找更多详细信息