Re: Problem of applet interact with cookies.

2002-12-28 Thread vivek tiwari
Hi Feng, You can use Netscape Live Connect to call any JavaScript function from the java applet. Then set the cookies in this javascript function. e.g. Applet code: JSObject myObject = JSObject.getWindow(); myObject.call("setCookie()","HELLO_COOKIE"

Problem of applet interact with cookies.

2002-12-23 Thread SUBSCRIBE EJB-INTEREST J.H,Feng
Hi, Hello,My program use a applet,the applet should be able to set and get cookies at client. how can I do it? or a example,please?thanks. J.H,Feng === To unsubscribe: mailto [EMAIL PROTECTED] with body

How to automatically accept all the cookies which server want to set to my computer

2002-05-22 Thread Cutty
cookies disappear but I could't get correct response from the program . Thanks! èº{.nÇ+‰·¦j)m¢X¬¶Ç«¾6¯j˧r‰°ŠØ[¡Ü¬Šè}òR<ƒSLZ+v(²ÙšŠ[h–+-±êڲéÜ¢l"¶èw+´” ÔÄDD“ „I4¨™êޕëڞÑ@BÊ'%#ÿIêï•ëlq©Ûyú.Ö­†Ûiÿö«r¯zÈÚ½«.Ê&þ;)Š{^­ë-†Ù¥†ÛiÿøÚ½«.Ê&þšèvç-³øì§÷Úªf

Re: Cookies, sessions and proxy servers

2002-04-26 Thread Gary Noone
Adrian-- Thanks for this. We also encountered the same problem with cookies and IE6 -- it seems the default is cookies off. Basically I now believe that the problem is with simple href links between pages. I suspect these should be using encodeRedirectUrl in order to get the ;jSessionid=blah

Re: Cookies, sessions and proxy servers

2002-04-25 Thread Adrian Janssen
browsers and applied some security patch, and it only affected newly deployed intranet sites - existing ones were fine. Cheers Adrian > -Original Message- > From: Gary Noone [SMTP:[EMAIL PROTECTED]] > Sent: 25 April 2002 12:15 > To: [EMAIL PROTECTED] > Subject: Cookie

Cookies, sessions and proxy servers

2002-04-25 Thread Gary Noone
Hi all, Has anybody encountered a problem with proxy servers stripping cookies and therefore invalidating the session? We have deployed an application, and a number of customers complained that they were unable to login. On closer examination we found that the session object isNew() method

Re: Checking prior registration with initial JSP page (cookies?)

2002-04-11 Thread Chris Pratt
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 12:26 PM Subject: Re: [JSP-INTEREST] Checking prior registration with initial JSP page (cookies?) > Yes, the request does exist (that's why it's in quotes), but it's not > picking up the

Re: Checking prior registration with initial JSP page (cookies?) [SOLVED]

2002-04-11 Thread Baker, Robert E
The problem seems to have been the fact that I wasn't setting the path of the cookie. I was setting the domain and the age, but not the path. I have everything working great now. Thanks to all that provided their comments and suggestions. Bob ==

Re: Checking prior registration with initial JSP page (cookies?)

2002-04-10 Thread Baker, Robert E
Why make them click on a link if they don't have to? :-) The DevShed Forums (http://forums.devshed.com/) is a perfect example of what I'm trying to accomplish. Bob -Original Message- From: Brian P Bohnet [mailto:[EMAIL PROTECTED]] "...but the JSP can't get c

Re: Checking prior registration with initial JSP page (cookies?)

2002-04-10 Thread Baker, Robert E
Yes, the request does exist (that's why it's in quotes), but it's not picking up the cookies for some reason. I know the cookies are there, because I display them for debugging purposes after successful registration. Plus I verified the cookie file is in the "Cookies"

Re: Checking prior registration with initial JSP page (cookies?)

2002-04-10 Thread Chen, Gin
PM To: [EMAIL PROTECTED] Subject: Checking prior registration with initial JSP page (cookies?) I am working on logins/registrations using just JSP, Servlets and JDBC. By default, when a user gets to the home page (JSP), they can (currently) either Log In or Register. Everything with registerin

Re: Checking prior registration with initial JSP page (cookies?)

2002-04-10 Thread Brian P Bohnet
"...but the JSP can't get cookies from the implicit response object (I'm assuming) because the request doesn't "exist" yet" Am I wrong thinking that most sites you see on the Internet just have the user click on an "Already registered" link t

Checking prior registration with initial JSP page (cookies?)

2002-04-10 Thread Baker, Robert E
with no problem, but I'm not sure of the best way to handle the check to see if they are already registered. When they create a new account, I create a cookie with the appropriate information in it (which also works), but the JSP can't get cookies from the implicit response object (I&

cookies

2002-02-25 Thread JavaSoft
anyone knows any tutorial about cookies and how i control cookies i my jsp/servlet page ? I wanna make my own session manager and handle all tasks about session and not gonna using http session that can find in a servlet engine. Any one has tried to make own session manager ? === thx, a Java

Cookies

2002-02-15 Thread cbarnes
I have a JSP page that sets a cookie. Is there anyway I can find out if the user refuses to accept the cookie or if the browser has cookies disabled? Thanks, Catharine === To unsubscribe: mailto [EMAIL PROTECTED] with body

Problem with Cookies in IE

2002-01-18 Thread Jay Wright
I'm having a problem setting cookies. I am using some very simple code to set my name and email address in a cookie. This works for certain versions of Explorer and most all versions of Netscape (at least given the test machines I have available). Unfortunately it doesn't work f

Cookies not working!

2001-10-24 Thread Paul Stearman
I am using the following code as a jsp login page. On pressing the Login button the cookie should be created but its not. Any ideas?