Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OHF Using XDS.b"

(XDS.b Document Consumer Constructor API)
(XDS.b Document Consumer Constructor API)
Line 15: Line 15:
 
==== XDS.b Document Consumer Constructor API ====
 
==== XDS.b Document Consumer Constructor API ====
  
The XDS.b Document Consumer API is controlled by the class '''org.eclipse.ohf.ihe.xds.consumer.B_Consumer'''.
+
The XDS.b Document Consumer API is controlled by the class '''org.eclipse.ohf.ihe.xds.consumer.B_Consumer(java.net.URI, java.net.URI, java.util.Map)'''.
  
 
* ''' Registry URI '''
 
* ''' Registry URI '''

Revision as of 19:36, 24 October 2007

About XDS.b

XDS.b is a profile proposed and accepted for trial implementation in the 2007-2008 IHE profile cycle. The primary purpose of the profile is to take the existing XDS specification and make it more consistent with existing and emerging Web service standards.

To read the trial implementation of the XDS.b profile, please see the IHE XDS.b Supplement

The previous XDS profile has been renamed to XDS.a.

XDS.b and OHF

The version of OHF for use at the 2007-2008 IHE Connectathon supports the XDS.b Document Consumer and the XDS.b Document Source in addition to the existing support for XDS.a Document Consumer and Source.

XDS.b Document Consumer

The OHF XDS.b Document Consumer implements two transactions: Registry Stored Query and Retrieve Document Set. The Stored Query transaction is semantically identical to the XDS.a Registry Stored Query transaction. The Retrieve Document Set transaction is new.

XDS.b Document Consumer Constructor API

The XDS.b Document Consumer API is controlled by the class org.eclipse.ohf.ihe.xds.consumer.B_Consumer(java.net.URI, java.net.URI, java.util.Map).

  • Registry URI

The first parameter to the constructor is the URI of the Web service target endpoint for the Registry Stored Query listener on the XDS.b registry.

  • Initiating Gateway URI

If you are working in an Affinity Domain that contains an XCA Initiating Gateway, specify that value as the second parameter to the constructor. This will allow for proper routing of requests (queries and retrieve document) that may contain a homeCommunityId value.

  • RepositoryUniqueId Mapping

In XDS.a, query response metadata pointed explicitly to the URL in which to retrieve a document. For XDS.b, this is not the case. An XDS.b Repository reports itself to the registry with a unique value called the repositoryUniqueId. The XDS.b query metadata will contain this value. To retrieve a document from an XDS.b repository, the consumer must be able to associate that repositoryUniqueId with the designated Web service target endpoint for that repository.

To allow for this, the OHF XDS.b Consumer API accepts a new parameter, the Repository UniqueId Map. The Consumer expects a Map<String,java.net.URI> with the repositoryUniqueId string (an OID: "10.1.2") mapping to a URI of the Web service target endpoint for the Retrieve Document Set listener on that repository. See below for an example.

Sample Code

// URI for the XDS Registry
java.net.URI registryURI = new java.net.URI("http://somesite.com/XdsBRegistry/Registry");

// Set the mapping of repositoryUniqueId => Repository Web service endpoint
Map repositoryUriMap = new HashMap();
repositoryUriMap.put("10.1.2", new java.net.URI("http://somesite.com/XdsBRepository/Repository"));
repositoryUriMap.put("10.1.3", new java.net.URI("http://anothersite.com/AnotherXDSBRepository/Repository"));

// Optional:  URI for the XCA Initiating Gateway
java.net.URI initiatingGatewayUrl = new java.net.URI("http://somesite.com/XCAGateway/Gateway");

B_Consumer consumer = new B_Consumer(registryURI, initiatingGatewayUrl, repositoryUriMap);

Registry Stored Query

Retrieve Document Set

Due to the nature of the XDS.b profile, a new transaction Retrieve Document Set has been created. The API is as follows:

XDSResponseType org.eclipse.ohf.ihe.xds.consumer.B_Consumer.retrieveDocumentSet(RetrieveDocumentSetRequestType,List);
  • Parameter 1: RetrieveDocumentSetRequestType

The RetrieveDocumentSetRequestType is an EMF-generated structure that represents a request for a document set in XDS.b. It contains a list of requests with each request containing minimally a repositoryUniqueId and a documentUniqueId.

Optionally, each request can contain a homeCommunityId - the identifier for use with cross-community requests (XCA). Per the XDS specification any XDS query result that contains a homeCommunityId, all subsequent queries or requests related to the result must contain the homeCommunityId. Please see the section about using XCA for more information.

  • Parameter 2: List

The second parameter, a List, is a pre-instantiated list that will contain the documents in response. These results will be of type org.eclipse.ohf.ihe.xds.document.Document and contains a byte array, MIME type, documentUniqueId, repositoryUniqueId, and (optionally) homeCommunityId.

Sample Code

RetrieveDocumentSetRequestType retrieveDocumentSetRequest = org.eclipse.ohf.ihe.xds.consumer.retrieve.RetrieveFactory.eINSTANCE.createRetrieveDocumentSetRequestType();
DocumentRequestType documentRequest;

// Create Document Request 1
documentRequest = org.eclipse.ohf.ihe.xds.consumer.retrieve.RetrieveFactory.eINSTANCE.createDocumentRequestType();

documentRequest.setRepositoryUniqueId("10.1.2");
documentRequest.setDocumentUniqueId("10.9.3.120.4.10.10220.10002221");

retrieveDocumentSetRequest.getDocumentRequest().add(documentRequest);

// Create Document Request 2
documentRequest = org.eclipse.ohf.ihe.xds.consumer.retrieve.RetrieveFactory.eINSTANCE.createDocumentRequestType();
       
documentRequest.setRepositoryUniqueId("10.1.2");
documentRequest.setDocumentUniqueId("10.9.3.120.4.10.10220.932133221");
// Optionally set a homeCommunityId
documentRequest.setHomeCommunityId("someHomeCommunityId");

retrieveDocumentSetRequest.getDocumentRequest().add(documentRequest);

// Create container for response documents
List documents = new ArrayList();

// Retrieve Documents
XDSResponseType response = consumer.retrieveDocumentSet(retrieveDocumentSetRequest, documents);

Copyright © Eclipse Foundation, Inc. All Rights Reserved.