Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this example, we will add a configuration type "test-config" to our SAMPLESRV.

  1. Create

...

  1. Create a directory for the configuration dictionary file SAMPLESRV/configuration.

    Code Block
    mkdir -p configuration
    cd configuration
  2. Create the test-config.xml file. For example:

    Code Block
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <configuration>
      <property>
        <name>some.test.property</name>
        <value>this.is.the.default.value</value>
        <description>This is a test description.</description>
     </property>
    </configuration>
    
    

     

     

...