[Apache Struts Wiki] New: WebSphere

2004-05-05 Thread dev
Date: 2004-05-05T02:22:14 Editor: 212.103.166.26 Wiki: Apache Struts Wiki Page: WebSphere URL: http://wiki.apache.org/struts/WebSphere no comment New Page: Describe WebSphere here.klnlkjblkblklknl - To

[GUMP@lsd]: jakarta-struts/jakarta-struts failed

2004-05-05 Thread Stefan Bodewig
/antlr.jar -Dcommons-lang.jar=/data3/gump/jakarta-commons/lang/dist/commons-lang-20040505.jar -Djakarta-oro.jar=/data3/gump/jakarta-oro/jakarta-oro-20040505.jar -Djdk.version=1.4 -Dcommons-fileupload.jar=/data3/gump/jakarta-commons/fileupload/target/commons-fileupload-20040505.jar -Dcommons

[GUMP@lsd]: jakarta-struts/jakarta-struts failed

2004-05-05 Thread Stefan Bodewig
/antlr.jar -Dcommons-lang.jar=/data3/gump/jakarta-commons/lang/dist/commons-lang-20040505.jar -Djakarta-oro.jar=/data3/gump/jakarta-oro/jakarta-oro-20040505.jar -Djdk.version=1.4 -Dcommons-fileupload.jar=/data3/gump/jakarta-commons/fileupload/target/commons-fileupload-20040505.jar -Dcommons

DO NOT REPLY [Bug 22207] - serialization and deserialization

2004-05-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=22207. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Struts-Faces and Version Dependencies

2004-05-05 Thread Niall Pemberton
I just attached a patch to Bug[22207] which changes the method signiture back to its original form. http://issues.apache.org/bugzilla/show_bug.cgi?id=22207 Niall - Original Message - From: Niall Pemberton [EMAIL PROTECTED] To: Struts Developers List [EMAIL PROTECTED] Sent: Wednesday,

[Apache Struts Wiki] Updated: StrutsConsultants

2004-05-05 Thread dev
Date: 2004-05-05T13:14:41 Editor: 80.63.142.210 Wiki: Apache Struts Wiki Page: StrutsConsultants URL: http://wiki.apache.org/struts/StrutsConsultants no comment Change Log: -- @@ -33,6 +33,8 @@

DO NOT REPLY [Bug 28793] - RequestUtils.computeUrl() produces double-slashed (//) HREF for html:link tags.

2004-05-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=28793. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Struts-Faces and Version Dependencies

2004-05-05 Thread Joe Germuska
At 1:53 PM -0700 5/5/04, Craig McClanahan wrote: Thanks Niall. The original reason for grabbing the module prefix was to make the cache keys unique, so that two modules that both defined a form bean named foo (but perhaps with different properties) would not clash. The approach you recommend

Struts framework updating session scoped actionForm into session

2004-05-05 Thread mmesler
If you have a session scoped ActionForm, when does the struts framework create/update the ActionForm in session? Is it possible to make the framework update the ActionForm into session with every call to the Action, or maybe just when data has changed? Does the framework always use the

Struts help

2004-05-05 Thread Chitta Ranjan Mishra
Dear Sir, Presently I am working on Struts project... I am struggling with one problem since last 2 days regding html:checkbox in Struts. My problem is while inserting data into the database thru a checkbox field... either check or uncheck the checkbox proper value is inserted into the

RE: Struts help

2004-05-05 Thread Edgar P Dollin
The checkbox is not returned as a parameter. You are using session based actionforms which only update fields for which parameters are returned. Either use request based parameters or use the 'reset' method to clear your checkbox fields. Edgar -Original Message- From: Chitta Ranjan

RE: Struts help

2004-05-05 Thread Qayyum, Kashif
If a checkbox is not checked, no value is passed to the server. You wont get a null value, you just wont get anything. You need to keep a local list of all true/false values on the server, then update that list with what you get from the checkbox field from the actionForm and use that to update