unread
Hi All,
Christian Stoller sent me a very nice solution.
No enchancement is required.
class SWASOAPServer extends SoapServer
{
public function handle($input, $toOutput = false){
ob_start()
;
parent::handle($input);
$result = ob_get_clean()
;
// now do something with the output
}
}
Regrads,
Krzysztof