| // +----------------------------------------------------------------------+ // // $Id$ // // first, include the SOAP/Server class require_once 'SOAP/Server/TCP.php'; set_time_limit(0); $server = new SOAP_Server_TCP("127.0.0.1",82); /* tell server to translate to classes we provide if possible */ $server->_auto_translation = true; require_once 'example_server.php'; $soapclass = new SOAP_Example_Server(); $server->addObjectMap($soapclass,'urn:SOAP_Example_Server'); $server->run(); ?>