ok, so the only way to get this scenario to work is as follows: Your echo-portal should look like this:
| <window> | <window-name>ContentPortletWindow</window-name> | <instance-ref>portal.ContentPortlet.MyEchoContentPortletInstance</instance-ref> | <region>left</region> | <height>2</height> | </window> | Use 'portal.' here, as the Portlet is deployed under the portal web-app name. Now you have to go in to jboss-portal-exploded.sar\portal-core.war\WEB-INF\portlet-instances.xml and add your contentPortlet instance: | <instance> | <instance-name>MyEchoContentPortletInstance</instance-name> | <component-ref>ContentPortlet</component-ref> | <preferences> | <preference> | <name>uri</name> | <value>/echo/page01.html</value> | </preference> | </preferences> | </instance> | You cannot achieve this from outside of this war. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3891629#3891629 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3891629 ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
