Re: Nested Messages & Errors tags applicability...

2002-06-21 Thread Arron Bates
> The 'nameList.value' is being used to lookup of the > messages/errors that were stored under this in the > ActionMessages. ActionMessages has an internal Map > and uses a key (normally the property name and there > is also GLOBAL_MESSAGE constant) to store > messages/errors associated with that

JSTL

2002-06-21 Thread Shawn Bayern
Struts developers, I've just announced the final 1.0 release of the Standard Taglib at Jakarta Taglibs (see announcement below). The Standard Taglib is an implementation of the JSP Standard Tag Library (JSTL). Concerning integration between JSTL and Struts in the future, I'm happy to coordinate

NPE from RequestProcessor when logging a warning message with JDK 1.4 logger

2002-06-21 Thread Dennis Doubleday
Windows 2000, JDK 1.4.0, Struts 1.1b We frequently see a NullPointerException (stack trace reproduced below) coming from RequestProcessor, line 491, which is this line from processException: log.warn(getInternal().getMessage("unhandledException", exception.getClas

DO NOT REPLY [Bug 8022] - Need to update the Actions in the actions package for 1.1

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

html:radio.valueProperty

2002-06-21 Thread Ted Husted
I haven't needed one before, but it looks like we could use a tag enhancement for printing a collection of radio buttons. Given a standard LabelValue type collection, this seems to work well enough And just adding a "valueProperty" property could eliminate the scriptlet, so we'd have

Re: Nested Messages & Errors tags applicability...

2002-06-21 Thread David Winterfeldt
The 'nameList.value' is being used to lookup of the messages/errors that were stored under this in the ActionMessages. ActionMessages has an internal Map and uses a key (normally the property name and there is also GLOBAL_MESSAGE constant) to store messages/errors associated with that field. > I

DO NOT REPLY [Bug 10129] - some unit tests for ActionMessage and ActionMessages

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

Re: Sturts config exception question

2002-06-21 Thread James Holmes
Here's the bug report: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8022 -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- James Holmes <[EMAIL PROTECTED]> wrote: > This is because there is a *bug* in the > DispatchAction > in 1.1b1 and the nightly builds. Currently the > D

Re: Sturts config exception question

2002-06-21 Thread James Holmes
This is because there is a *bug* in the DispatchAction in 1.1b1 and the nightly builds. Currently the DispatchAction does not support the new Exceptions facility in Struts 1.1. There is already a bug in Bugzilla for this and I have submitted a patch. I will be applying the patch to the Struts c

DO NOT REPLY [Bug 10129] - some unit tests for ActionMessage and ActionMessages

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10129] - some unit tests for ActionMessage and ActionMessages

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 10129] New: - some unit tests for ActionMessage and ActionMessages

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

Re: Dynamic Property Dispatch

2002-06-21 Thread James Holmes
Daniel, Take a look at the DynaActionForm stuff in Struts 1.1b or the nightly builds. The DynaActionForm can handle dynamic form fields. There has been much discussion about this lately on the user list. Take a look at the archives to find past messages. http://www.mail-archive.com/struts-use

Dynamic Property Dispatch

2002-06-21 Thread Daniel Hinz
Hi, i've a feature request for org.apache.struts.action.ActionForm for a little bit more dynamic dispatch of properties. The current state is that for each property A the corresonding setA / getA methods are invoked upon read/write. There's nothing wrong with that. However i must deploy form fiel

Re: Validator's (fields) on DynamicForm?

2002-06-21 Thread James Holmes
Tomas, These types of questions are best asked on the Struts users mailing list. This list is not meant for these types of questions. [EMAIL PROTECTED] -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Struts-dev Newsgroup <[EMAIL PROTECTED]> wrote: > Subject: Validator's (field

Re: How could I validate the double quotation in struts?

2002-06-21 Thread James Holmes
Chen, These types of questions are best asked on the Struts users mailing list. This list is not meant for these types of questions. [EMAIL PROTECTED] -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Chen Zhi feng <[EMAIL PROTECTED]> wrote: > Can you help me?I meet with a large

Re: Taglib problem

2002-06-21 Thread Nicolas De Loof
You have to build your INPUT Tag "value" attribute with quote delimiters. If you don't use this quotes, first blank character is interpreted as end of the value string. You should try to get used using XHTML notation for your HTML code, with lowercase tags and quoted attribute values: pageContex

Taglib problem

2002-06-21 Thread Kedar Upadhye
Hi, I have something like this in one of my tag classes : pageContext.getOut().print("Group Name"); pageContext.getOut().print(""); The value assigned to str variable is "localhost ipaddress". It shows it correctly if I print it to System.out. But on the html page all it shows

Re: Commons Validator Configuration

2002-06-21 Thread Tomasz Kuczerski
Hello, I have a problem, width using Validator's on Dynamic Form. Can You give me small example, how to work widt Validator's and Dyna(class)? Tomas [EMAIL PROTECTED]

dynamic forms validation problem

2002-06-21 Thread @Basebeans.com
Subject: dynamic forms validation problem From: "Tomas" <[EMAIL PROTECTED]> === Hello, how, to make verification (validation) of dynamic forms ? in struts-config.xml is: . . . . . . in file validator.xml is: in web.xml is:

Validator's (fields) on DynamicForm?

2002-06-21 Thread @Basebeans.com
Subject: Validator's (fields) on DynamicForm? From: "Tomas" <[EMAIL PROTECTED]> === hello, I try using validator's forms and fields on Dynamic forms, it is possible? I have a problem width this. Can You have a simple example? Tomas [EMAIL PROTECTED] -- To unsubscribe, e-mail:

Re: [ANN] Easy Struts 0.3.0 for Eclipse is out [sorry bad list]

2002-06-21 Thread emmanuel.boudrant
I'm sorry, I post (quickyly) this in wrong list ! -Emmanuel - Yahoo! Mail -- Une adresse @yahoo.fr gratuite et en français !

[ANN] Easy Struts 0.3.0 for Eclipse is out

2002-06-21 Thread emmanuel.boudrant
Easy Struts v0.3.0 just released. For the moment this version is only for Eclipse IDE. The aim of this project is to provide a collection of tools integrated with Eclipse 2.0, in order to facilitate the development of a web project based on the MVC2 Jakarta Struts framework. Changes: - v0.3.0

How could I validate the double quotation in struts?

2002-06-21 Thread Chen Zhi feng
Can you help me?I meet with a large trouble. In validation.xml,I want to describe a constant as following to prevent user input invalide characters in file path: filepath ^[^\/;,\*\?\|<>]*$ But I'm not able to include the double quotation( ") in it,althou

Re: Struts and iWS 4.1

2002-06-21 Thread Carmen FLOREA
Hi Adolfo In fact, I am working in France (Paris) not in Spain, and here there are already a lot of companies interested to implement this framework. The name of my company is AUBAY, and I guess that the framework is going to be used also by our subsidiaries companies (Italy, Spain, Benelux). Ca

DO NOT REPLY [Bug 10106] New: - html:optionscollection needs a 'filter' property

2002-06-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

Re: Struts and iWS 4.1

2002-06-21 Thread Adolfo Miguelez
Hi Carmen, could you please tell me which company is using is Struts in Spain. I am making a research about the impact of this framework in our country and its future. Thanks in advance, Adolfo. >From: "Carmen FLOREA" <[EMAIL PROTECTED]> >Reply-To: "Struts Developers List" <[EMAIL PROTECTED]