I have a component extending a propertysheetwizardcontainer_component, and I am also extending a PropertySheetWizardContainer in my behavior class. Now, when I am trying to launch my component it throws the error ....
11:00:22,228 ERROR [http-8080-4] com.documentum.web.common.Trace - Component: component_name, called with missing required arguments: strComponentId.... java.lang.IllegalStateException: Component: component_name, called with missing required arguments: strComponentId
My component:
<config version="1.0">
<scope>
<component id="project_folder_component" extends="propertysheetwizardcontainer:webcomponent/config/library/propertysheetwizardcontainer/propertysheetwizardcontainer_component.xml">
<params>
<param name="component" required="false"/>
<param name="objectId" required="true"/>
<param name="strComponentId" required="true"/>
</params>
<pages>
<filter clientenv="not appintg">
<start>/custom/jsp/coega/project_folder/project_folder.jsp</start>
</filter>
<filter clientenv="appintg">
<start>/custom/jsp/coega/project_folder/project_folder.jsp</start>
</filter>
</pages>
<class>com.coega.custom.NewProject</class>
<nlsbundle>coega.project_folder.projectFolderProp</nlsbundle>
<failoverenabled>true</failoverenabled>
<contains>
<component>new_project_component</component>
<component requiresVisit='true'>allocate_supplier_component</component>
</contains>
<helpcontextid>project_folder_component</helpcontextid>
</component>
</scope>
</config>
is there something that I am doing wrong? I look forward to hearing from you guys soon.