RAW

From Commander4j

The RAW connector is special. It's provided to enable the middleware to copy/move files without any kind of modification or interpretation. This is more efficent than using a different kind of connector.

The other connectors will load the input file and convert into a XML representation so you can apply XSL transformations and convert into different file formats. This has a memory and cpu overhead.

The RAW connector bypasses this step and just moves the file.

You might to this if you want to poll and remote file share and move files to a local folder for import into an application without modification.

RAW Map Configuration

config.xml

      <map>
         <id>Map07</id>
         <enabled>true</enabled>
         <description>RAW File Copy</description>
         <enableEmailNotifications>true</enableEmailNotifications>
         <connectors>
            <input>
               <id>in1</id>
               <description>Read RAW Input</description>
               <type>RAW</type>
               <url>
                  <path>./interface/input/Map07 RAW to RAW</path>
                  <mask/>
                  <prefix/>
                  <pollingInterval>5000</pollingInterval>
               </url>
            </input>
            <output>
               <id>out1</id>
               <enabled>true</enabled>
               <description>Write RAW Output</description>
               <type>RAW</type>
               <url>
                  <path>./interface/output/Map07 RAW to RAW Copy 1;./interface/output/Map07 RAW to RAW Copy 2</path>
                  <prefix/>
                  <fileExtension/>
                  <use83GUID>false</use83GUID>
               </url>
            </output>
         </connectors>
      </map>