« Return to Thread: Re: JSP and Portlets

Re: JSP and Portlets

by pierx :: Rate this Message:

Reply to Author | View in Thread

I need to assemble a page with one ore more portlets...Given a set of portlets, I want to choose those will compose my page depending from some parameters (in particular, I'm working in web service field...so the portlets chosen depend from the negotiation).


On 26/02/2008, Paul Hunnisett <Paul.Hunnisett@...> wrote:
If you just want 'run time' html - why do you need portlets?  JSP will
do that in itself...

Pierpaolo Lombardi wrote:
> I did the steps showed on that link but it doesn't work...Pluto can't start
> it...the error is
>
> 25-feb-2008 9.29.42 org.apache.catalina.core.StandardContext listenerStart
> GRAVE: Exception sending context initialized event to listener instance of
> class org.apache.pluto.driver.PortalStartupListener
> java.lang.NullPointerException
>
> and my web.xml file is
>
> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
> http://java.sun.com/xml/ns/javaee
> http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
>
>     <filter>
>         <filter-name>plutoPortalDriver</filter-name>
>         <filter-class>org.apache.pluto.driver.PortalDriverFilter
> </filter-class>
>     </filter>
>
>     <filter-mapping>
>         <filter-name>plutoPortalDriver</filter-name>
>         <url-pattern>/about.jsp</url-pattern>
>     </filter-mapping>
>
>     <filter-mapping>
>         <filter-name>plutoPortalDriver</filter-name>
>         <url-pattern>/about.jsp/*</url-pattern>
>     </filter-mapping>
>
>     <listener>
>         <listener-class>org.apache.pluto.driver.PortalStartupListener
> </listener-class>
>     </listener>
>
>     <session-config>
>         <session-timeout>
>             30
>         </session-timeout>
>     </session-config>
>
>     <welcome-file-list>
>         <welcome-file>index.jsp</welcome-file>
>     </welcome-file-list>
>
>  </web-app>
>
>
> This incoming email to UWE has been independently scanned for viruses by McAfee anti-virus software and none were detected
>


This email was independently scanned for viruses by McAfee anti-virus software and none were found

 « Return to Thread: Re: JSP and Portlets