in reply to Add custom return parms to SOAP::Transport::HTTP::Apache
Subclass SOAP::Transport::HTTP::Apache and override dispatch_to. In your version, set up a local warn handler (local $SIG{__WARN__} = sub { ... }) which stores off any error text then call $self->SUPER::dispatch_to( ... ). After that returns, muck with the XML to add whatever your warn handler stored (if anything).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Add custom return parms to SOAP::Transport::HTTP::Apache
by habit_forming (Monk) on May 12, 2004 at 21:45 UTC | |
by Fletch (Bishop) on May 13, 2004 at 13:41 UTC |