To specify the service addresses, complete the following
steps.
- From the %Composerdir% directory, open Composer.Client.exe.config with a text editor that supports UTF-8.
-
Search for the following line.
<add key="login" value="http://localhost:8010/mur/login" />
-
Check the
value attribute and change the value if required.
Note: The value of the key login is the login address. The address composes of the host base address and the endpoint address of the corresponding service.
-
Search for the following line.
<add key="mur" value="http://localhost:8010/mur/data" />
-
Check the
value attribute and change the value if required.
Note: The value of the key mur is the data address. The address composes of the host base address and the endpoint address of the corresponding service.
Example
In the following example, the client communicates with the service hosted on the computer with the network name Hyland using IP port 8010.
<add key="login" value="http://Hyland:8010/mur/login" /> <add key="mur" value="http://Hyland:8010/mur/data" />