This is an old revision of the document!


Process Feedback RTC specific

Stages config.xml

To enable the RTC Feedback-System, the following configuration section must be added in the conf/config.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<stages-config>
  <!-- Insert this block to your stages config.xml file -->
  	<feedback-system name="rtc">
		<host url="https://rtc.example.com/ccm">
 
                        <!-- Name of the project area which will contain all the work items created by stages -->
			<property name="projectAreaName" value="Scrum Demo" />
 
                        <!-- Type of the work item, which will be created by stages -->
                        <property name="workItemType" value="task" />
			<property name="trustSsl" value="true" />
			<property name="username" value="admin" />
			<property name="password" value="admin" />
			<property name="authenticationMethod" value="form" />
 
			<attributes>
				<attribute ident="text" type="text" target="test.text" />
				<attribute ident="boolean" type="text" target="test.boolean" />
				<attribute ident="description" type="text" target="description" />
			</attributes>
 
			<system-attribute-mappings>
				<attribute source="creatorFullname" target="test.user" targetType="contributor" />
				<attribute source="elementUrl" target="test.link" />
			</system-attribute-mappings>
		</host>
	</feedback-system>
</stages-config>