SABUN: Biz hiçbir XML belge var gibi görünüyor

0 Cevap php

Ben bir web hizmeti oluşturmak için çalışıyorum ama gitmeden önce ben ilk çalışmaya internet üzerinde bulunan basit bir örnek almaya çalışıyorum ama aşağıdaki hatayı almaya devam:

Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in C:\Documents and Settings\geoff\My Documents\Websites\jquery\index.php:20 Stack trace: #0 [internal function]: SoapClient->__call('getStockQuote', Array) #1 C:\Documents and Settings\geoff\My Documents\Websites\jquery\index.php(20): SoapClient->getStockQuote(Array) #2 {main} thrown in C:\Documents and Settings\geoff\My Documents\Websites\jquery\index.php on line 20

Ben NuSOAP v1.94 kullanıyorum

Benim web servis kod şöyle görünür:

function getStockQuote($symbol) {
$price = '1.23';
return $price;
}

require('nusoap.php');

$server = new soap_server();

$server->configureWSDL('stockserver', 'urn:stockquote');

$server->register("getStockQuote",
            array('symbol' => 'xsd:string'),
            array('return' => 'xsd:decimal'),
            'urn:stockquote',
            'urn:stockquote#getStockQuote');

$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA)
                  ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);

Ben tek nedeni, sunucu komut dosyası php etiketleri önce veya sonra boşluk var ama şu durumda biliyorum. Bu saat için beni deli sürüş olmuştur! Herhangi bir yardım çok takdir.

0 Cevap