Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Toolkit - deleting cookies?
Jeremy wrote:
> Hi everyone... can any of you shed some light on why the following
> doesn't remove the cookie?
>
> Here is the simple procedure:
>
> create or replace procedure lo
> is
> BEGIN
> owa_util.mime_header('text/html', false);
> owa_cookie.remove('ccp_user100292','102210:148256');
> owa_util.http_header_close;
> end lo;
> /
>
> Then I run this from a browser but the cookie remains unaltered. My
> browser is reporting the cookie as existing like this:
>
> Name ccp_user100292
> Value 102210:148256
> Host acer
> Path /
> Secure No
> Expires At End Of Session
>
>
> I am guessing it is something I am not doing that I should be... but
> what?
Is it possibly because you have setup a session based cookie that perhaps cannot be removed ( only goes away when browser session is ended )? Received on Mon Mar 13 2006 - 11:01:08 CST