On Thu, Mar 25, 2010 at 4:45 PM, Tender Slim <[email protected]> wrote:
>
> Does anyone know which class is generating the following message: “The
> requested resource (/container) is not available”? I want to find the source
> of the damned problem.
>
I think it means your portlet application failed to start. Could be
caused by any number of reasons
Check the tomcat and jetspeed logs for exceptions, stack traces
Also, please verify the web.xml in your *deployed* web application has
an entry like (but not exactly):

  <servlet>
    <description>MVC Servlet for Jetspeed Portlet Applications</description>
    <display-name>Jetspeed Container</display-name>
    <servlet-name>JetspeedContainer</servlet-name>
    <servlet-class>
      org.apache.jetspeed.container.JetspeedContainerServlet</servlet-class>
    <init-param>
      <param-name>contextName</param-name>
      <param-value>j2-admin</param-value>
    </init-param>
    <load-on-startup>100</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>JetspeedContainer</servlet-name>
    <url-pattern>/container/*</url-pattern>
  </servlet-mapping>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to