Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

HL7 Component

The hl7 HL7 component is used for working with the HL7 MLLP protocol and the HL7 modelv2 messages using the HAPI library.

This component supports the following:

  • HL7 MLLP codec for Mina
  • HL7 MLLP codec for Netty4 from Camel 2.15 onwards
  • Type Converter from/to HAPI and String
  • HL7 DataFormat using the HAPI library

...

...

...

Maven users will need to add the following dependency to their pom.xml for this component:

...

HL7 MLLP protocol

HL7 is often used with the HL7 MLLP protocol that , which is a text based TCP socket based protocol. This component ships with a Mina and Netty4 Codec that conforms to the MLLP protocol so you can easily expose a an HL7 listener that accepts accepting HL7 requests over the TCP transport layer. To expose a HL7 listener service we reuse the existing , the camel-mina2 or camel-mina component where we just use the HL7MLLPCodec as codec.

The HL7 MLLP codec has the following options:

netty4 component is used with the HL7MLLPCodec (mina2) or HL7MLLPNettyDecoder/HL7MLLPNettyEncoder (Netty4).

HL7 MLLP codec can be configured as follows:

...

Name

Default Value

Description

startByte

0x0b

The start byte spanning the HL7 payload.

endByte1

0x1c

The first end byte spanning the HL7 payload.

endByte2

0x0d

The 2nd end byte spanning the HL7 payload.

charset

JVM Default

The encoding (

...

a charset name) to use for the codec. If not provided, Camel will use the JVM default Charset.

produceString

true(as of Camel 2.14.1) If true, the codec creates a string using the defined charset. If false, the codec sends a plain byte array into the route, so that the HL7 Data Format can determine the actual charset from the HL7 message content.

convertLFtoCR

falseWill convert \n to \r (0x0d, 13 decimal) as HL7 stipulates \r as segment terminators. The HAPI library requires the use of \r.

Exposing

...

an HL7 listener using Mina

In our spring xml file the Spring XML file, we configure an a mina2 endpoint to listen for HL7 requests using TCP on port 8888:

...

...

Notice we configure it to use camel-mina with TCP on the localhost on port 8888. We use the sync=true to indicate indicates that this listener is synchronous and therefore will return a HL7 response to the caller. Then we setup mina to use our The HL7 codec is setup with codec=hl7codec#hl7codec. Notice Note that hl7codec is just a spring Spring bean idID, so we it could have be named it mygreatcodecforhl7 or whatever. The codec is also setup set up in the spring xml Spring XML file:

...

And here we configure the charset encoding to use, and iso-8859-1 is commonly used.

The endpoint hl7listener hl7MinaLlistener can then be used in a route as a consumer, as this java Java DSL example illustrates:

...

...

This is a very simple route that will listen for HL7 and route it to a service named patientLookupService that . This is also a spring bean id we have Spring bean ID, configured in the spring xml Spring XML as:

...

...

And another powerful feature of Camel is that we can have our busines logic The business logic can be implemented in POJO classes that is not at all tied to Camel do not depend on Camel, as shown here:

...

...

Exposing an HL7 listener using Netty (available from Camel 2.15 onwards)

In the Spring XML file, we configure a netty4 endpoint to listen for HL7 requests using TCP on port 8888:

...

sync=true indicates that this listener is synchronous and therefore will return a HL7 response to the caller. The HL7 codec is setup with encoder=#hl7encoder and decoder=#hl7decoder. Note that hl7encoder and hl7decoder are just bean IDs, so they could be named differently. The beans can be set in the Spring XML file:

...

The endpoint hl7NettyListener can then be used in a route as a consumer, as this Java DSL example illustrates:

...

HL7 Model using java.lang.String or byte[]

The HL7 MLLP codec uses plain String as its data format. Camel uses its Type Converter to convert to/from strings to the HAPI HL7 model objects, but you can use the plain String objects if you prefer, for instance if you wish to parse the data yourself.

As of Camel 2.14.1 you can also let both the Mina and Netty codecs use a plain byte[] as its data format by setting the produceString property to false. The Type Converter is also capable of converting the byte[] to/from HAPI HL7 model objects.

HL7v2 Model using HAPI

The HL7v2 model uses

Notice that this class is just using imports from the HAPI library and none from Camel.

HL7 Model

The HL7 model is Java objects from the HAPI library. Using this library we , you can encode and decode from the EDI format (ER7) that is mostly used with HL7.
With this model you can code with Java objects instead of the EDI based HL7 format that can be hard for humans to read and understandHL7v2.

The ER7 sample below is a request to lookup a patient with the patient id ID 0101701234.

...

...

Using the HL7 model we you can work with the data as a ca.uhn.hl7v2.model.Message object, e.Message objectg.
To to retrieve the patient id for the patient in the ER7 above you can do this in java code:

...

a patient ID:

...

Camel has build in type converters so when this operation is invoked:

...


Message msg = exchange.getIn().getBody(Message.class);

Camel will converter the received HL7 data from String to the Message object. This is powerful when combined with the HL7 listener, then because you as the end-user don't have to work with byte[], String or any other simple object formats. You can just use the HAPI HL7 model objects.

HL7 DataFormat

This component ships with a HL7 dataformat that can be used to format between String and HL7 model objects.

  • marshal = from Message to byte stream (can be used when returning as response using the HL7 MLLP codec)
  • unmarshal = from byte stream to Message (can be used when receiving streamed data from the HL7 MLLP

To use the data format simply instantiate an instance and invoke the marhsal or unmarshl operation in the route builder:

...


  DataFormat hl7 = new HL7DataFormat();
  ...
  from("direct:hl7in").marshal(hl7).to("jms:queue:hl7out");

In the sample above the HL7 is marshalled from a HAPI Message object to a byte stream and put on a JMS queue.
The next example is the opposite:

...


  DataFormat hl7 = new HL7DataFormat();
  ...
  from("jms:queue:hl7out").unmarshal(hl7).to("patientLookupService");

Here we unmarshal the byte stream into a HAPI Message object that is passed to our patient lookup service.

Notice: Since Camel has build in type converters the DataFormat isn't in much need. However they are there if you need them, for instance if it makes the routing much clearer.

Samples

In the following example we send a HL7 request to a HL7 listener and retrieves a response. We use plain String types in this example:

...

HL7v2 model objects. If you know the message type in advance, you can be more type-safe:

...

 

 

HL7 DataFormat

Message Headers

The unmarshal operation adds these fields from the MSH segment as headers on the Camel message:

...

Key

MSH field

Example

CamelHL7SendingApplication

MSH-3

MYSERVER

CamelHL7SendingFacility

MSH-4

MYSERVERAPP

CamelHL7ReceivingApplication

MSH-5

MYCLIENT

CamelHL7ReceivingFacility

MSH-6

MYCLIENTAPP

CamelHL7Timestamp

MSH-7

20071231235900

CamelHL7Security

MSH-8

null

CamelHL7MessageType

MSH-9-1

ADT

CamelHL7TriggerEvent

MSH-9-2

A01

CamelHL7MessageControl

MSH-10

1234

CamelHL7ProcessingId

MSH-11

P

CamelHL7VersionId

MSH-12

2.4

CamelHL7Context
-

(Camel 2.14) contains the HapiContext that
was used to parse the message

CamelHL7CharsetMSH-18(Camel 2.14.1)
UNICODE UTF-8

All headers except CamelHL7Context are String types. If a header value is missing, its value is null.

Options

The HL7 Data Format supports the following options:

...

Option

Default

Description

validate

true

Whether the HAPI Parser should validate the message using the default validation rules. It is recommended to use the parser or hapiContext option and initialize it with the desired HAPI ValidationContext

parser

ca.uhn.hl7v2.parser.GenericParser

Custom parser to be used. Must be of type ca.uhn.hl7v2.parser.Parser. Note that GenericParser also allows to parse XML-encoded HL7v2 messages

hapiContextca.uhn.hl7v2.DefaultHapiContextCamel 2.14: Custom HAPI context that can define a custom parser, custom ValidationContext etc. This gives you full control over the HL7 parsing and rendering process.

Dependencies

To use HL7 in your Camel routes you'll need to add a dependency on camel-hl7 listed above, which implements this data format.

The HAPI library is split into a base library and several structure libraries, one for each HL7v2 message version:

By default camel-hl7 only references the HAPI base library. Applications are responsible for including structure libraries themselves. For example, if an application works with HL7v2 message versions 2.4 and 2.5 then the following dependencies must be added:

...

Alternatively, an OSGi bundle containing the base library, all structures libraries and required dependencies (on the bundle classpath) can be downloaded from the central Maven repository.

...

Terser language

HAPI provides a Terser class that provides access to fields using a commonly used terse location specification syntax. The Terser language allows to use this syntax to extract values from messages and to use them as expressions and predicates for filtering, content-based routing etc.

Sample:

...

HL7 Validation predicate

Often it is preferable to first parse a HL7v2 message and in a separate step validate it against a HAPI ValidationContext.

Sample:

...

HL7 Validation predicate using the HapiContext (Camel 2.14)

The HAPI Context is always configured with a ValidationContext (or a ValidationRuleBuilder), so you can access the validation rules indirectly. Furthermore, when unmarshalling the HL7DataFormat forwards the configured HAPI context in the CamelHL7Context header, and the validation rules of this context can be easily reused:

...

 

HL7 Acknowledgement expression

A common task in HL7v2 processing is to generate an acknowledgement message as response to an incoming HL7v2 message, e.g. based on a validation result. The ack expression lets us accomplish this very elegantly:

...

More Samples

In the following example, a plain String HL7 request is sent to an HL7 listener that sends back a response:

...

In the next sample, HL7 requests from the HL7 listener are routed to the business logic, which is implemented as plain POJO registered in the registry as hl7service.

...

Then the Camel routes using the RouteBuilder may look as follows:

...

...

Note that by using the HL7 DataFormat the Camel message headers are populated with the fields from the MSH segment. The headers are particularly useful for filtering or content-based routing as shown in the example above.

 

...

Endpoint See Also