2010-01-08 178 views
0

我已經定義了一個Web服務,從我的MySQL數據庫返回數據的數組。WSDL返回複雜類型

我已經用php編寫了web服務。

現在我已經定義的複雜類型,如下所示:

$server->wsdl->addComplexType(
'Category', 
'complexType', 
'struct', 
'all', 
'', 
array(
    'category_parent_id' => array('name' => 'category_parent_id', 'type' => 'xsd:int'), 
    'category_child_id' => array('name' => 'category_child_id', 'type' => 'xsd:int'), 
    'category_list' => array('name' => 'category_list', 'type' => 'xsd:int') 
) 

);

上述複雜類型是我數據庫中表中的一行。現在

我的功能必須把這些行的一組讓我怎麼實現同樣

我的代碼如下:

require_once('./nusoap/nusoap.php'); 
$server = new soap_server; 

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

// Register the data structures used by the service 
$server->wsdl->addComplexType(
    'Category', 
    'complexType', 
    'struct', 
    'all', 
    '', 
    array(
     'category_parent_id' => array('name' => 'category_parent_id', 'type' => 'xsd:int'), 
     'category_child_id' => array('name' => 'category_child_id', 'type' => 'xsd:int'), 
     'category_list' => array('name' => 'category_list', 'type' => 'xsd:int') 
    ) 
); 
$server->register('getaproduct',     // method name 
    array(),   // input parameters 
    //array('return' => array('result' => 'tns:Category')), // output parameters 
    array('return' => 'tns:Category'), // output parameters 
    'urn:productwsdl',       // namespace 
    'urn:productwsdl#getaproduct',     // soapaction 
    'rpc',         // style 
    'encoded',        // use 
    'Get the product categories'  // documentation 
); 

function getaproduct() 
{ 
    $conn = mysql_connect('localhost','root',''); 
    mysql_select_db('sssl', $conn); 
    $sql = "SELECT * FROM jos_vm_category_xref"; 
    $q = mysql_query($sql); 
    while($r = mysql_fetch_array($q)) 
    { 
     $items[] = array('category_parent_id'=>$r['category_parent_id'], 
           'category_child_id'=>$r['category_child_id'], 
           'category_list'=>$r['category_list']); 
    } 
     return $items; 
} 


    // 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); 
+0

是的,我知道這個格式是不正確的,但我的傢伙在粘貼由編輯器提供的代碼塊中的代碼,但它似乎並沒有工作。 如果有些能告訴我爲什麼還是有人可以對其進行編輯對我來說這將是巨大的 – 2010-01-12 03:36:47

回答

10

我想通自己的答案搜索互聯網之後。

以下是創建複雜數據類型的代碼。在這裏我創建一個數據類型的人有界河名字,年齡和性別作爲其數據成員。

$server->wsdl->addComplexType(
    'Person', 
    'complexType', 
    'struct', 
    'all', 
    '', 
    array(
    'firstname' => array('name' => 'firstname', 'type' => 'xsd:string'), 
    'age'  => array('name' => 'age', 'type' => 'xsd:int'), 
    'gender' => array('name' => 'gender', 'type' => 'xsd:string') 
) 
); 

接下來,我們必須創建另一個新的數據類型,這是我們所創建的數據類型的數組。我把它叫做人陣和它的代碼是如下:

$server->wsdl->addComplexType(
    'PersonArray', // Name 
    'complexType', // Type Class 
    'array',   // PHP Type 
    '',    // Compositor 
    'SOAP-ENC:Array', // Restricted Base 
    array(), 
    array(
     array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:Person[]') 
    ), 
    'tns:Person' 
); 

現在我註冊了一個名爲getPeople函數,它接受任何輸入參數,但返回的人數組作爲:

$server->register(
    'getPeople',       // method name 
    array(),        // input parameters 
    array('return' => 'tns:PersonArray'), // output parameters 
    'urn:hellowsdl2',      // namespace 
    'urn:hellowsdl2#getPeople',   // soapaction 
    'rpc',        // style 
    'encoded',       // use 
    'Return an array of people'   // documentation 
); 

和編程通過我很抱歉,我沒有提及,但所有這些代碼是PHP的方式

function getPeople() 
{ 
    $peopleArray = array(); 
    $peopleArray[] = array(
     'firstname' => "Anand", 
     'age'  => 25, 
     'gender' => "Male" 
    ); 

    $peopleArray[] = array(
     'firstname' => "Sandhya", 
     'age'  => 21, 
     'gender' => "Female" 
    ); 

    return $peopleArray; 
} 

:函數返回一些虛擬的數據。

希望這可以幫助別人。

+0

大,我的朋友,你的榜樣幫助我的很多解決我的問題在Web服務中創建:-)的NuSOAP非常感謝您! – Cris 2010-07-21 13:05:33

+0

感謝您的回答。它幫助我解決問題。 – 2017-06-13 15:45:43