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"

(New page: More information on using the XDS.b functionality in OHF coming soon.)
 
Line 1: Line 1:
More information on using the XDS.b functionality in OHF coming soon.
+
== 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
 +
[http://www.ihe.net/Technical_Framework/upload/IHE_ITI_TF_Supplement_XDS-2.pdf 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 API '''
 +
 
 +
The XDS.b Document Consumer API is controlled by the '''class org.eclipse.ohf.ihe.xds.consumer.B_Consumer'''.
 +
 
 +
''' 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:
 +
org.eclipse.ohf.ihe.xds.consumer.B_Consumer.retrieveDocumentSet(RetrieveDocumentSetRequestType,List);
 +
 
 +
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'''.

Revision as of 18:53, 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 API

The XDS.b Document Consumer API is controlled by the class org.eclipse.ohf.ihe.xds.consumer.B_Consumer.

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:

org.eclipse.ohf.ihe.xds.consumer.B_Consumer.retrieveDocumentSet(RetrieveDocumentSetRequestType,List);

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.

Back to the top