Previous Topic Next topic Print topic


About Region Properties

Owing to the scale-out nature of Enterprise Server for .NET, using machine environment variables to store information for use within a running region is not possible as, normally, the execution of an application cannot be guaranteed to be carried out on a specific machine.

In order for this sort of customization to be possible, Enterprise Server for .NET allows name-value pairs to be stored in a region property file.

To create and maintain these name-value pairs, you use the region property editor.

To associate a property file with a region, select the region and enter the file path and name in the Property file location field in the Properties pane.

You can then enter the editor directly, using the Edit Property File in the Actions tab on the right hand side.

At region startup, the Region Property file is read and the information is available to the running region. Changes to the properties are not dynamic, so you need to restart the region for them to come into effect.

To access the information from within a running region, you can use the MicroFocus.SEE.SEP.Public.SEPInfo.GetPropertyValue() method to retrieve a value from the region properties.

Assuming:

the following COBOL code snippet will look up the value associated with the name "mykey" and place it into a string called myValue:
declare myValue as string
set myValue to type SEPInfo::GetPropertyValue("mykey")
Previous Topic Next topic Print topic