Detailed Description

SOAPController handles SOAP requests.

The controller delegates action processing to a global instance of wcmf::lib::service::SoapServer.

The controller supports the following actions:

Action default
Handle action according to soap request.

The controller expects the definition of the soap interface in a file called soap-interface.php in the application directory. The definition is done by adding types and methods to the global $server instance

// add type to soap interface
$server->wsdl->addComplexType(...);
// add method to soap interface
$server->register();
See also
http://sourceforge.net/projects/nusoap/
Author
ingo herwig ingo@.nosp@m.wemo.nosp@m.ve.co.nosp@m.m

Definition at line 50 of file SOAPController.php.

+ Inheritance diagram for SOAPController:

Static Public Member Functions

static search ($query)
 

Protected Member Functions

 doExecute ()
 
- Protected Member Functions inherited from Controller
 validate ()
 
 executeSubAction ($action)
 
 getLogger ()
 
 getSession ()
 
 getPersistenceFacade ()
 
 getPermissionManager ()
 
 getActionMapper ()
 
 getLocalization ()
 
 getMessage ()
 
 getConfiguration ()
 
 assignResponseDefaults ()
 
 isLocalizedRequest ()
 
 checkLanguageParameter ()
 

Additional Inherited Members

- Public Member Functions inherited from Controller
 __construct (Session $session, PersistenceFacade $persistenceFacade, PermissionManager $permissionManager, ActionMapper $actionMapper, Localization $localization, Message $message, Configuration $configuration)
 
 initialize (Request $request, Response $response)
 
 execute ($method=null)
 
 getRequest ()
 
 getResponse ()
 

Member Function Documentation

doExecute ( )
protected
See also
Controller::doExecute()

Definition at line 55 of file SOAPController.php.

static search (   $query)
static

Search.

Parameters
$queryThe search term
Returns
Array of SearchResultItem on success

Definition at line 86 of file SOAPController.php.