pdqm-iti78 component (DSTU2)
The pdqm-iti78 component provides interfaces for actors of the Patient Demographics Query for Mobile IHE transaction (ITI-78). Note that this component implements the 2016/2017 version of this profile.
Actors
The transaction defines the following actors:
Producer side corresponds to the Patient Demographics Consumer actor. Consumer side corresponds to the Patient Demographics Supplier actor.
Dependencies
In a Maven-based environment, the following dependency must be registered in pom.xml:
<dependency> <groupId>org.openehealth.ipf.platform-camel</groupId> <artifactId>ipf-platform-camel-ihe-fhir-dstu2-pixpdq</artifactId> <version>${ipf-version}</version> </dependency>
Endpoint URI Format
Producer
The endpoint URI format of pdqm-iti78 component producers is:
pdqm-iti78://hostname:port/path/to/service[?parameters]
where hostname is either an IP address or a domain name, port is a port number, and path/to/service represents additional path elements of the remote service. URI parameters are optional and control special features as described in the corresponding section below.
Consumer
The endpoint URI format of pdqm-iti78 component consumers is:
pdqm-iti78:serviceName[?parameters]
The resulting URL of the exposed FHIR REST Service endpoint depends on the configuration of the deployment container.
For example, when a Tomcat container on the host eHealth.server.org is configured in the following way:
port = 8888 contextPath = /IHE servletPath = /fhir/*
then the pdqm-iti78 consumer will be available for external clients under the URL http://eHealth.server.org:8888/IHE/fhir/Patient
Additional URI parameters are optional and control special features as described in the corresponding section below.
Example
This is an example on how to use the component on the consumer side:
from("pdqm-iti78:pdqmservice?audit=true") .process(myProcessor) // process the incoming request and create a response
Translation into PDQ
IPF comes with translators to translate ITI-78 requests into ITI-21 requests and vice versa for the responses.