Minor - fixed typo in param

skala
Cristian Fasanando 16 years ago
parent 479e039db6
commit 51d5d80c7e
  1. 11
      main/webservices/registration.soap.php

@ -40,8 +40,7 @@ $server->wsdl->addComplexType(
'', '',
'SOAP-ENC:Array', 'SOAP-ENC:Array',
array(), array(),
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:extras[]')), array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:extras[]')),'tns:extras'
'tns:extras'
); );
$server->wsdl->addComplexType( $server->wsdl->addComplexType(
@ -73,8 +72,7 @@ $server->wsdl->addComplexType(
'', '',
'SOAP-ENC:Array', 'SOAP-ENC:Array',
array(), array(),
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:usersParams[]')), array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:usersParams[]')),'tns:usersParams'
'tns:usersParams'
); );
$server->wsdl->addComplexType( $server->wsdl->addComplexType(
@ -84,7 +82,7 @@ $server->wsdl->addComplexType(
'all', 'all',
'', '',
array( array(
'users' => array('name' => 'users', 'type' => 'tns:userParamsList'), 'users' => array('name' => 'users', 'type' => 'tns:usersParamsList'),
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string') 'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string')
) )
); );
@ -109,8 +107,7 @@ $server->wsdl->addComplexType(
'', '',
'SOAP-ENC:Array', 'SOAP-ENC:Array',
array(), array(),
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:result_createUsers[]')), array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:result_createUsers[]')),'tns:result_createUsers'
'tns:result_createUsers'
); );
// Register the method to expose // Register the method to expose

Loading…
Cancel
Save