0

我开始学习网络服务,并且正在做一些测试。

我正在尝试编写一个服务来将表的所有数据传递给我的客户端,但我无法让它工作。

第一个“servei”有效,但第二个无效。

任何建议将不胜感激。谢谢

服务.php

require 'lib/nusoap.php';    

$server = new nusoap_server();
$server->configureWSDL("test" . "urn:test");    

include 'functions.php';    

$server->wsdl->addComplexType('servei', 'complexType', 'struct', 'all', '', array(
    'preu_antic' => array('name' => 'preu_antic', 'type' => 'xsd:float'),
    'preu_actual' => array('name' => 'preu_actual', 'type' => 'xsd:float'),
    'descompte_servei' => array('name' => 'descompte_servei', 'type' => 'xsd:float'),
));    

$server->wsdl->addComplexType('ServiceTypes', 'complexType', 'struct', 'all', '', array(
    'id_tipus_servei' => array('name' => 'id_tipus_servei', 'type' => 'xsd:inter'),
    'nom_tipus_servei' => array('name' => 'nom_tipus_servei', 'type' => 'xsd:string'),
    'descripcio_tipus_servei' => array('name' => 'descripcio_tipus_servei', 'type' => 'xsd:string'),
));    

$server->wsdl->addComplexType('ArrayOfServiceTypes', 'complexType', 'array', '', 'SOAP-ENC:Array', array(), array(
    array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:ServiceTypes[]')), 'tns:ServiceTypes');    

$server->register('servei', array("id_servei" => 'xsd:inter'), array("return" => 'tns:servei'));
$server->register('getServiceTypes', array("idioma" => 'xsd:string'), array("return" => 'tns:ArrayOfServiceTypes'));    


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

函数.php

function servei($id){
    conexio();
    $query_servei = mysql_query("SELECT * FROM servei WHERE id_servei = '$id'")or die(mysql_error());
    $row = mysql_fetch_array($query_servei);
    $preu_antic = $row['preu_antic'];
    $preu_actual = $row['preu_actual'];
    $descompte_servei = $row['descompte_servei'];

    $servei = array('preu_antic'=>$preu_antic,'preu_actual'=>$preu_actual,'descompte_servei'=>$descompte_servei);

    return $servei;
}    

function getServiceTypes($idioma){
    conexio();
    $query = mysql_query("SELECT id_tipus_servei, nom_tipus_servei, descripcio_tipus_servei FROM idioma_tipus_servei WHERE id_idioma = '$idioma'") or die(mysql_error());
    $n = 0;
    while ($row = mysql_fetch_array($query)) {
        $result[$n]['id_tipus_servei'] = $row['id_tipus_servei'];
        $result[$n]['nom_tipus_servei'] = $row['nom_tipus_servei'];
        $result[$n]['descripcio_tipus_servei'] = $row['descripcio_tipus_servei'];
        $n++;
    }
    return $result;
} 
?>

客户端.php

<?php
    require 'lib/nusoap.php';
    include 'functions.php';
    $client = new nusoap_client("http://192.168.8.155:8090/webservice/service.php?wsdl");    

   //$id=1;
   // $servei = $client -> call('servei',array("id_servei"=>"$id"));
   // print_r($servei);    


    $idioma ='ca';
    $servicetypes = $client -> call('getServiceTypes',array("idioma"=>"$idioma"));
    print_r($servicetypes);    

    ?>
4

2 回答 2

0

好的,我处理了。

如果您使用的是 PHP 5.4,您必须在 nusoap.php 中注释第 6132 行。

于 2013-07-17T07:46:42.460 回答
0

如果我们要改变它,这不能解决:

$this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]");

至:

$this->debug("serializing array element: $k, $v of type: " . $typeDef['arrayType'] );

于 2014-10-21T23:11:02.950 回答