http://www.perlmonks.org?node_id=120928


in reply to SOAP::Lite games.

You might want to look at the autodispatch functionality of SOAP::Lite. It will set up an AUTOLOAD for you that should dispatch the method over the SOAP link.

Hope this helps!

--jwest

-><- -><- -><- -><- -><-
All things are Perfect
    To every last Flaw
    And bound in accord
         With Eris's Law
 - HBT; The Book of Advice, 1:7

Replies are listed 'Best First'.
Re: Re: SOAP::Lite games.
by rfb (Sexton) on Oct 24, 2001 at 01:50 UTC
    use strict; use Data::Dumper; use SOAP::Lite +autodispatch=> uri=>("http://host/BenderRemote"), proxy=>("http://host:8082"); my $br = BenderRemote->new(); $br->loadData(); print Dumper $br;
    works prefectly, makes my code simpler too, thanks jwest!

    -ryan