Re: [appfuse-user] How to make appfuse occupy the entire browser window

2008-07-29 Thread Richard Nduka
Thanks Matt, Tibi. You were very helpful. Cheers. On Tue, Jul 29, 2008 at 10:41 PM, Matt Raible <[EMAIL PROTECTED]>wrote: > This may help: > > http://appfuse.org/display/APF/CSS+Framework#CSSFramework-fullwidth > > Matt > > > On Tue, Jul 29, 2008 at 1:45 PM, Richard Nduka <[EMAIL PROTECTED]>wro

Re: [appfuse-user] Login Redirect problem after 2.0.2 upgrade

2008-07-29 Thread mettamara
I played with some of the security XML and maybe I missed the boat on this one but removing the below line, breaks the login redirect component. I am using the Struts 2 config, so I assumed it was safe for me to remove, but re-adding it restored the redirect part. Also Matt, thanks for updatin

[appfuse-user] clear errors

2008-07-29 Thread tibi
does anyone know how i can clear the applicationErrors when i set one the validater will hang on that. i want to clear the errors in the jsp error part just after writing the errors to the screen: in the messages.jsp there is this code: " alt="" class="icon" />

Re: [appfuse-user] Login Redirect problem after 2.0.2 upgrade

2008-07-29 Thread Matt Raible
On Mon, Jul 28, 2008 at 5:19 PM, mettamara <[EMAIL PROTECTED]> wrote: > > After doing the 2.0.2 upgrade (struts) the redirect to login page for > not-logged in users is no longer occurring for me. The default/ mainMenu > page gives a blank result with no notification in the log and going to > anoth

Re: [appfuse-user] MVN command always Connection Refused

2008-07-29 Thread Matt Raible
It looks like your MySQL database is not running. Can you connect with "mysql -u root -p" and then hit "Enter" when it prompts for a password? Matt On Tue, Jul 29, 2008 at 11:42 AM, Allan Daños <[EMAIL PROTECTED]> wrote: > Hi, > > > > I tried to create new project using Struts 2 modular archetyp

[appfuse-user] MVN command always Connection Refused

2008-07-29 Thread Allan Daños
Hi, I tried to create new project using Struts 2 modular archetype. Changing into the directory and running 'mvn' command inside the myproject's directory gives this error. It's funny but sometimes there's no error, though lately it's been always like this. Please see the exception logs below

Re: [appfuse-user] does appfuse provide Ejb+Spring for backend or just Ejb tutorial?

2008-07-29 Thread Matt Raible
You could try using Terracotta. http://www.terracotta.org/ Matt On Sun, Jul 27, 2008 at 6:44 PM, jimmy6 <[EMAIL PROTECTED]> wrote: > > But how about those clustering the session bean? The session bean is in the > server side spring bean is only inside the project. > > > mraible wrote: > > > > N

Re: [appfuse-user] How to make appfuse occupy the entire browser window

2008-07-29 Thread Matt Raible
This may help: http://appfuse.org/display/APF/CSS+Framework#CSSFramework-fullwidth Matt On Tue, Jul 29, 2008 at 1:45 PM, Richard Nduka <[EMAIL PROTECTED]>wrote: > Hi, > > Appfuse just occupies the center of the screen in browser (am using IE) and > the simplicity theme. How do i increase it in

Re: [appfuse-user] How to make appfuse occupy the entire browser window

2008-07-29 Thread tibi
its in the web.xml csstheme yourTHeme tibi wrote: > > i copied one off the current styles and changed the css files > > go to the src/main/webapp/styles folder > there you can copy one off the current styles > then use your FF with css editing plugin to change i

[appfuse-user] clearing actionErrors

2008-07-29 Thread tibi
does anyone know how i can clear the applicationErrors when i set one the validater will hang on that. i want to clear the errors in the jsp error part just after writing the errors to the screen: in the messages.jsp there is this code: " class="icon" />

Re: [appfuse-user] How to make appfuse occupy the entire browser window

2008-07-29 Thread tibi
i copied one off the current styles and changed the css files go to the src/main/webapp/styles folder there you can copy one off the current styles then use your FF with css editing plugin to change it. i seem the have forgotten where to config which style to use... Richard Nduka-2 wrote: >

Re: [appfuse-user] How to make appfuse occupy the entire browser window

2008-07-29 Thread Richard Nduka
Hi, Appfuse just occupies the center of the screen in browser (am using IE) and the simplicity theme. How do i increase it in such a way that appfuse occupies the entire browser window. Thanks in advance.

Re: [appfuse-user] CommunicationsException

2008-07-29 Thread jonl
The exception had to do with MySql (or was the applications DB pool?) not releasing/refreshing stale connections. This led to MySql using the maximum allowable connections, eventually leading the app to throw an exception when it needed another connection. It was a while back. Can't remember the

Re: [appfuse-user] CommunicationsException

2008-07-29 Thread java_user_
Thanks Jon! That fixed the problem. After some trial and error, it appears that "validationQuery" was the specific dataSource property that fixed the CommunicationsException problem. I was seeing an AbandonedObjectPool error when I had removeAbandoned set to true. Was that the MySQL pooling ex

Re: [appfuse-user] How to change the locale programmatically

2008-07-29 Thread Martin Homik
Oh boy ... this was a long journey. Finally, I came up with a third alternative: a filter. I came across a few posts and found the LocaleFilter. In principle, I copied it and added a few more lines. Now, the workflow is like this: 1. check if a remote user exists; if not then process as LocaleF

[appfuse-user] New invitation from Mohd Amin

2008-07-29 Thread Mohd Amin
You have been invited to connect as friends with Mohd Amin <[EMAIL PROTECTED]> Please accept or reject this invitation by clicking below: http://www.bebo.com/in/7553874213a593790367b135 .. Please do not reply directly to this em

Re: [appfuse-user] CommunicationsException

2008-07-29 Thread jonl
Hi, I encountered something similar and approached it by tweaking the datasource bean: SELECT 1 I've only experienced it with MySql, never