ch-pidd component

The ch-pidd component provides interfaces for actors of the Provider Information Delta Download IHE transaction (CH-PIDD), which is described in the Swiss national extensions to the IHE Technical Framework.

Actors

The transaction defines the following actors:

CH-PIDD actors
CH-PIDD transaction and actors

Producer side corresponds to the Provider Information Consumer actor. Consumer side corresponds to the Provider Information Directory 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-hpd</artifactId>
        <version>${ipf-version}</version>
    </dependency>

Endpoint URI Format

Producer

The endpoint URI format of the ch-pidd component producers is:

ch-pidd://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 ch-pidd component consumers is:

ch-pidd:serviceName[?parameters]

The resulting URL of the exposed IHE Web Service endpoint depends on both the configuration of the deployment container and the serviceName parameter provided in the Camel endpoint URI.

For example, when a Tomcat container on the host eHealth.server.org is configured in the following way:

port = 8888
contextPath = /ZAD
servletPath = /hpd/*

and serviceName equals to chpidd, then the ch-pidd consumer will be available for external clients under the URL http://eHealth.server.org:8888/ZAD/hpd/chpidd

Additional URI parameters are optional and control special features as described in the corresponding section below.

Data Types

The ch-pidd component produces and consumes objects based on the DSMLv2 data model:

Example

This is an example on how to use the component on the consumer side:

    from("ch-pidd:chpidd?audit=true")
      .process(myProcessor)
      // process the incoming request and create a response

Basic Common Component Features

Basic Web Service Component Features

Advanced Web Service Component Features