Difference between revisions of "Map01"

From Commander4j Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
 
   </'''map'''>
 
   </'''map'''>
  
'''map''' is used to enclose the map definition which consists of inputs and outputs<br>
+
'''map''' is used to enclose the map definition which consists of inputs and outputs.<br>
 
'''id''' can be anything you like but should be unique.<br>
 
'''id''' can be anything you like but should be unique.<br>
 
'''enabled''' can be used to temporarily disable a map so that it's ignored within the file<br>
 
'''enabled''' can be used to temporarily disable a map so that it's ignored within the file<br>
Line 25: Line 25:
 
'''path''' determines the folder where input files are to be found<br>
 
'''path''' determines the folder where input files are to be found<br>
 
'''mask''' can be left blank if the default works (as determined by the type) otherwise enter the file extension of the input files.<br>
 
'''mask''' can be left blank if the default works (as determined by the type) otherwise enter the file extension of the input files.<br>
'''XSLT''' is the filename of the XSLT style sheet used to transform the document and can be used on both input and output phases.
+
'''XSLT''' is the filename of the [[XSLT style sheet]] used to transform the document and can be used on both input and output phases.

Latest revision as of 16:47, 20 January 2018


The below fragment of the configuration file called config.xml which can be found in the ./xml/config folder.
  <map id="map01" enabed="Y" description="Rockwell Material Master to C4J Material Master">
      <input id="in1" description="Read Rockwell Material Master">
          <type>XML</type>
          <path>./interface/input/01 (Rockwell FFMW Material)</path>
          <mask/>
          <pollingInterval>1000</pollingInterval>
          <XSLT>ROCKWELL_MM_FFMW_XML_to_C4J_XML.xsl</XSLT>
      </input>
      <output id="out1" enabed="Y" description="Write Commander4j Material Master">
          <path>./interface/output/01 (C4J - Material)</path>
          <type>XML</type>
          <XSLT/>
      </output>
  </map>

map is used to enclose the map definition which consists of inputs and outputs.
id can be anything you like but should be unique.
enabled can be used to temporarily disable a map so that it's ignored within the file
description should be a short note regarding the purpose of the map.
type indicates to the program the type of the document you are procesing. This setting defines the default file mask - file extension used.
path determines the folder where input files are to be found
mask can be left blank if the default works (as determined by the type) otherwise enter the file extension of the input files.
XSLT is the filename of the XSLT style sheet used to transform the document and can be used on both input and output phases.