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

2004-01-13 Thread Chris Ruegger
login stuff here Regards, Dipak Parmar -Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 9:53 AM To: Struts Users Mailing List Subject: handling form based authentication w/ remember-me cookie

handling form based authentication w/ remember-me cookie

2004-01-12 Thread Chris Ruegger
I am using Struts and building a logon page to do Form-based authentication under Tomcat. I want to also have a checkbox for the user to check that says remember me so that I can send them a cookie. I'm not sure how to intercept the form values because I have to post to j_security_check. How can

tiles: some questions

2002-12-04 Thread Chris Ruegger
Question 1: I'm setting up an app to use Tiles. I'm using tiles definitions in an XML file and I successfully start at my welcome page, which is inserted into the master template. Now suppose this page has direct links to other JSPs, like this: html:link page=nextpage.jspnext page/html:link

Does html:form tag post to control servlet using encodedURL?

2002-11-24 Thread Chris Ruegger
I'm getting routed to the wrong server when I use html: form action=/myAction in a weblogic clustered environment. Does the html:form tag POST to the Struts servlet using response.encodeURL as the URL posted to? How should I code my html:form tags in JSPs in clustered environment to ensure the

disabling cookies in IE6.0

2002-11-24 Thread Chris Ruegger
I can't find the panel in IE6.0 to disable cookies. How do I turn of cookies with this version of the browser? I want to test URL re-writing. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Losing session when POSTing in weblogic cluster

2002-11-23 Thread Chris Ruegger
Situation: Clustered web application in Weblogic using Struts. It looks like Struts automatically appends the sessionid when I use tags like html:link page=... tag or when I invoke the ActionMapping.findForward() call. However, when I have an HTML form and I POST to an action, it looks like the

Synchronization Token for forms - any coding required?

2002-08-16 Thread Chris Ruegger
I have read that Struts uses the Token Synchronization pattern to detect and avoid duplicate form submissions. Question: Is all of this handled transparently for me or do I need to code some logic in the perform() method to enable this and/or ignore a duplicate submission? Thanks