Re: [appfuse-user] Tomcat 5.5.2 and IDEA startup error: Cannot load excludes configuration file from jar

2007-06-23 Thread Matt Raible
Have you tried running "war:inplace" first. No IDE will be aware of merging WARs (which the warpath plugin does for Maven), so you'll need to run "war:inplace" or pull all AppFuse's source in using "appfuse:full-source". Matt On 6/23/07, jlukar <[EMAIL PROTECTED]> wrote: Hi all good people, I

[appfuse-user] Tomcat 5.5.2 and IDEA startup error: Cannot load excludes configuration file from jar

2007-06-23 Thread jlukar
Hi all good people, I have a desire to startup my appfuse based app in IntelliJ IDEA (6.0) using JDK 1.5 on WinXP. I get the below error. Googling the error yielded postings for sitemesh and how "decorators.xml" and its formating might be the culprit. Also someone mentioned moving "decorators"

Re: [appfuse-user] to store login timestamp in database.

2007-06-23 Thread Matt Raible
You can use "mvn appfuse:full-source" if you want to get all of AppFuse's source in your project. From http://appfuse.org/display/APF/Maven+Plugins: Installing AppFuse's source into your project The good news is creating an "old style" project is now pretty easy. If you create a new project u

Re: [appfuse-user] How to maintain adaptor class in session in Appfuse

2007-06-23 Thread Matt Raible
I would use an HttpSessionListener (like UserCounterListener) to listen for session activation and put the menu in there then. http://static.appfuse.org/appfuse-web-common/xref/org/appfuse/webapp/listener/UserCounterListener.html http://tinyurl.com/24j7me On 6/23/07, ujjala <[EMAIL PROTECTED]>

[appfuse-user] to store login timestamp in database.

2007-06-23 Thread ujjala
I want to store login timestamp in user table means when login succeeded i want to store current time as a login timestamp in database . Problem is that where i should write the code for the same. Because authentication(password checking) is being done in some jar file . -- View this message in

[appfuse-user] How to maintain adaptor class in session in Appfuse

2007-06-23 Thread ujjala
We have to put adapter class in session to show the menu option otherwise it throws exception. In appfuse we know that it goes mainmenu action so we can put our self made adapter class there. Problem is that first it works fine but when we click a link after session out time it goes to login pag