in reply to Re: Using Perl's SOAP::Lite to talk to Python
in thread Using Perl's SOAP::Lite to talk to Python
Basically all a flyweight does in this case is holds an object ID, and on the server end the SOAP server holds a list of pre-constructed objects matched to IDs. When your client wants to call a method on that object-id, AUTOLOAD kicks in and asks the remote end for the right method on the object matching that id value.
Then there's some stuff about Object reaping that you don't need to worry too much about.
Hope that helps - the soaplite list is a really good place to ask these sorts of questions.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Using Perl's SOAP::Lite to talk to Python
by mitd (Curate) on Jul 18, 2002 at 17:22 UTC |