To modify Composer.OWS.exe.config:
- From the %Composerdir% directory, open Composer.OWS.exe.config with a text editor that supports UTF-8.
-
Within the
<appSettings> element, change all IP ports to
the same number, in the following example
8100:
<appSettings> ... <add key="rws" value="http://localhost:8100/rws" /> <add key="sts" value="http://localhost:8100/sts" /> <add key="login" value="http://localhost:8100/mur/login" /> <add key="mur" value="http://localhost:8100/mur/data" /> ... </appSettings>
-
In the
<add baseAddress element below the line
<service name="ModusSuite.OWS.OWSService"
behaviorConfiguration="ModusSuiteServiceBehaviour">.
- Change localhost to the DNS name of the load balancer server.
- Change the IP port to 8100.
<service name="ModusSuite.OWS.OWSService" behaviorConfiguration ="ModusSuiteServiceBehaviour" > <host> <baseAddresses> <add baseAddress ="http://[DNS name of the load balancer server]:8100/ows" /> </baseAddresses> </host> ... </service>
-
In the
<add baseAddress element below the line
<service name="ModusSuite.OWS.OWSServiceBasic"
behaviorConfiguration="BasicBehaviour">.
- Change localhost to the DNS name of the load balancer server.
- Change the IP port to 8100.
<service name="ModusSuite.OWS.OWSServiceBasic" behaviorConfiguration ="BasicBehaviour" > <host> <baseAddresses> <add baseAddress ="http://[DNS name of the load balancer server]:8100/owsbasic" /> </baseAddresses> </host> ... </service>
- Save and close the file.