Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Removing cookies

Removing cookies

From: Pavel Vetesnik <Pavel.Vet_at_volny.cz>
Date: Thu, 18 Sep 2003 16:11:26 +0200
Message-ID: <bkceb3$2ue$1@ns.felk.cvut.cz>


Greeting,

I have troubles with removing cookies. My procedure is this:



PROCEDURE odhlaseni IS

    v_cookie owa_cookie.cookie;
BEGIN
    v_cookie := owa_cookie.get('el_cas');

    owa_util.mime_header('text/html', FALSE);
    owa_cookie.remove('el_cas', v_cookie.num_vals);
    owa_util.http_header_close;

EXCEPTION WHEN OTHERS THEN Funkce.Chyba; END;

But executing this procedure gives me error:



End of headers not found!
Please verify that headers were closed.

Please, does anybody has an idea why?

Thank you in advance,
Pavel Received on Thu Sep 18 2003 - 09:11:26 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US