RE: Newbie question - JSP text box formatting

2006-07-06 Thread Albrecht Leiprecht
You could try something like this <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"; %>  EUR Rgds albi -Original Message- From: Pillay, Kiren KN [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 4:33 PM To: user@struts.apache.org Subject: Newbie question - JSP text box f

RE: Req on

2006-05-23 Thread Albrecht Leiprecht
I use Javawebparts Ajax Tags for exactly that purpose ;) http://javawebparts.sourceforge.net/ Rgds Albi -Original Message- From: The Jasper [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 1:29 PM To: Struts Users Mailing List Subject: Re: Req on Hi, I'm not quite sure how you'

RE: Validation Problem

2006-05-21 Thread Albrecht Leiprecht
>If fails, because the test line for validwhen is not wellformed, because of >this comparation >(*this* < 300) It works fine with a check for greaterThan, but it fails with the above lowerThan... >Any Idea how I could change it to make it work ?? >Rgds >Albi I changed this (*this* < 300) To

Validation Problem

2006-05-21 Thread Albrecht Leiprecht
Hi, I am trying to check one of my forms for valid data. To do so, I check the fields with a validation-main.xml Everything seems to work as expected. Until I added this field . min0 max999 test ((

RE: [Sunday night 2a.m.] too much traffic

2006-04-01 Thread Albrecht Leiprecht
cancel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[Sunday night 2a.m.] too much traffic

2006-04-01 Thread Albrecht Leiprecht
Up to now, I was a somewhat quiet reader of the list. Is it still about Struts in here ? Looking at the last 300 posts make me wonder if it still is Thanks to all the ppl in here that have posted solutions to struts programming challenges. You all have helped me a lot ... Rgds Albi -Ori

domain missing from html:rewrite html:link etc

2005-08-20 Thread Albrecht Leiprecht
On Sun, 24 Jul 2005 08:17:43 -0700 Mark Benussi asked a question ...When using html:link (A struts tag library) and the other associated tags (rewrite etc) the domain is missing... I moved my pages today too... same effect ... What was the reason in your case, and what did help solving this is

RE: weird message problem

2005-08-14 Thread Albrecht Leiprecht
Shouldn't it be something like or instead? Rgds albi -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Werner Punz Sent: Saturday, August 13, 2005 10:32 PM To: user@struts.apache.org Subject: weird message problem Hi I am trying to add a simple error handler to a

RE: Struts & SSL (SSLEXT)

2005-08-13 Thread Albrecht Leiprecht
I will answer myself to have answers in the mailing list archive for the ones to come after me ;) >do I understand that correct, that in order to use SSLEXT, I have to use a >specialized Version of RequestProcessor? Yes, as this RequestProcesser checks in processPreprocess if the current request

Struts & SSL (SSLEXT)

2005-08-13 Thread Albrecht Leiprecht
Hi all, do I understand that correct, that in order to use SSLEXT, I have to use a specialized Version of RequestProcessor? What if I use Tiles? Or worse, what if I extended TilesRequestProcessor (processRoles)? Does that mean I'm screwed now? Any other ways/means of using SSL (selectively)?

RE: Conditionally show values in Tile (c:when?)

2005-08-11 Thread Albrecht Leiprecht
7 PM To: Struts Users Mailing List Subject: Re: Conditionally show values in Tile (c:when?) Greg Reddin wrote: > On Aug 11, 2005, at 9:30 AM, Albrecht Leiprecht wrote: > >> Just did the following: >> <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>

RE: Conditionally show values in Tile (c:when?)

2005-08-11 Thread Albrecht Leiprecht
Just did the following: <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %> <% int errmsglength = 5; %> Further down: ... One would expect to see the 3 dots ... but nada ... And yes ...the taglib is loaded in the first line of the file ...Funky ...isn't it ? I'm using 5.0.x Tomcat, 1.2.7 S

RE: Conditionally show values in Tile (c:when?)

2005-08-11 Thread Albrecht Leiprecht
gt; <% } else { %> <% } %> Voila...works as expected ... BTW: c:when test="${true}"> doesn't work either (just checked) Rgds albi -Original Message- From: Albrecht Leiprecht [mailto:[EMAIL PROTECTED] Se

RE: Conditionally show values in Tile (c:when?)

2005-08-11 Thread Albrecht Leiprecht
Let me rephrase the question Is there any limitation on using JSTL in Tiles ??? Rgs albi -Original Message- From: Albrecht Leiprecht [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 3:28 PM To: 'Struts Users Mailing List' Subject: Conditionally show values in Ti

Conditionally show values in Tile (c:when?)

2005-08-11 Thread Albrecht Leiprecht
Hi all, I have a tile that shows my default input row in a form. In case that I put a value in FieldError, I want it to show it the errorMessage in red color. So far so good. The values get to the tile (formRow)... and there it's getting somewhat tricky. After reading a number of explanations, I u

RE: Validator...the 1001st question...

2005-08-10 Thread Albrecht Leiprecht
The mentioned chapter is from the book Struts in Action http://java.sun.com/developer/Books/javaprogramming/struts/ whereof two sample chapters are at the above location ;) Definitely the book I'm going to get on my next trip to the city -Original Message- From: Albrecht Leip

RE: Validator...the 1001st question...

2005-08-10 Thread Albrecht Leiprecht
http://java.sun.com/developer/Books/javaprogramming/struts/struts_chptr_12.p df says : 12.4.3 Custom validator messages A field can also specify a custom validation message to use instead of the default. This often happens when the mask validator is being used, so you can explain what pattern the

RE: Validator...the 1001st question...

2005-08-10 Thread Albrecht Leiprecht
) Stopped scratching his head albi -Original Message- From: Albrecht Leiprecht [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 10, 2005 9:23 PM To: 'Struts Users Mailing List' Subject: Validator...the 1001st question... Hi all, I'm curious ... shouldn't it be po

Validator...the 1001st question...

2005-08-10 Thread Albrecht Leiprecht
Hi all, I'm curious ... shouldn't it be possible to override the default error message assigned to a validator rule ? Here's the example: validator.xml [...] test (*this* != "u") [...] validator-rules.xml [...] [...] I understand, t

RE: Login with authentication from database

2005-08-08 Thread Albrecht Leiprecht
If you need more information about JAAS, I found this : Using JAAS with Struts - A simple guide to get it up and running http://www.jroller.com/page/tomdz/20041215 and this Struts, JAAS, Tomcat: getting acquainted http://technology.amis.nl/blog/index.php?p=259 extremely helpful. However, using