atom feed9 messages in org.apache.struts.userRe: [SHALE] prerender() never called..?
FromSent OnAttachments
Bjørn T JohansenAug 28, 2005 12:53 pm 
Craig McClanahanAug 28, 2005 3:15 pm 
Bjørn T JohansenAug 28, 2005 3:35 pm 
Craig McClanahanAug 28, 2005 3:52 pm 
Bjørn T JohansenAug 28, 2005 11:38 pm 
Wendy SmoakAug 28, 2005 11:44 pm 
Craig McClanahanAug 28, 2005 11:54 pm 
Bjørn T JohansenAug 29, 2005 12:12 am 
Bjørn T JohansenAug 29, 2005 12:29 am 
Subject:Re: [SHALE] prerender() never called..?
From:Bjørn T Johansen (bt@havleik.no)
Date:Aug 29, 2005 12:29:06 am
List:org.apache.struts.user

But now I have changed the name of my managed bean to correspond to this naming scheme, but still no methods is called...? Am I missing more...?

Without more details about what you're doing, it's impossible to tell what is going wrong -- but one thing you should *not* be worrying about is explicitly declaring the Shale ViewController. That happens automatically when shale-core.jar is included in your webapp.

I have now downloaded the latest release and read some more documentation, and I
found out I was missing some declarations in my web.xml file... I needed to include
these..:

<filter> <filter-name>shale</filter-name> <filter-class>org.apache.shale.faces.ShaleApplicationFilter</filter-class> </filter> <filter-mapping> <filter-name>shale</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>

and

<listener> <listener-class>org.apache.commons.chain.web.ChainListener</listener-class> </listener>

and now it's working... :)

BTJ