i want know how ti use cookie in jsp to make a scure transaction betwen client and server into firm intranet thank you @
Sean MacLean
author
Ranch Hand
Joined: Nov 07, 2000
Posts: 621
posted
0
"hichambox", Thanks for participating here at the Ranch. However, the name you are using does not comply with the naming convention described at http://www.javaranch.com/name.jsp . We require names to have at least two words, separated by a space, and strongly recommend that you use your full real name (not fictitious monikers). Please log in with a new name which meets the requirements. Thanks. Sean
chanoch wiggers
Author
Ranch Hand
Joined: May 24, 2001
Posts: 245
posted
0
try this tutorial here: http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-Cookies.html but cookies wont make it secure, you know - they will just help give you more confidence that the user is who he says he is. To make a secure system, why not use the built in security in your web server, eevrything can be automated from log in, to SSL for real security, and so on
chanoch<p><a href="http://www.amazon.com/exec/obidos/ASIN/1861007736/" target="_blank" rel="nofollow">Author of Professional Apache Tomcat</a></p>
Andres Gonzalez
Ranch Hand
Joined: Nov 27, 2001
Posts: 1561
posted
0
what are the pros and cons of using cookies over sessions? can they used for the same purpose?
I'm not going to be a Rock Star. I'm going to be a LEGEND! --Freddie Mercury
hicham rho
Greenhorn
Joined: Jul 04, 2002
Posts: 3
posted
0
hello all, right now, if i want save data how i like to use after in data base oracle in some hastable every field in my frame i save it in hashtable so i want to use cookie to save my data thank you
Maulin Vasavada
Ranch Hand
Joined: Nov 04, 2001
Posts: 1865
posted
0
hi andres, there isn't much like pros and cons if follwing is the true story... "session uses Cookies internally to store session data". here i pose anther question then, i don't know how far is the above sentence is true but i'm really confused about this as otherwise how else session can store information that persists throughout the session? i know URL Rewriting is another way of handling of sessions but how then we write a code that automatically switches b/w cookie and url re-writing methods depending upon whether the client has enabled/disabled cookies (or is it possible to have sessions managed by URL REwriting internally?) for the url rewriting switching on cookie's disability - i guess we will just try to write a cookie and then read it. if we can't read it back then that means the cookies are disabled and in that case i switch to URL Rewriting.... am i right? to check if the sessions are based on the Cookies internally or not- we can put something in session. diable the cookies on the client side. try to get back the session data. if we get it back then its not using Cookies internally. if we don't get the data back then we may derive that session is using Cookies internally. please somebody throw some light on my thoughts... regards maulin