As expected, using SoapServer::setClass() on a class with private or protected methods does not expose those methods.
Calling a private/protected method from the SoapClient causes this: E_ERROR "Call to protected method my_class::myPrivateMethod() from context"
SoapServer::setClass
(PHP 5 >= 5.0.1)
SoapServer::setClass — Sets the class which handles SOAP requests
Descrição
public void SoapServer::setClass
( string $class_name
[, string $args
] )
Exports all methods from specified class.
The object can be made persistent across request for a given PHP session with the SoapServer::setPersistence method.
Parâmetros
- class_name
-
The name of the exported class.
- args
-
These optional parameters will be passed to the default class constructor during object creation.
Valor Retornado
Não há valor retornado.
Veja Também
- SoapServer::SoapServer - SoapServer constructor
- SoapServer::addFunction - Adds one or more functions to handle SOAP requests
- SoapServer::setPersistence - Sets SoapServer persistence mode
SoapServer::setClass
Matt
03-Jul-2009 01:25
03-Jul-2009 01:25
christiaan at oakfox dot net
04-May-2009 09:21
04-May-2009 09:21
You can also retrieve object properties the following way while using __autoload($class_name).
<?php
# Start Session
session_start();
# Auto Load Class as Required
function __autoload($class_name)
{
require_once "/var/www/example/class/". $class_name. ".php";
}
//service
$_SESSION[_bogus_session_name] = unserialize($_SESSION[_bogus_session_name]);
$server = new SoapServer('service.wsdl');
$server->setClass("MyClass");
$server->setPersistence(SOAP_PERSISTENCE_SESSION);
$server->handle();
$_SESSION[_bogus_session_name] = serialize($_SESSION[_bogus_session_name])
?>
Ariz Jacinto
04-Dec-2008 10:38
04-Dec-2008 10:38
If you want your SOAP client to be able to save and then retrieve the object properties, you need to set the SOAP server to be persistent by setting session.auto_start=0, invoking session_start(), and SoapServer->setPersistence(SOAP_PERSISTENCE_SESSION) in the following manner:
<?php
//set ini
ini_set("soap.wsdl_cache_enabled", 0);
ini_set("session.auto_start", 0);
//class file
require_once('MyClass.php');
//for persistent session
session_start();
//service
$server = new SoapServer('service.wsdl');
$server->setClass("MyClass");
$server->setPersistence(SOAP_PERSISTENCE_SESSION);
$server->handle();
?>
info at adaniels dot nl
06-Mar-2008 10:46
06-Mar-2008 10:46
A method SoapServer::setObject($object) also exists. This is for some reason not documented.
