could someone explain how this syntax works? does the call to member function 'proxy' return the object which is then used to call function 'uri' which returns the object which is used to call function 'hi' which returns the object which is used to call method 'result'?
use SOAP::Lite; print SOAP::Lite -> proxy('http://services.soaplite.com/hibye.cgi') -> uri('http://www.soaplite.com/Demo') -> hi() -> result; and then what is this syntax?: use SOAP::Lite +autodispatch => uri => 'http://www.soaplite.com/Temperatures', proxy => 'http://services.soaplite.com/temper.cgi'; i can't even guess.