I was having similar problem. I'm assuming that you use localhost to test. I
was told that there's a glitch with cookies when you use short host name
such as localhost. Recommendation was to add an entry in your hosts file (if
your're using Windows) such as:

127.0.0.1       inside.localhost.com

and then reference Jetspeed as follows:
http://inside.localhost.com:8080/jetspeed. This doesn't make sense to me but
it works. Hope this helps.

Best regards,

Mark C. Orciuch
Next Generation Solutions, Ltd.
e-Mail: [EMAIL PROTECTED]
web: http://www.ngsltd.com


-----Original Message-----
From: Chris Widhelm [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 02, 2002 8:33 AM
To: Jetspeed-User (E-mail)
Subject: Setting cookies


I am having problems setting cookies in a portlet that I have created. The
portlet extends AbstractPortlet.  I have tried a number of different ways.

        runData.getCookies().set( "name", "value", 1500 );

                or

        runData.getCookies().add( "name", "value" );

                or

        HttpResponse response = runData.getResponse();
        Cookie cookie = new Cookie( "name", "value" );
        cookie.setMaxAge( 1500 );
        response.addCookie( cookie );

None of these techniques seem to work.  Does anyone know how to set cookies
within Jetspeed?

Thanks,

Chris

--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to