Re: [OT] JSF Interface Design - Is it Truly Limited?

2005-11-14 Thread Ronald Holshausen
Hi Mike, I have switched from struts to JSF for our companies product development, as I can say that JSF is totally CSS oriented. Each control has a CSS class as a property, and a lot of the tomahawk components provide their own base CSS classes by default (have a look at the tabbed pane from

Re: [OT] JSF Interface Design - Is it Truly Limited?

2005-11-14 Thread Ronald Holshausen
I downloaded it, and went through their docs online, but I haven't had a chance to play with it yet :-( On 14/11/05, Bernhard Slominski [EMAIL PROTECTED] wrote: Have a look at the clay component from shale, as this supports this type of development process more fully as you could then use the

Re: [OT] JSF Interface Design - Is it Truly Limited?

2005-11-14 Thread Ronald Holshausen
or Sun JSF? Any reasons your company starts to use JSF as I am standing at the cross road of Struts and JSF? Thanks On 11/14/05, Ronald Holshausen [EMAIL PROTECTED] wrote: Hi Mike, I have switched from struts to JSF for our companies product development, as I can say that JSF is totally

Re: Tiles, pass parameters between tiles's frames

2005-11-02 Thread Ronald Holshausen
Hi Rodolfo, It would probably be best to use the session as the medium for passing between your tile components. On 02/11/05, Rodolfo GarcĂ­a Esteban/CYII [EMAIL PROTECTED] wrote: Hi, I have a problem with tiles, I have four tile`s frames: a head, a menu, a content and a foot. I load all the

Re: SV: SV: SV: [Shale] JspTilesViewHandlerImpl and Shale

2005-10-20 Thread Ronald Holshausen
Hi Hermod, The Shale Tiles view handler tries to map the view id to a tile definition by dropping the extension. In my case, I have a tile definition '/charts/measures/measureWizardSelectSystemEvent', so when the view '/charts/measures/measureWizardSelectSystemEvent.jsf' is invoked (in my case as

Re: SV: SV: SV: [Shale] JspTilesViewHandlerImpl and Shale

2005-10-20 Thread Ronald Holshausen
-Opprinnelig melding- Fra: Ronald Holshausen [mailto:[EMAIL PROTECTED] Sendt: 20. oktober 2005 10:26 Til: Struts Users Mailing List Emne: Re: SV: SV: SV: [Shale] JspTilesViewHandlerImpl and Shale Hi Hermod, The Shale Tiles view handler tries to map the view id to a tile definition

Re: SV: SV: SV: [Shale] JspTilesViewHandlerImpl and Shale

2005-10-20 Thread Ronald Holshausen
/frontpage.faces) it will then go to http://localhost:8080/jsp/frontpage.jsp (note webappname is now missing) Hermod -Opprinnelig melding- Fra: Ronald Holshausen [mailto:[EMAIL PROTECTED] Sendt: 20. oktober 2005 11:09 Til: Struts Users Mailing List Emne: Re: SV: SV: SV: [Shale

Re: R: stupid EL evaluation question

2005-10-20 Thread Ronald Holshausen
I've been looking at the JSP 2.0 spec, and this might be a bug. BTW, you don't need the taglib declaration in your web.xml, you can just use the URI in your jsp file and the taglib will be loaded from the jstl jars. On 20/10/05, David Delbecq [EMAIL PROTECTED] wrote: Hi Amleto, am using

Re: [Shale] JspTilesViewHandlerImpl and Shale

2005-10-19 Thread Ronald Holshausen
Hi Hermon, I use tiles with Shale, but Shale uses the stand-alone tiles, so I'm not sure which view handler is used. But it works ok. On 19/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Has anybody successfully made org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl work with

Re: SV: [Shale] JspTilesViewHandlerImpl and Shale

2005-10-19 Thread Ronald Holshausen
Shale has it's own tiles viewhandler that uses tiles stand-alone. And it does allow accessing tiles as pages. On 19/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote on 10/19/2005 09:24:01 AM: Hi Ronald Can you access pages as tiles-definitions? I mean not just

Re: Free Database Graphical Tool

2005-10-12 Thread Ronald Holshausen
SquirrelSQL is another one, and I prefer it to some of the commercial ones. On 12/10/05, James Mitchell [EMAIL PROTECTED] wrote: I use DBVisualizer. It is a swing app that lets you use any JDBC driver. There is a free version available... http://www.minq.se/products/dbvis/ -- James

Re: how to sustain the sanity of the connection pool

2005-10-11 Thread Ronald Holshausen
Another solution is to use a proxing framework (like spring), that opens and closes the connections for you. This way you know that the connection will always be closed after the method call, regardless if there was an error or not. You can also create a base class for all your actions that has a

Re: This is an easy one

2005-10-11 Thread Ronald Holshausen
amp; On 11/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I should know this, but how do I use '' in a tiles xml? I guess this makes me the whipping boy for a while. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: how to sustain the sanity of the connection pool

2005-10-11 Thread Ronald Holshausen
DBCP has some properties to help with connection pool leaks: removeAbandoned, logAbandoned. See http://jakarta.apache.org/commons/dbcp/configuration.html On 11/10/05, emre akbas [EMAIL PROTECTED] wrote: Hi, I have some general questions about connection pooling and exception handling. Struts

Re: [Shale] getClientIdsWithMessages in FacesContext doesn't seem to work..?

2005-10-07 Thread Ronald Holshausen
Hmm, I have used the 1.1_01 and the messages definitly work. Does your bean extend the abstract one from shale (AbstractFacesBean)? Or is the error method one you wrote? On 06/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ronald Holshausen [EMAIL PROTECTED] wrote on 10/06/2005 11:53:08 AM

Re: [Shale] getClientIdsWithMessages in FacesContext doesn't seem to work..?

2005-10-07 Thread Ronald Holshausen
the messages yourself by using context.addMessage(clientId, message). On 07/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ronald Holshausen [EMAIL PROTECTED] wrote on 10/07/2005 05:03:23 AM: Hmm, I have used the 1.1_01 and the messages definitly work. Does your bean extend the abstract one from

Re: [Shale] getClientIdsWithMessages in FacesContext doesn't seem to work..?

2005-10-07 Thread Ronald Holshausen
If you get a later version of shale, you can then use the message functions :-) They just do what your code does anyway. On 07/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ronald Holshausen [EMAIL PROTECTED] wrote on 10/07/2005 11:30:21 AM: aah! There is a bug with the AbstractFacesBean

Re: [Shale] getClientIdsWithMessages in FacesContext doesn't seem to work..?

2005-10-06 Thread Ronald Holshausen
Hi Geeta, Which JSF implementation are you using? And are you running it in a servlet or portlet enviroment? On 06/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I know I should set this problem with error messages down and move on, but.. it's got me intrigued.. So, since I couldn't get

Re: [OT] How much RAM can java use

2005-10-06 Thread Ronald Holshausen
That depends on the JVM you use, and the hardware platform. On 06/10/05, Leon Rosenberg [EMAIL PROTECTED] wrote: Sorry for off-topic, but there are so many experts here! :-) Does anyone know for sure how much RAM I can use with JAVA 1.4 or 1.5? It seems to me, that the VM don't use more than