Hi,
I use Linux Apache Tomcat Server. I  did write a jsp program
sucessfully adds a cookie  to my browser which is Netscape.
It is perfect  also in Microsoft, but when I try to bring data from
cookie it does not returns any cookie data from Netscape but same code
returns in Microsoft. Do you think this is a bug or just some sort of
set up problem in Netscape
Could you Please help.
Cookie cookies [] = request.getCookies();
    for (int i=0; i < cookies.length; i++)
    {
        //Cookie thisCookie =  cookies [i];
        if ( cookies [i].getName().equals("GCIDENT") )
        {
        //if ( cookies [i].getValue() != null )
        //{
        data += cookies [i].getValue();
        //data += cookies.length;
        /*
          Cookie loginCookie = new Cookie("login", user_id);
          loginCookie.setDomain(url);
          loginCookie.setPath("/");
          response.addCookie(loginCookie);*/
       //}


Turgut
www.ebizq.net


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to