=== modified file 'src/docbkx/en/dhis2_user_man_integration.xml' --- src/docbkx/en/dhis2_user_man_integration.xml 2012-08-05 17:59:52 +0000 +++ src/docbkx/en/dhis2_user_man_integration.xml 2012-08-10 11:04:16 +0000 @@ -83,7 +83,43 @@ DHIS2_HOME directory. Any XML routes found in that directory will be loaded into the running application.
- A Java route - + Transforming data - a Java route + This route is used internally in the DHIS2 integration module to perform the transformation from SDMX input data to the DHIS2 DXF2 data format. The listing below is a + slighlty simplified illustration. + + Some notes on the above: + + The DHIS2 integration is configured to automatically scan and load java routes which are in the package org.hisp.dhis.integration.routes. So any + RouteBuilder classes like this, found in the classpath will be automatically loaded. + This example shows the use of an xslt transform. The url "xslt:transform/cross2dxf2.xsl" will search for the xsl file amongst the classpath resources. + It is also possible to use an absolute file reference. + The dhis2:data endpoint is a DHIS2 specific + component which is available to the author of DHIS2 routes as a destination for + importing DXF2 data. + +