Versions Compared

Key

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

...

Code Block
xml
xml
<?xml version="1.0" encoding="UTF-8"?>
<fews-master-config xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/synchronisationConfiguration.xsd">
	<queueconnection>
		<factory jndi="ConnectionFactory"/>
	</queueconnection>
	<defaultMcId>MC00</defaultMcId>
  <mc id="MC00">
		<jndicontext factory="org.jnp.interfaces.NamingContextFactory" provider="jnp://localhost:1099" prefixes="org.jboss.naming:org.jboss.interfaces"/>
		<queue>
			<root jndi="TEST/MC00/"/>
			<synch jndi="External/JMSQueue/OCIncoming" timeout="10"/>
		</queue>	
   </mc>
	<synchronisation>
		<messaging maxrecords="1000" maxlobdata="30000000"/>
		<processor maxlistsize="500000"/>
		<schema location="nl/wldelft/fews/master/data/synchdata/synchronisation_schema.xsd"/>
	</synchronisation>
      <login timeout="10" />
</fews-master-config>

...

Anchor
_Toc154574494
_Toc154574494
Anchor
_Toc95297327
_Toc95297327
synchProfiles

The file synchProfiles

...

.xml contains several different profiles for fine-grained control over the synchronisation with the database.

The following profiles

Full

Synchronizes fully between Operator Client and Master Controller

Minimal

Synchronizes only necessary items

Custom

Customizable synchronization between Operator Client and Master Controller

Configuration Manager

Synchronization profile for Configuration Manager

FS

Synchronization for Forecasting Shell Server

From version 2010.01 onwards, it is possible to get an overview of the active users. This overview is available in both the Operator Client and the Admin Interface. In order to make this functionality work, the synchProfiles.xml has to be configured properly in each of the Operator Clients. Before version 2010.01, the file synchProfiles.xml would typically contain several profiles containing the following snippet:

Code Block
xml
xml

      <activity id="Activity.In.FewsSessions">
        <channelId>Channel.In.FewsSessions</channelId>
        <schedule>
          <single/>
        </schedule>
        <timeOut>10000</timeOut>
      </activity>

From version 2010.01 onwards, it is recommended to replace this snippet for the profiles 'Full', 'Minimal' and 'Custom' by something like:

Code Block
xml
xml

      <activity id="Activity.In.FewsSessions">
        <channelId>Channel.In.FewsSessions</channelId>
        <schedule>
          <continuous>
	    <period unit="minute" multiplier="3" divider="1"/>
	    <priority>low</priority>
          </continuous>
        </schedule>
        <timeOut>10000</timeOut>
      </activity>

This will ensure that the information needed for these overviews is synchronized every three minutes.

See also User Administration - Active UsersTo be completed

Anchor
_Toc154574495
_Toc154574495
Anchor
_Toc95297328
_Toc95297328
synchChannels

...