| @@ 10-52 (lines=43) @@ | ||
| 7 | use Symfony\Component\Console\Input\InputInterface; |
|
| 8 | use Symfony\Component\Console\Output\OutputInterface; |
|
| 9 | ||
| 10 | class WrapperCommand extends InitCommand |
|
| 11 | { |
|
| 12 | protected function configure() |
|
| 13 | { |
|
| 14 | $this->setName('rpc_encoded:wrapper'); |
|
| 15 | } |
|
| 16 | ||
| 17 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 18 | { |
|
| 19 | $this->output = $output; |
|
| 20 | ||
| 21 | $this->soapClient = new SoapClient('http://localhost/wsdl-creator/examples/rpc_encoded/WrapperExampleSoapServer.php?wsdl', array( |
|
| 22 | 'uri' => "http://foo.bar/", 'location' => 'http://localhost/wsdl-creator/examples/rpc_encoded/WrapperExampleSoapServer.php', |
|
| 23 | 'trace' => true, 'cache_wsdl' => WSDL_CACHE_NONE |
|
| 24 | )); |
|
| 25 | ||
| 26 | $this->serviceInfo('Wrapper Object - rpc/encoded'); |
|
| 27 | ||
| 28 | $this->renderMethodsTable(); |
|
| 29 | ||
| 30 | $user = new stdClass(); |
|
| 31 | $user->name = 'john'; |
|
| 32 | $user->age = 31; |
|
| 33 | $user->payment = 123.40; |
|
| 34 | $response = $this->soapClient->getUserString($user, 333); |
|
| 35 | $this->method('getUserString', array($user, 333), $response); |
|
| 36 | ||
| 37 | $response = $this->soapClient->getUser('peter', 22, 32.02); |
|
| 38 | $this->method('getUser', array('peter', 22, 32.02), $response); |
|
| 39 | ||
| 40 | $response = $this->soapClient->getEmployees(); |
|
| 41 | $this->method('getEmployees', array(), $response); |
|
| 42 | ||
| 43 | $employees[0] = new stdClass(); |
|
| 44 | $employees[0]->id = 1; |
|
| 45 | $employees[0]->department = 'IT'; |
|
| 46 | $employees[1] = new stdClass(); |
|
| 47 | $employees[1]->id = 2; |
|
| 48 | $employees[1]->department = 'Logistic'; |
|
| 49 | $response = $this->soapClient->getEmployeesDepartments($employees); |
|
| 50 | $this->method('getEmployeesDepartments', array($employees), $response); |
|
| 51 | } |
|
| 52 | } |
|
| @@ 10-52 (lines=43) @@ | ||
| 7 | use Symfony\Component\Console\Input\InputInterface; |
|
| 8 | use Symfony\Component\Console\Output\OutputInterface; |
|
| 9 | ||
| 10 | class WrapperCommand extends InitCommand |
|
| 11 | { |
|
| 12 | protected function configure() |
|
| 13 | { |
|
| 14 | $this->setName('rpc_literal:wrapper'); |
|
| 15 | } |
|
| 16 | ||
| 17 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 18 | { |
|
| 19 | $this->output = $output; |
|
| 20 | ||
| 21 | $this->soapClient = new SoapClient('http://localhost/wsdl-creator/examples/rpc_literal/WrapperExampleSoapServer.php?wsdl', array( |
|
| 22 | 'uri' => "http://foo.bar/", 'location' => 'http://localhost/wsdl-creator/examples/rpc_literal/WrapperExampleSoapServer.php', |
|
| 23 | 'trace' => true, 'cache_wsdl' => WSDL_CACHE_NONE |
|
| 24 | )); |
|
| 25 | ||
| 26 | $this->serviceInfo('Wrapper Object - rpc/literal'); |
|
| 27 | ||
| 28 | $this->renderMethodsTable(); |
|
| 29 | ||
| 30 | $user = new stdClass(); |
|
| 31 | $user->name = 'john'; |
|
| 32 | $user->age = 31; |
|
| 33 | $user->payment = 123.40; |
|
| 34 | $response = $this->soapClient->getUserString($user, 333); |
|
| 35 | $this->method('getUserString', array($user, 333), $response); |
|
| 36 | ||
| 37 | $response = $this->soapClient->getUser('peter', 22, 32.02); |
|
| 38 | $this->method('getUser', array('peter', 22, 32.02), $response); |
|
| 39 | ||
| 40 | $response = $this->soapClient->getEmployees(); |
|
| 41 | $this->method('getEmployees', array(), $response); |
|
| 42 | ||
| 43 | $employees[0] = new stdClass(); |
|
| 44 | $employees[0]->id = 1; |
|
| 45 | $employees[0]->department = 'IT'; |
|
| 46 | $employees[1] = new stdClass(); |
|
| 47 | $employees[1]->id = 2; |
|
| 48 | $employees[1]->department = 'Logistic'; |
|
| 49 | $response = $this->soapClient->getEmployeesDepartments($employees); |
|
| 50 | $this->method('getEmployeesDepartments', array($employees), $response); |
|
| 51 | } |
|
| 52 | } |
|