Php bir web servisini çağırmak?

0 Cevap php

Tümü,

Atlast bizim yönetici bizim apache sunucu üzerinde PEAR SOAP modül yükleyin vardı. I Aşağıdaki kodu çalıştığınızda - Şimdi bana "HTTP Bad Request" bir hata veriyor. Herkes yardımcı olabilir?

<html>
<body>
<?php
/* Include PEAR::SOAP's SOAP_Client class: */
require_once('SOAP/Client.php');
$zip = $_REQUEST['zip'];
?>

<form action="wszip.php" method="post">
<table cellspacing="10" bgcolor="CadetBlue">
<tr>
<td><B>Enter Zip Code : </B><input type="text" name="zip" /></td>
<td></td>
<td><input type="Submit" value="Find It!"/></td>
</tr>
</table>
<BR><BR><BR><BR>
</form>

<?php
if($zip != "")
{
    $wsdl_url = "http://www.webservicex.net/uszip.asmx?WSDL";
    $wsdl     = new SOAP_WSDL($wsdl_url);
    $client   = $wsdl->getProxy();
    $params = array('USZip' => $zip);
    $response = $client->GetInfoByZIP($params);
    echo $response;
}
?>

</body>
</html>

Teşekkürler.

0 Cevap