jobService
Defines the service responsible for the execution of jobs (bibus » jobDefinition class).
The job service uses the monitorService to execute each step in a job.
The job service has an associated set of configuration parameters defined by the properties of the bibus » jobService class.
Example: Connecting to the Job Service in Java
private JobService_ServiceLocator jobServiceLocator = null;
private JobService_PortType jobService = null;
public static String JS_URL = "http://localhost:9300/p2pd/servlet/dispatch";
jobServiceLocator = new JobService_ServiceLocator();
...
try
{
java.net.URL serverURL = new java.net.URL(JS_URL);
jobService = jobServiceLocator.getjobService(serverURL);
...
}
// catch exceptions
Example: Connecting to the Job Service in C# .NET
try
{
jobService1 c8JS = new jobService1();
c8JS.Url = "http://localhost:9300/p2pd/servlet/dispatch";
...
}
// catch exceptions
References
- Runs instances of the following classes:
- Uses the following method sets:
What's new
- New in Version 10.1.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/jobService/201101/
.- 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/jobService/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/jobService/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/jobService/201404/
.