To connect to the web service, set the service endpoints:
The file binds the Starter Kit solution to your Touchstone host server. You identify the Touchstone application server URL, which is specific to your company, and insert the URL into the endpoint binding addresses in the App.config file.
TouchstoneRe.exe.config
file in a text editor.
address
section in the standardEndpoint
line, identify the Touchstone application server URL.
In the following example, the Touchstone application server URL is xyz.abc.com
:
Touchstone Application Server URL Example | |
---|---|
<standardEndpoints> <commonEndpoint> <standardEndpoint name="applicationCommonEndpoint" address=https://xyz.abc.com/FEP/AirServiceFacade.svc binding="wsHttpBinding" bindingConfiguration="wsHttpEndPoint" /> </commonEndpoint> </standardEndpoints> |
<endpoint/>
node and change the value of the address attribute to the name of your own Touchstone host server.That is, use the Touchstone application server URL that you identified in the previous step. In the following example, [ServerHost]
represents your host server name, for example, xyz.abc.com
:
Endpoint Address Example | |
---|---|
<endpoint address="https://[ServerHost]/FEP/AirServiceFacade.svc"/> |