ByronHall
asked on
Read cookies using ASP.NET written using JSP
I have a situation where I need to pass an initial value from JSP to ASP. I'm already writing further values to a database. I've seen several solutions to this JSP to ASP issue, and most mention using cookies, but never with an example. I'm currently not able to read a cookie on the ASP.NET side that was written on the JSP side. I am using tomcat running under IIS (ISAPI). Thank you in advance for your help!!!
Try adding an expiry date to you cookies eg
Response.Cookies("TestCook ie").expir e = date() + 7
Response.Cookies("TestCook
ASKER
barnesd1....Which side (JSP or ASP) are you suggesting I add that? That looks like ASP code but I'm setting the cookie on the JSP side.
enwhysee....I tried what you suggested about the cookie, but could not get it to read on the ASP side. The JSP and ASP pages are in the same domain; In my current case "localhost". In addition, as JavaScript is many times disabled in my environment (plus I need the cookie values in ASP not JavaScript) I can't rely on JavaScript. Also, the demo in the article you provided didn't work. I have considered both of the GET and POST methods, and I know they will work. However, I need to provide justification to my decision of which method (GET/POST/Cookie) I use. I basicly need to know if I can use cookies (and how) as I have described.
enwhysee....I tried what you suggested about the cookie, but could not get it to read on the ASP side. The JSP and ASP pages are in the same domain; In my current case "localhost". In addition, as JavaScript is many times disabled in my environment (plus I need the cookie values in ASP not JavaScript) I can't rely on JavaScript. Also, the demo in the article you provided didn't work. I have considered both of the GET and POST methods, and I know they will work. However, I need to provide justification to my decision of which method (GET/POST/Cookie) I use. I basicly need to know if I can use cookies (and how) as I have described.
ASKER
I have solved this issue. JSP was setting the path attribute of the cookie automatically to the path of the jsp file. And, since the ASP page is in a different path it couldn't read the cookie. I coded the path of the cookie to match the ASP page (or just "/" would work) and I can now read the cookie.
Thanks for your help.
Thanks for your help.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Here is an article on how to get and set cookies, if it helps: http://www.htmlgoodies.com/beyond/javascript/article.php/3470821
Additionally there are two issues:
If you your jsp site and the asp site are on different domains, they won't be able to read each other's cookies for security reasons.
Have you considered passing values using a GET or a POST instead?
Using a GET, you'd pass them like http://site/yourasp.aspx?name=John&age=30&id=1234 sort of thing.
Using a POST, you'd need to construct a <form> and then submit it using JavaScript.
for example
<form action="youraspx.aspx" id="myForm">
<input type="hidden" name="name" value="John">
<input type="hidden" name="age" value="30">
<input type="hidden" name="id" value="1234">
</form>
<script language="JavaScript">
document.getElementById('m
</script>
The GET is the easiest to accomplish, but the value you're passing will be seen in the address bar. If it is something like a password/confidential information, or something that could be pretty long (i.e. a couple of hundred characters), then you'd need to use the POST or cookies.
Hope that helps!