downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<SoapServer->getFunctions()SoapServer->setClass()>
Last updated: Thu, 26 Jun 2008

SoapServer->handle()

(PHP 5 >= 5.0.1)

SoapServer->handle() — Handles a SOAP request

Description

SoapServer
void handle ([ string $soap_request ] )

Processes a SOAP request, calls necessary functions, and sends a response back.

Parameters

soap_request

The SOAP request. If this argument is omitted, the request is supposed to be in the $HTTP_RAW_POST_DATA PHP variable.

Return Values

No value is returned.

Examples

Example #1 Some examples

<?php
function test($x)
{
   return
$x;
}

$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
?>



add a noteadd a note User Contributed Notes
Handles a SOAP request
There are no user contributed notes for this page.




<SoapServer->getFunctions()SoapServer->setClass()>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs