RE: handling form based authentication w/ remember-me cookie

2004-01-13 Thread Parmar, Dipakkumar
guration format (except that you declare the constraints in a separate config file rather than web.xml). -Max ----- Original Message - From: "Parmar, Dipakkumar" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, January 12, 200

RE: handling form based authentication w/ remember-me cookie

2004-01-12 Thread Parmar, Dipakkumar
Hi Chris, You can do this using Servlet Filter. What you need to do is write postLoginFilter that maps to the j_security_check url. In doFilter method, you can write your post login code after j_security_check done is work. Something like: public void doFilter(.) //

RE: JAAS Login using LoginAction...

2003-09-22 Thread Parmar, Dipakkumar
http://www.theserverside.com/resources/article.jsp?l=JAAS -Original Message- From: Keith Pemberton [mailto:[EMAIL PROTECTED] Sent: Sunday, September 21, 2003 11:50 PM To: [EMAIL PROTECTED] Subject: JAAS Login using LoginAction... I'm having a bit of trouble trying to login to a Database

RE: [JSTL] c:out and DynaBeanClass

2002-10-29 Thread Parmar, Dipakkumar
Hi flare, I don't know how you got c:out working with DynaBean but seems like that JSTL doesn't support DynaBean. Here is the link http://nagoya.apache.org/eyebrowse/ReadMsg?listName=taglibs-user@;jakarta.apa che.org&msgId=367697. I also looked at the source code and couldn't find anything relate

RE: [JSTL] c:out and DynaBeanClass

2002-10-29 Thread Parmar, Dipakkumar
Hi flare, It doesn't work for me. I'm getting error org.apache.jasper.JasperException: An error occurred while evaluating custom action attribute "value" with value "${flare.ciccio}": Unable to find a value for "ciccio" in object of class "org.apache.commons.beanutils.BasicDynaBean" using operato

RE: [JSTL] c:out and DynaBeanClass

2002-10-28 Thread Parmar, Dipakkumar
sometimes I need to display field value from my DynaValidatorForm based on user role and some criteria. For example and sometimes Let me know if you have any workaround, right now I'm using normal bean write tag. I have converted all struts tag to struts-

[JSTL] c:out and DynaBeanClass

2002-10-27 Thread Parmar, Dipakkumar
Hello, Obviously c:out tag doesn't work with DynaBeanClass and we haven't converted bean:write to use EL syntax. In this we do need to convert bean:write to use EL syntax. Deepak -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: DynaActionForm and ImageButtonBean

2002-10-10 Thread Parmar, Dipakkumar
Me too... It seems like that (after looking code) struts never instantiated ImageButtonBean class while populating DynaActionForm properties. Deepak -Original Message- From: kirusshna [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 2:17 PM To: Struts Users Mailing List Subje

DynaValidatorForm with bean property

2002-10-09 Thread Parmar, Dipakkumar
Hi, I search the archive but could not find the answer. I'm getting IllegalArgumentexception when struts try to populate the DynaValidatorForm properties. Jsp File snippets: Blah Blah--- snippets from struts-config.xml file ImageButtonBean.java pu

RE: LookupDispatchAction and DynaValidator

2002-07-30 Thread Parmar, Dipakkumar
Hi scott, Yes, I'm using html:cancel. I just test your solution and works fine... Thanks Deepak -Original Message- From: Scott Carlson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 11:48 AM To: Parmar, Dipakkumar Cc: [EMAIL PROTECTED] Subject: RE: LookupDispatchActio

LookupDispatchAction and DynaValidator

2002-07-30 Thread Parmar, Dipakkumar
Hello everyone, I have subclass LookUpDispatchAction and provided implementation for getKeyMethodMap like protected Map getKeyMethodMap() { Map map = new HashMap(); map.put("button.add", "add"); map.put("button.delete", "delete"); map.put("button.save", "save

RE: Confusion with Filter: please help

2002-05-02 Thread Parmar, Dipakkumar
--- WEB.xml CheckSignOnFilter com.cgmp.ccm.web.logon.CheckSignOnFilter signon_url logon.do signon_forward index.jsp CheckSignOnFilter *.do -- Filter Class public class CheckSignOnFilter implements Filter { priv

RE: How do we use sevlet filter with actionservlet?

2002-05-01 Thread Parmar, Dipakkumar
Filter class for login authectication and session validation. i would really appreciate. Thanks >From: "Parmar, Dipakkumar" <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL

RE: How do we use sevlet filter with actionservlet?

2002-05-01 Thread Parmar, Dipakkumar
Hi vivek, You just need to add FILTER configuration in your WEB.XML file. You don't need to do anything in struts configuration. CheckSignOnFilter com.cgmp.ccm.web.logon.CheckSignOnFilter CheckSignOnFilter *.do Deepak -Original Message- From: vivek shriva

RE: Validating indexed properties?

2002-05-01 Thread Parmar, Dipakkumar
Hi I'm having the same problem. Please let me know if you find a solution. Thanks Deepak -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 8:40 PM To: [EMAIL PROTECTED] Subject: Validating indexed properties? Subject: Validating indexed

RE: DynaActionForm example

2002-04-30 Thread Parmar, Dipakkumar
> > > > > > > > > > > > > LogonAction.java > > ... > ... > // Validate the request parameters specified by the user > ActionErrors errors = new ActionErr

DynaActionForm example

2002-04-29 Thread Parmar, Dipakkumar
can anyone point me the DynaActionForm example? i could not able to find it. Tx in advance. Deepak -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Validator help

2002-04-20 Thread Parmar, Dipakkumar
validation cumbersome and unpredictable, so I just wrote a custom tag to validate my input forms. If anyone is interested, I'll post the code. Mark -Original Message----- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 5:48 PM To: Struts Users Maili

RE: Validator help

2002-04-19 Thread Parmar, Dipakkumar
002 5:58 PM To: Struts Users Mailing List Subject: RE: Validator help I am having issues with my validation too. Did you initialize the validator in the web.xml file? -Original Message- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 2:48 PM To: Struts

Validator help

2002-04-19 Thread Parmar, Dipakkumar
Hi, I'm having really hard time to figure out why the validator is not working. Here is the summary what i did: 1. I tried to produce debug/error messages for org.apache.commons.validator but no luck. (see thread "How can i turn on debug for org.apache.commons.validator") 2. I override

RE: How can i turn on debug for org.apache.commons.validator

2002-04-19 Thread Parmar, Dipakkumar
dator I have debug set to 10 and it is working all too well in JRun. Mark -Original Message- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 3:18 PM To: Struts Users Mailing List Subject: How can i turn on debug for org.apache.commons.validator I&#

RE: How can i turn on debug for org.apache.commons.validator

2002-04-19 Thread Parmar, Dipakkumar
, 2002 3:21 PM To: 'Struts Users Mailing List' Subject: RE: How can i turn on debug for org.apache.commons.validator I have debug set to 10 and it is working all too well in JRun. Mark -Original Message----- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19,

How can i turn on debug for org.apache.commons.validator

2002-04-19 Thread Parmar, Dipakkumar
I'm having problem with validator, so before ask to list i would like to try myself to find what's going wrong. For this i would like to turn on debug for validator. i tried setting debug level >0 in ActionServlet mapping in web.xml but didn't help. Any help? Regards, Deepak -- To unsubscribe,