}
public static void getDatastreamDissemination() throws Exception {
// test for DC datastream
MIMETypedStream ds = null;
ds = APIA.getDatastreamDissemination("demo:11", "DC", null);
System.out.println("SOAP Request: getDatastreamDissemination for DC datastream of demo object demo:11...");
String dsXML = new String(ds.getStream(), "UTF-8");
System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:11 Datastream:DC succeeded.");
System.out.println("SOAP Response: DC datastream contents: \n"+dsXML);
// test for type X datastream
ds = APIA.getDatastreamDissemination("demo:11", "TECH1", null);
System.out.println("\nSOAP Request: getDatastreamDissemination for TECH1 datastream of demo object demo:11...");
dsXML = new String(ds.getStream(), "UTF-8");
System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:11 Datastream:TECH1 succeeded.");
System.out.println("SOAP Response: TECH1 datastream contents: \n"+dsXML);
// test for type E datastream
ds = APIA.getDatastreamDissemination("demo:11", "MRSID", null);