| // +----------------------------------------------------------------------+ // // $Id$ // class SOAP_Interop_GroupC { var $method_namespace = 'http://soapinterop.org/echoheader/'; function echoMeStringRequest($string) { return new SOAP_Value('{'.$this->method_namespace.'}echoMeStringResponse','string',$string); } function echoMeStructRequest($struct) { return new SOAP_Value('{'.$this->method_namespace.'}echoMeStructResponse','SOAPStruct',$struct); } } $server = new SoapServer("http://test-uri"); $server->setClass("SOAP_Interop_GroupC"); $server->handle(); ?>