for noicangi: 1) You must modify portlet.xml, not portal.xml
2) You are right, i forgot to tell you another thing; for the portal instance you use you must start some services, one of them is CMS service. To do that you must add an xml in the WEB-INF dir of your portal instance: jboss-portlet.xml In this file you must specify the services to start with your portal instance; I think you only need CMS Service but I suggest you to do like me, putting inside all services. Here my jboss-portlet.xml (part of the one in jboss-portal.sar): | <portlet-app> | <service> | <service-name>WebAppRegistry</service-name> | <service-class>org.jboss.portal.server.app.WebAppRegistry</service-class> | <service-ref>:service=WebAppRegistry</service-ref> | </service> | <service> | <service-name>PortalObjectContainer</service-name> | <service-class>org.jboss.portal.core.model.portal.PortalObjectContainer</service-class> | <service-ref>:container=PortalObject,type=global</service-ref> | </service> | <service> | <service-name>InstanceContainer</service-name> | <service-class>org.jboss.portal.core.model.instance.InstanceContainer</service-class> | <service-ref>:container=Instance,type=global</service-ref> | </service> | <service> | <service-name>ThemeService</service-name> | <service-class>org.jboss.portal.theme.ThemeService</service-class> | <service-ref>:service=ThemeService</service-ref> | </service> | <service> | <service-name>LayoutService</service-name> | <service-class>org.jboss.portal.theme.LayoutService</service-class> | <service-ref>:service=LayoutService</service-ref> | </service> | <service> | <service-name>CMS</service-name> | <service-class>org.jboss.portal.cms.CMS</service-class> | <service-ref>:service=CMS</service-ref> | </service> | <service> | <service-name>PortalPermissionFactory</service-name> | <service-class>org.jboss.portal.security.PortalPermissionFactory</service-class> | <service-ref>:service=PortalPermissionFactory</service-ref> | </service> | <service> | <service-name>UserModule</service-name> | <service-class>org.jboss.portal.core.modules.UserModule</service-class> | <service-ref>:service=Module,type=User</service-ref> | </service> | <service> | <service-name>RoleModule</service-name> | <service-class>org.jboss.portal.core.modules.RoleModule</service-class> | <service-ref>:service=Module,type=Role</service-ref> | </service> | <service> | <service-name>MailModule</service-name> | <service-class>org.jboss.portal.core.modules.MailModule</service-class> | <service-ref>:service=Module,type=Mail</service-ref> | </service> | <service> | <service-name>PortalPolicyConfigService</service-name> | <service-class>org.jboss.portal.security.config.PortalPolicyConfigService</service-class> | <service-ref>:policy=PortalPolicyConfigService</service-ref> | </service> | </portlet-app> this may correct your last error. Paolo for glodo: I'm sorry but I haven't tried yet the CatalogPortlet so I can't help you for this. Anywere I'll contact you if i will discover something. If you find any news about rendering jsps contact me please. Paolo. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3920023#3920023 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3920023 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
