Key: CatTaskServiceUrl

From Catglobe Wiki
Jump to: navigation, search

<accesscontrol>Main:MyGroup</accesscontrol> 

Key: CatTaskServiceUrl

Syntax

<add key="CatTaskServiceUrl" value="tcp://[HOST]:[PORT]/[SERVICENAME]"/>

[HOST]: host is the IP address (or DNS name if a local DNS server is available) of the server where the CatTask service is installed.

[PORT]: this is the port number of that CatTask uses for communication. Services for different versions will have different port numbers.

[SERVICENAME]: specifies the remoting name of the external service. This setting must be identical to the one in the CatTaskService.exe.config file for the service.

Purpose

CatTaskServiceUrl describes the location of the CatTask service on the network. The key consists of three parts that must be specified to be able to make a connection to the service.

[HOST], [PORT], and [SERVICENAME]

This key is required.

Example of key

<add key="CatTaskServiceUrl" value="tcp://localhost:8085/CatTaskService.rem" />

...