RTC work item template creation error
One answer
Hi Guv,
It looks like that we found the root cause, that is the self closed tag in the process configuration source:
<process-specification xmlns="http://com.ibm.team.process">;
<project-configuration/>
</process-specification>
and to fix it, it needs to be replaced with:
<process-specification xmlns="http://com.ibm.team.process">;
<project-configuration>
</project-configuration>
</process-specification>