dataMovementService
Defines the service responsible for merging and transforming data from multiple sources into coordinated data marts. This data can then be packaged and made available to IBM® Cognos® applications for reporting and analysis.
For more information, see the IBM Cognos Data Manager Data Movement Service Developer Guide.
The data movement service has an associated set of configuration parameters defined by the properties of the bibus » dataMovementService class.
Example: Connecting to the Data Movement Service in Java
private DataMovementService_ServiceLocator dataMovementServiceLocator = null;
private DataMovementService_PortType dataMovementService = null;
public static String DMS_URL = "http://localhost:9300/p2pd/servlet/dispatch";
dataMovementServiceLocator = new DataMovementService_ServiceLocator();
...
try
{
java.net.URL serverURL = new java.net.URL(DMS_URL);
dataMovementService = dataMovementServiceLocator.getdataMovementService(serverURL);
...
}
// catch exceptions
Example: Connecting to the Data Movement Service in C# .NET
try
{
dataMovementService1 c8DMS = new dataMovementService1();
c8DMS.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.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/dataMovementService/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/dataMovementService/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/dataMovementService/201404/
.