0

嘿伙计们,我有一个问题(再次)。这次我尝试使用带有 XAMPP 1.7.1 的 NuSoap,其中包括 PHP5 和 MySQL……我写了一个肥皂客户端:

<?php
// Pull in the NuSOAP code
require_once('nusoap.php');
// Create the client instance
$client = new soapclient('http://localhost/mysql/helloworld2.php');
// Check for an error
$err = $client->getError();
if ($err) {
    // Display the error
    echo '<p><b>Constructor error: ' . $err . '</b></p>';
    // At this point, you know the call that follows will fail
}
// Call the SOAP method
$result = $client->call('hello', array('name' => 'Doro'));
// Check for a fault
if ($client->fault) {
    echo '<p><b>Fault: ';
    print_r($result);
    echo '</b></p>';
} else {
    // Check for errors
    $err = $client->getError();
    if ($err) {
        // Display the error
        echo '<p><b>Error: ' . $err . '</b></p>';
    } else {
        // Display the result
        print_r($result);
    }
}

?>

和我的肥皂服务器:

   // Enable debugging *before* creating server instance
   $debug = 1;
   // Create the server instance
   $server = new soap_server;
   // Register the method to expose
   $server->register('hello');

   // Define the method as a PHP function
   function hello($name) {

$dbhost = 'blah';
$dbuser = 'blub';
$dbpass = 'booboo';
try{
       $conn = MYSQL_CONNECT($dbhost, $dbuser, $dbpass) 
           or die ('Error connecting to mysql');

    if( !$conn ){
        return 'Hello, '.$name.' ...  too bad, I cannot connect to the db!';
    }
    else{
        $dbname = 'soaperina';
        MYSQL_SELECT_DB($dbname) or die('Error connecting to '.dbname);

        $queryres = @mysql_db_query(
                          'response',
                          'SELECT * FROM farben');

                    return 'RESPONSE: <br>';

                   while( $arr = mysql_fetch_array( $queryres ) ){
                         return $arr["ID"]." - ".$arr["Farben"]." - ".$arr["Rating"]."<br>";
                   }
            }
    }
    catch(Exception $e){
                 return 'Sorry, '.$name.', but that did not work at all!';
        }


   }
   // Use the request to (try to) invoke the service
   $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
   $server->service($HTTP_RAW_POST_DATA);
?>

我知道 PHP 可以工作,Apache 可以工作,MySQL 可以工作……它也可以一起工作,但是当我尝试使它与 NuSOAP 一起工作时,它就不起作用了。我得到以下信息:

警告:SoapClient::SoapClient( http://localhost/mysql/helloworld2.php ) [soapclient.soapclient]: 无法打开流:Ein Verbindungsversuch ist fehlgeschlagen, da die Gegenstelle nach einer bestimmten Zeitspanne nicht Richtig reagiert hat, oder die hergestellte Verbindung war fehlerhaft, da der verbundene Host nicht reagiert hat。在第 6 行的 C:\xampp\htdocs\mysql\helloworld2client.php

警告:SoapClient::SoapClient() [soapclient.soapclient]: I/O 警告:无法在 C:\xampp\htdocs\mysql\helloworld2client.php中加载外部实体“ http://localhost/mysql/helloworld2.php ”在第 6 行

致命错误:第 41 行的 C:\xampp\htdocs\mysql\helloworld2client.php 中的最大执行时间超过了 60 秒

我不知道那应该是什么意思。我希望你们能帮忙!!!提前谢谢:)

4

2 回答 2

2

我将 NuSOAP 版本 1.7.3 与 PHP5 一起使用。在这个 NuSOAP 1.7.3 中,soapclient 类由 nu_soapclient 重命名。

你可以试试这个:

$client = new nusoap_client('http://localhost/mysql/helloworld2.php');
于 2010-03-10T13:26:00.507 回答
0

回答我自己的问题:nusoap has a problem with php5 ...网上有一些答案和一些解决方案(不是很多),但他们没有与我合作。我降级到php4,它工作正常......

于 2009-06-24T06:02:54.093 回答