metadataService
Defines the service responsible for querying and updating unpublished IBM® Cognos® Framework Manager models.
The metadata service has an associated set of configuration parameters defined by the properties of the bibus » metadataService class.
Example: Connecting to the Metadata Service in Java
private MetadataService_ServiceLocator metadataServiceLocator = null;
private MetadataService_PortType metadataService = null;
public static String MES_URL = "http://localhost:9300/p2pd/servlet/dispatch";
metadataServiceLocator = new MetadataService_ServiceLocator();
...
try
{
java.net.URL serverURL = new java.net.URL(MES_URL);
metadataService = metadataServiceLocator.getmetadataService(serverURL);
...
}
// catch exceptions
Example: Connecting to the Metadata Service in C# .NET
try
{
metadataService1 c8MDS = new metadataService1();
c8MDS.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 8.4 — Lineage Metadata
This service now implements the asynch method set.
- New in Version 8.4 — PowerPlay 8 Integration
This service now implements the dataSource method set.
- 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/metadataService/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/metadataService/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/metadataService/201404/
.