It's all about the answers!

Ask a question

RTC work item template creation error


GURVINDER SOKHI (731131) | asked Feb 08 '21, 3:28 p.m.

Attempting to create work item template based on work items reported by a query, fails with error "ProcessSpecificationStore.ERROR_ON_MODEL_PARSING!". 

Anyone seen this error ? any suggestion to resolution much appreciated

One answer



permanent link
Tadeusz Janasiewicz (120149) | answered Feb 18 '21, 3:57 a.m.
edited Feb 18 '21, 3:59 a.m.
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>

Your answer


Register or to post your answer.