Welcome to the Cocoon SOAP server status page.
These samples use Apache Axis to give access to Cocoon components via SOAP.
The SOAP server is currently active and the following services are deployed:
#!/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";