1<?php 2class SOAP_Interop_GroupF { 3 4 function Header1($input) 5 { 6 } 7 8 function Header2($input) 9 { 10 } 11 12 function echoString($inputString) 13 { 14 return $inputString; 15 } 16 17} 18 19$server = new SoapServer(dirname(__FILE__)."/round3_groupF_ext.wsdl"); 20$server->setClass("SOAP_Interop_GroupF"); 21$server->handle($HTTP_RAW_POST_DATA); 22?> 23