Difference between revisions of "Key: CatTaskServiceUrl"

From Catglobe Wiki
Jump to: navigation, search
 
Line 26: Line 26:
  
 
<add key="CatTaskServiceUrl" value="tcp://localhost:8085/CatTaskService.rem" />
 
<add key="CatTaskServiceUrl" value="tcp://localhost:8085/CatTaskService.rem" />
 
===Example of system impact===
 
  
 
...
 
...
 
__NOTOC__
 
__NOTOC__
 
<!-- imported from file: 6470.htm-->
 
<!-- imported from file: 6470.htm-->

Latest revision as of 06:50, 23 October 2013

<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" />

...