Documentation

Zend_Soap_Server - Zend_Soap

Zend_Soap_Server

Zend_Soap_Server class is intended to simplify Web Services server part development for PHP programmers.

It may be used in WSDL or non-WSDL mode, and using classes or functions to define Web Service API.

When Zend_Soap_Server component works in the WSDL mode, it uses already prepared WSDL document to define server object behavior and transport layer options.

WSDL document may be auto-generated with functionality provided by Zend_Soap_AutoDiscovery component or should be constructed manually using Zend_Soap_Wsdl class or any other XML generating tool.

If the non-WSDL mode is used, then all protocol options have to be set using options mechanism.

Zend_Soap_Server constructor

Zend_Soap_Server constructor should be used a bit differently for WSDL and non-WSDL modes.

Zend_Soap_Server constructor for the WSDL mode

Zend_Soap_Server constructor takes two optional parameters when it works in WSDL mode:

  1. $wsdl, which is an URI of a WSDL file [1] setWsdl($wsdl) .

  2. $options - options to create SOAP server object [2] setOptions($options) .

    The following options are recognized in the WSDL mode:

    • 'soap_version' ('soapVersion') - soap version to use (SOAP_1_1 or SOAP_1_2).

    • 'actor' - the actor URI for the server.

    • 'classmap' ('classMap') which can be used to map some WSDL types to PHP classes.

      The option must be an array with WSDL types as keys and names of PHP classes as values.

    • 'encoding' - internal character encoding (UTF-8 is always used as an external encoding).

    • 'wsdl' which is equivalent to setWsdl($wsdlValue) call.

Zend_Soap_Server constructor for the non-WSDL mode

The first constructor parameter must be set to NULL if you plan to use Zend_Soap_Server functionality in non-WSDL mode.

You also have to set 'uri' option in this case (see below).

The second constructor parameter ($options) is an array with options to create SOAP server object [3] setOptions($options) .

The following options are recognized in the non-WSDL mode:

  • 'soap_version' ('soapVersion') - soap version to use (SOAP_1_1 or SOAP_1_2).

  • 'actor' - the actor URI for the server.

  • 'classmap' ('classMap') which can be used to map some WSDL types to PHP classes.

    The option must be an array with WSDL types as keys and names of PHP classes as values.

  • 'encoding' - internal character encoding (UTF-8 is always used as an external encoding).

  • 'uri' (required) - URI namespace for SOAP server.

Methods to define Web Service API

There are two ways to define Web Service API when your want to give access to your PHP code through SOAP.

The first one is to attach some class to the Zend_Soap_Server object which has to completely describe Web Service API:

  1. ...
  2. class MyClass {
  3.     /**
  4.      * This method takes ...
  5.      *
  6.      * @param integer $inputParam
  7.      * @return string
  8.      */
  9.     public function method1($inputParam) {
  10.         ...
  11.     }
  12.  
  13.     /**
  14.      * This method takes ...
  15.      *
  16.      * @param integer $inputParam1
  17.      * @param string  $inputParam2
  18.      * @return float
  19.      */
  20.     public function method2($inputParam1, $inputParam2) {
  21.         ...
  22.     }
  23.  
  24.     ...
  25. }
  26. ...
  27. $server = new Zend_Soap_Server(null, $options);
  28. // Bind Class to Soap Server
  29. $server->setClass('MyClass');
  30. // Bind already initialized object to Soap Server
  31. $server->setObject(new MyClass());
  32. ...
  33. $server->handle();

Note: Important!
You should completely describe each method using method docblock if you plan to use autodiscover functionality to prepare corresponding Web Service WSDL.

The second method of defining Web Service API is using set of functions and addFunction() or loadFunctions() methods:

  1. ...
  2. /**
  3. * This function ...
  4. *
  5. * @param integer $inputParam
  6. * @return string
  7. */
  8. function function1($inputParam) {
  9.     ...
  10. }
  11.  
  12. /**
  13. * This function ...
  14. *
  15. * @param integer $inputParam1
  16. * @param string  $inputParam2
  17. * @return float
  18. */
  19. function function2($inputParam1, $inputParam2) {
  20.     ...
  21. }
  22. ...
  23. $server = new Zend_Soap_Server(null, $options);
  24. $server->addFunction('function1');
  25. $server->addFunction('function2');
  26. ...
  27. $server->handle();

Request and response objects handling

Note: Advanced
This section describes advanced request/response processing options and may be skipped.

Zend_Soap_Server component performs request/response processing automatically, but allows to catch it and do some pre- and post-processing.

Request processing

Zend_Soap_Server::handle() method takes request from the standard input stream ('php://input'). It may be overridden either by supplying optional parameter to the handle() method or by setting request using setRequest() method:

  1. ...
  2. $server = new Zend_Soap_Server(...);
  3. ...
  4. // Set request using optional $request parameter
  5. $server->handle($request);
  6. ...
  7. // Set request using setRequest() method
  8. $server->setRequest();
  9. $server->handle();

Request object may be represented using any of the following:

  • DOMDocument (casted to XML)

  • DOMNode (owner document is grabbed and casted to XML)

  • SimpleXMLElement (casted to XML)

  • stdClass (__toString() is called and verified to be valid XML)

  • string (verified to be valid XML)

Last processed request may be retrieved using getLastRequest() method as an XML string:

  1. ...
  2. $server = new Zend_Soap_Server(...);
  3. ...
  4. $server->handle();
  5. $request = $server->getLastRequest();

Response pre-processing

Zend_Soap_Server::handle() method automatically emits generated response to the output stream. It may be blocked using setReturnResponse() with TRUE or FALSE as a parameter [4] setReturnResponse() . Generated response is returned by handle() method in this case.

  1. ...
  2. $server = new Zend_Soap_Server(...);
  3. ...
  4. // Get a response as a return value of handle() method
  5. // instead of emitting it to the standard output
  6. $server->setReturnResponse(true);
  7. ...
  8. $response = $server->handle();
  9. ...

Last response may be also retrieved by getLastResponse() method for some post-processing:

  1. ...
  2. $server = new Zend_Soap_Server(...);
  3. ...
  4. $server->handle();
  5. $response = $server->getLastResponse();
  6. ...
[1] May be set later using method.
[2] Options may be set later using method.
[3] Options may be set later using method.
[4] Current state of the Return Response flag may be requested with method.

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts