in reply to Problem with SOAP::Transport::TCP
Put this line before what you have:
Use SOAP::Lite;
The SOAP::Lite transport modules all (or mostly anyway) inherit from classes declared in SOAP::Lite itself. SOAP::Transport::TCP::Server inherits from SOAP::Server which is in the SOAP::Lite main module.
The docs actually say this about the inheritance, but they assume you know that means you must load the parent class explicitly.
Update: fixed a typo.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with SOAP::Transport::TCP
by runningwithscissors (Initiate) on Sep 01, 2010 at 23:37 UTC | |
by mr_mischief (Monsignor) on Sep 02, 2010 at 03:35 UTC |