Enabling FHIR Interfaces
To enable the HL7 FHIR interface on your SanteDB iCDR you will need to:
Enable the FHIR Message Service in your host context
Configure the FhirServiceConfigurationSection
Optionally enable FHIR audit dispatcher notifications
Enabling the FHIR Interface
Enable the FHIR Message Handler Services
To enable the FHIR message handler, you should include the following option in your santedb.config.xml
file:
This enables two services for FHIR:
FhirMessageHandler
: Which is responsible for the processing of FHIR messages over HTTP RESTFhirDataInitializationService
: Which is responsible for the import of FHIR resource files from the hard disk drive in the/data/fhir
directory.
Alternately, you can enable the FHIR services via the environment variable (in Docker or Kubernetes) using:
Configuring FHIR Message Handler
The FHIR Message Handler uses the FhirServiceConfigurationSection
in order to drive the configuration of the FHIR services.
REST Configuration
The endpoint on which the service listens is driven by the RestConfigurationSection
, a service with name FHIR
is registered with one or more <endpoint>
elements which dictate the IP/Port and scheme of binding.
As with all SanteDB services, it is recommended to use SSL termination at an upstream host. The HTTPS scheme is only supported on Windows and only after an appropriate netsh http sslcert add
command has been executed to bind a certificate to the WinHTTP layer.
Controlling Resource Access
By default, the FHIR message handler will scan the application domain for all resource handlers and will, by default, enable all available resources. There are use cases where this list of resources needs to be constrained for a particular SanteDB role (for example, in SanteMPI it may not be advisable to expose the AdverseEvent resource handlers).
To enable a resource on the FHIR handler using the default implementation of the resource handler, appropriate <resources>
should be registered in the configuration section, for example, to enable only Patient and RelatedPerson:
Alternately, if you would like to implement a custom resource handler which can provides specific behaviours for a particular resource type, you can use the <resourceHandlers>
section and provide an assembly-qualified pointer to the resource handler:
Extended Operations and Extensions
The Extending FHIR Functionality wiki article described the process of extending the FHIR interface with custom operations and custom extensions.
Configuring Dispatcher Targets
FHIR dispatchers are classes which are responsible for sending data from your SanteDB iCDR server to another server. These dispatchers can be created using a Subscription
resource, or can be the FHIR Audit Dispatcher (described below).
The configuration for these dispatchers are driven by the settings in the Subscription
resource, however can further be configured using FhirDispatchConfigurationSection
.
By default, the <user>
and <password>
fields are used to drive HTTP BASIC authentication, however a custom <authenticator
can be used if the target service requires obtaining a security certificate, an authorization token, etc.
To modify/customize a Subscription
resource , a <target>
is added with <name>
matching the id of the subscription.
Enabling FHIR Audits
All message layer functions in SanteDB produce audits which are stored in the local SanteDB audit repository instance (or in the SanteGuard audit repository if installed). These audits can optionally be shipped or forwarded to another audit repository by enabling an IAuditDispatcher
service.
The FHIR service in SanteDB contains a FHIR based audit dispatcher which creates instances of AuditEvent
and ships them to a FHIR server. To enable the FHIR audit dispatcher, add it as a service in your service configuration:
In Docker or Kubernetes, this feature is enabled using:
After configuration of the audit dispatcher, you will need to configure a dispatcher target named AUDIT
which provides the destination registration of where to send the audit information. In Kubernetes/Docker this is configured with:
Last updated