Import runtime properties from a file

By default, runtime properties are loaded from the RuntimeProperties.xml file during start-up. Additionally, you can import runtime properties from another file.

About this task

Import runtime properties from a file.

Procedure

  1. Navigate to Administration > Utilities > Runtime Properties > Import.
  2. Click Import.
  3. Select an .xml properties file to import.
    Example .xml file:
    <?xml version="1.0"?>
    <Properties xmlns="http://guidewire.com/psc/properties">
      <Property>
        <Group>integration</Group>
        <Name>TestOne</Name>
        <Description></Description>
        <Value>Value</Value>
      </Property>
      <Property>
        <Group>integration</Group>
        <Name>TestTwo</Name>
        <Description></Description>
        <Value>Value</Value>
        <Value env="h2">Env/Value>
      </Property>
    </Properties>
    Note: The values from the file you import override the values defined and saved in the database.