systemService
Defines the service that can be used to obtain application-wide, IBM® Cognos® Analytics configuration parameters. This service also provides methods that can be used to normalize and validate locale strings, as well as to map locale strings to locales supported by your application.
The system service has an associated set of configuration parameters defined by the properties of the bibus » systemService class.
Example: Connecting to the system service in Java.
private SystemService_ServiceLocator systemServiceLocator = null;
private SystemService_PortType systemService = null;
public static String SS_URL = "http://localhost:9300/p2pd/servlet/dispatch";
systemServiceLocator = new SystemService_ServiceLocator();
...
try
{
java.net.URL serverURL = new java.net.URL(SS_URL);
systemService = systemServiceLocator.getsystemService(serverURL);
...
}
// catch exceptions
Example: Connecting to the system service in C# .NET.
try
{
systemService1 c8SS = new systemService1();
c8SS.Url = "http://localhost:9300/p2pd/servlet/dispatch";
...
}
// catch exceptions
References
- Uses the following method sets:
What's new
- New in Version 10.2.0 — Changes to IBM Cognos Analytics SOAP action for services
The SOAPAction HTTP header field for this service has changed to
http://www.ibm.com/xmlns/prod/cognos/systemService/201109/
.- New in Version 10.2.1 — Changes to IBM Cognos Analytics SOAP action for services
The SOAPAction HTTP header field for this service has changed to
http://www.ibm.com/xmlns/prod/cognos/systemService/201301/
.- New in Version 10.2.2 — Changes to IBM Cognos Analytics SOAP action for services
-
The SOAPAction HTTP header field for this service has changed to
http://www.ibm.com/xmlns/prod/cognos/systemService/201404/
.