Skip to main content
Skip table of contents

Configuring Parameters using XML file

The RouteUtility tool creates/removes multiple routes between destinations (Queues/Topics) based on the configuration file specified while running the route utility. The configuration file (routes.xml) contains the route properties of the each route to be created.
'routes.xml' file is located at $FIORANO_HOME/fmq/Utilities/RouteUtility/conf folder. If one of the route configuration is not specified with proper values, remaining routes can still be created/removed.

Command to Create/Remove Routes

UNIX:

CODE
$FIORANO_HOME/fmq/bin/routeUtility.sh [-operation <operation> -configFile <routeConfigsFile>] 

WINDOWS:

CODE
%FIORANO_HOME%/fmq/bin/routeUtility.bat [-operation <operation> -configFile <routeConfigsFile>] 

ConfigFile: XML file which contains configuration of the routes. If no configuration file is specified while running the route Utility then 'routes.xml' will be taken as the default configuration file.

Operation: Operation that needs to be executed using the route utility.

ValidValues: CreateRoutes or removeRoutes.

If no operation is specified, then this will take 'createRoutes' as its operation.

Modifying routes.xml to Add/Delete Routes

'route.xml' provided with the RouteUtility has been preconfigured to create multiple routes with a unique Guid for each route. In order to add more routes to the XML file, please modify the XML file as shown below:

In order to add a new route copy the below tag and edit it and append to the routes.xml file. The complete syntax shown below will add the new route.

CODE
<ro:Route guid="sample_route1">
<ro:SourceServer>
<ro:Address>localhost</ro:Address>
<ro:Port>1858</ro:Port>
<ro:Destination>primaryQueue</ro:Destination>
<ro:UserName>admin</ro:UserName>
<ro:Password>passwd</ro:Password>
</ro:SourceServer>
<ro:TargetServer>
<ro:LookupURL>http://localhost:1856</ro:LookupURL>
<ro:CFName>primaryCF</ro:CFName>
<ro:Destination>primaryTopic</ro:Destination>
<ro:ClientID>null</ro:ClientID>
</ro:TargetServer>
<ro:IsDurableSubscriber>false</ro:IsDurableSubscriber>
<ro:DurableSubscriber id="SOME_ID">true</ro:DurableSubscriber>
<ro:MessageSelector></ro:MessageSelector>
<ro:EnableDMQOnRoute>false</ro:EnableDMQOnRoute>
</ro:Route>

In order to delete a route remove the tag corresponding to the route to be deleted from the route.xml file

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.