Clearing ZXTM's Content CacheThe following Perl example illustrates how to invoke the
#!/usr/bin/perl -w
use SOAP::Lite 0.60;
# This is the url of the ZXTM admin server - CHANGE THIS
my $admin_server = 'https://admin:password@zxtmhost:9090';
my $conn = SOAP::Lite
-> ns('http://soap.zeus.com/zxtm/1.0/System/Cache/')
-> proxy("$admin_server/soap")
-> on_fault( sub {
my( $conn, $res ) = @_;
die ref $res ? $res->faultstring : $conn->transport->status; } );
$conn->clearWebCache();
The
Owen Garrett
[Zeus Dev Team] 19 September 2006
|
Recent Articles
Other Resources
|


