#!/usr/bin/perl print 'Testing Cocoon SOAP call, you should see your OS name here: '; use SOAP::Lite; print SOAP::Lite -> uri('Cocoon-JVM-System') -> proxy('http://localhost:8888/samples/axis/rpcrouter') -> getOperatingSystem() -> result; print "\n";