How do I get a cookie under a different path within the same doma in with bean:cookie tag?

2004-03-02 Thread Lee, Yau-Pang
Is it possible to retrieve the cookie at: www.abcd.com/cookie/path from www.abcd.com/another/path - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How do I get a cookie under a different path within the same domain with bean:cookie tag?

2004-03-02 Thread Dhaliwal, Pritpal (HQP)
path within the same domain with bean:cookie tag? Is it possible to retrieve the cookie at: www.abcd.com/cookie/path from www.abcd.com/another/path - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

RE: How do I get a cookie under a different path within the same domain with bean:cookie tag?

2004-03-02 Thread Lee, Yau-Pang
) [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 3:00 PM To: 'Struts Users Mailing List' Subject: RE: How do I get a cookie under a different path within the same domain with bean:cookie tag? Some cookie spec says: The path attribute is used to specify the subset of URLs in a domain for which

bean:cookie tag question

2003-02-04 Thread Konstantina Stamopoulou
Hello all, I'm wondering if any of U that have used the bean:cookie tag had any problems. I'm facing the following problem. I have created a cookie in one of my Action classes with the following code: Cookie logged=null; logged = new Cookie(username,username); logged.setMaxAge(300

bean:cookie tag

2002-02-28 Thread @Basebeans.com
Subject: bean:cookie tag From: zb cong [EMAIL PROTECTED] === what does bean:cookie tag mean?--write a cookie or read a cookie? thank you very much ! -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Interesting problem with bean:cookie tag

2001-11-20 Thread Juan Alvarado
Hello Everyone: I have recently posted some messages regarding a class cast exception I was getting when using the multiple=true attribute with the bean:cookie tag. To resolve this problem in my environment (Visual Age for Java and Tomcat 3.2), I changed org.apache.struts.taglib.bean.CookieTei

Re: bean:cookie tag problem

2001-05-16 Thread Martin Cooper
The bean:cookie tag defines a bean of type javax.servlet.http.Cookie (or an array of them if the 'multiple' attribute is specified). You'll need to access the 'value' property, as you are doing in the scriptlet code. Also, you need to use different quote characters to avoid conflicts. Try