Version
4.0
For example, to reference methods in the VirtualServer interface, you
should use the following URI:
http://soap.zeus.com/zxtm/1.0/VirtualServer/
For methods in the Service Protection catalog, use the following URI:
http://soap.zeus.com/zxtm/1.0/Catalogs/Protection/
3.3.2 Tracing
When you import the SOAP::Lite module, use the following:
use SOAP::Lite 0.6 +trace => debug ;
This will cause the SOAP::Lite module to output large amounts of
debugging information.
3.4 Debugging with C#
3.4.1 Permissions
Problems
The security minded .NET environment enforces stringent security
checks by default.
For example, by default, your Control API application cannot generate an
HTTP request to a foreign site (such as the ZXTM Admin Server) unless
the application is running from a `trusted location'. Remote filesystems
which are locally mounted are untrusted, whereas local filesystems are
trusted.
3.5 Debugging with Java
3.5.1 Tracing
For full SOAP tracing, you can run your ZXTM Control API application as
follows:
$ java Djavax.net.debug=all listVS
Alternatively, you can enable debugging within your application:
System.setProperty( "javax.net.debug", "all" );
47
New Page 1