Re: Browser History by HTTP-REFERER

2006-08-08 Thread Thomas Joseph
+1 - Original Message - From: Monkeyden [EMAIL PROTECTED] I have used Bart's idea (custom tag) with success. Also, if one were set on using tiles, you could drop this custom tag into a layout definition for pages requiring a referer and define another layout for pages which don't.

Struts 1.3

2006-08-08 Thread Jean-Marie Pitre
Hi, I would like to know if struts 1.3 is stable and where download it ? I want to use variables in Resource Bundles with validator 1.2 and it seems does not work with struts 1.2.x accordin to the wiky : http://wiki.apache.org/jakarta-commons/ValidatorVersion120 Jean-Marie.

Re: Struts 1.3

2006-08-08 Thread Niall Pemberton
Struts 1.3.x doesn't yet have a GA (i.e. production) quality rating - However there is a Struts 1.3.5 test build which is currently being voted on: http://article.gmane.org/gmane.comp.jakarta.struts.devel/45152 ...and this will probably get at least a beta label if not a GA label. You can

Validator1.3 Struts 1.3

2006-08-08 Thread Jean-Marie Pitre
Hi, I'm testing my application with struts 1.3 and validator 1.3. I've got this error: ValidatorResources not found in application scope under key org.apache.commons.validator.VALIDATOR_RESOURCE I don't know why because the same application worked well with validator 1.1 and struts 1.1 Have

dependent drop down lists

2006-08-08 Thread sdeep123 anand
Hi, I have a dependent select boxes/ dropdown boxes. It should be implemented through ajax. Can you point me to similar examples? Thanks - See the all-new, redesigned Yahoo.com. Check it out.

[OT] Re: Unlock Your Mind's Hidden Power, Today...

2006-08-08 Thread Christopher Goldman
On Mon, 2006-08-07 at 01:12 -0400, Monkeyden wrote: or is like transferring Ted himself, as data? Only if he implements the Serializable or Externalizable interfaces. Chris -- Christopher D. Goldman [EMAIL PROTECTED] - To

Re: [OT] Re: Unlock Your Mind's Hidden Power, Today...

2006-08-08 Thread Monkeyden
Now that gave me a chuckle. On 8/8/06, Christopher Goldman [EMAIL PROTECTED] wrote: On Mon, 2006-08-07 at 01:12 -0400, Monkeyden wrote: or is like transferring Ted himself, as data? Only if he implements the Serializable or Externalizable interfaces. Chris -- Christopher D. Goldman [EMAIL

problem with DispatchAction in ActionForward Path

2006-08-08 Thread Dean, Michael
I have the following def in my struts-config: action path=/DayViewShow type=gov.wa.courts.caps.presentation.dayview.action.DayViewAction name=DayViewForm scope=session attribute=dataEntryForm parameter=method /action action path=/AdvancedFilter

Stream ended unexpectedly

2006-08-08 Thread Jon Koberstein
We are using struts to develop an online classifieds site. While uploading pictures for the classified a few clients get the error message given below. We spoke briefly with one of the clients that is having this problem and he was using a DSL connection and uploading a picture of size 200k.

validation of two form properties

2006-08-08 Thread fea jabi
have form properties a and b have to validate that property b is an integer, greater than 0 and also greater than form property a. field property=b depends=integer,validwhen msg name=integer key=errors.notvalid/ msg name=validwhen key=errors.notvalid/

Re: Stream ended unexpectedly

2006-08-08 Thread Monkeyden
How big is the file? On 8/8/06, Jon Koberstein [EMAIL PROTECTED] wrote: We are using struts to develop an online classifieds site. While uploading pictures for the classified a few clients get the error message given below. We spoke briefly with one of the clients that is having this problem

Re: Stream ended unexpectedly

2006-08-08 Thread Monkeyden
This is where I was going with it: Search for maxFileSize. Default is 250M, which sounds big. http://struts.apache.org/1.2.x/userGuide/configuration.html#struts-config On 8/8/06, Monkeyden [EMAIL PROTECTED] wrote: How big is the file? On 8/8/06, Jon Koberstein [EMAIL PROTECTED] wrote:

Re: html:form / styleId in xhtml mode

2006-08-08 Thread Laurie Harper
I suspect this restriction is there to support the validator. XHTML mandates the use of 'id' in place of 'name' in various situations. That said, you can still predict what the 'id' value will be; in this case, it will take the name of the FormBean associated with the form. So your AJAX calls

Re: displaying Date, BigDecimal as html:text

2006-08-08 Thread Laurie Harper
Puneet Lakhina wrote: Also, if the user leaves the html:text field for BigDecimal as blank, I get an exception (string-BigDecimal conversion exception). So, is the solution to this is to make all formbean properties to be String type? you coud do something like BigDecimal

Re: Thread-safe MessageResources[Factory]

2006-08-08 Thread Laurie Harper
Scott Van Wart wrote: I'm implementing my own MessageResources and MessageResourcesFactory-derived classes. Do these need to be thread-safe, specifically, the 'String MessageResources.getMessage( Locale locale, String key )'? The factory probably doesn't; I would expect it to be called once