Hello!
I want to modify the importcontainer_component of documentum. I want a custom jsp and therefore i have to replace the <containerstart> element:
<pages>
<fileselection>/webcomponent/library/contenttransfer/importcontent/fileselection.jsp</fileselection>
<folderselection>/webcomponent/library/contenttransfer/importcontent/folderselection.jsp</folderselection>
<filter clientenv="not appintg">
<containerstart>/webcomponent/library/contenttransfer/importcontent/importcontainer.jsp</containerstart>
</filter>
<filter clientenv="appintg">
<containerstart>/webcomponent/library/contenttransfer/importcontent/appintgimportcontainer.jsp</containerstart>
</filter>
</pages>
this is the way i tried:
<replace path="pages.filter[clientenv=not appintg].containerstart">
<containerstart>/custom/pages/imp/importContainer.jsp</containerstart>
</replace>
but when i start tomcat i get the message: Invalid Argument 'pattern' : 'element-name[attribute-name:attribute-value]' i think its about the space in the attribute-value but what can i do to solve this problem?
when i try with
<replace path="pages.filter[clientenv=not appintg].containerstart">
<containerstart>/custom/pages/imp/importContainer.jsp</containerstart>
</replace>
i get the message: Can't locate a unique child element with path...
please help