|
|
Re: Cookies & pl/sql [message #42476 is a reply to message #42474] |
Tue, 01 April 2003 05:36   |
vincent
Messages: 18 Registered: November 1998
|
Junior Member |
|
|
With the oracle portal which uses an apache server I think yes.
But I found it. Now the one problem is how to deal with the owa_cookie.cookie variable. How do I get back the value from the cookie. This is my code I use.
as
info owa_cookie.cookie;
begin
owa_cookie.send('test','ditiseentestje');
info := owa_cookie.get('test');
return info.vals(0);
exception
when others then
return 'error';
end;
Now he returns error... how do I use the info.vals?
|
|
|
|
|
Re: Cookies & pl/sql [message #43748 is a reply to message #42471] |
Mon, 01 September 2003 02:25   |
Vijay
Messages: 116 Registered: September 1999
|
Senior Member |
|
|
DECLARE
info owa_cookie.cookie;
begin
info := owa_cookie.get('cookie1');
htp.print(info.vals(0));
exception
when others then
htp.print('error');
end;
I tried the above code. I am not able to take or check or print the value in the cookie. The cookie is created using psp previously but not present in the temporary internet files folder. Why ? Please any one give solutions..
|
|
|
Re: Cookies & pl/sql [message #43749 is a reply to message #42471] |
Mon, 01 September 2003 02:52   |
Vijay
Messages: 116 Registered: September 1999
|
Senior Member |
|
|
<%
DECLARE
info owa_cookie.cookie;
begin
info := owa_cookie.get('cookie1');
htp.print(info.vals(0));
exception
when others then
htp.print('error');
end;
%>
I tried the above code. I am not able to take or check or print the value in the cookie. The cookie is created using psp previously but not present in the temporary internet files folder. Why ? Please any one give solutions..
|
|
|
Re: Cookies & pl/sql [message #43750 is a reply to message #42471] |
Mon, 01 September 2003 02:52   |
Vijay
Messages: 116 Registered: September 1999
|
Senior Member |
|
|
DECLARE
info owa_cookie.cookie;
begin
info := owa_cookie.get('cookie1');
htp.print(info.vals(0));
exception
when others then
htp.print('error');
end;
I tried the above code. I am not able to take or check or print the value in the cookie. The cookie is created using psp previously but not present in the temporary internet files folder. Why ? Please any one give solutions..
|
|
|
|
|
Re: Cookies & pl/sql [message #329861 is a reply to message #329860] |
Thu, 26 June 2008 16:00  |
pankyz
Messages: 11 Registered: October 2006
|
Junior Member |

|
|
@ anacedent
I tried on .net forum as well but i was not able to find anything and then i found this post which says something about owa_cookie package. So i thought of asking the question here.. But i am still thinking ..but why are u felt offensive unneccassarily . Let somebody else help me if you dont wanna somebody help or if you dnt know the answer..
[Updated on: Thu, 26 June 2008 16:00] Report message to a moderator
|
|
|