Re: form class isn't populated

2004-03-12 Thread amr
Here's a link to a post that may have your solution. It sounds like problem we discussed last week. Basically it's an IE bug and there's a patch for it. This post has a link to an description of the problem and how to get the fix, etc.

Re: SV: SSL and actionforms

2004-03-09 Thread amr
Are you accessing the app through InternetExplorer? We had a production app running on just WAS 5 Express (no apache) with SSL with no problems Then the users upgraded their browsers in the beginning of Feb, and they started having problems. It appears that sometimes POST forms don't submit

Re: SSL and actionforms

2004-03-09 Thread amr
FL maybe http://www.modwest.com/help/kb.phtml?cat=2qid=260 This works, thanks so much! I thought I had googled the subject to exhaustion I dont know how I missed it... feeling a little dumb... Franck

Re: Starting time-consuming jobs early

2004-03-01 Thread amr
Quartz might work for you http://www.quartzscheduler.org Andy Engle [EMAIL PROTECTED]

Re: Html:Form input not being returned

2004-02-17 Thread amr
is this problem intermittent (sometimes the for works)? are you using SSL? [EMAIL PROTECTED] yscapital.com

Re: global data objects -- best practices?

2004-02-04 Thread amr
I use a plugin (implements org.apache.struts.action.PlugIn) and put things I need application-wide in the ServletContext. [EMAIL PROTECTED]

Re: AUTO {ICICICARE#005-217-818}[OT] Distribute a Struts Application on CD ??

2004-01-29 Thread amr
Can something be done to stop these messages? Thanks, Amy NRI Cell [EMAIL PROTECTED]

Re: messages 101

2003-07-28 Thread amr
in your html:message tag you need to set the message property to true. You'd end up with something like this html:messages id=message message=true bean:write name=message/br /html:messages

Re: AW: Double log output from commons-logging with log4j

2003-06-19 Thread amr
You are assigning your console appender twice. log4j.rootLogger=WARN,Console log4j.logger.org.apache.struts.action.RequestProcessor=DEBUG,Console log4j.logger.app=DEBUG,Console log4j.logger.app will inherit the appender from rootLogger, so you can just do log4j.rootLogger=WARN,Console