I am trying to figure out how to do the following.
I have webpage at a certian location called www.hello.com/logout.jsp
What I am trying to do with logout.jsp
is delete all the cookies that were stored when initially logging in. The problem is that there exists a cookie for a website with a different domain that is stored when logging in. The one way I can delete that cookie is through the logout link for that website e.g. www.hello2.com/logout.jsp
Is there anyway I can call www.hello2.com/logout.jsp
from www.hello.com/logout.jsp
?
I am trying to just make a call for www.hello2.com/logout.jsp
from www.hello.com/logout.jsp
and then redirect the user to another page on www.hello.com
Thanks in advance :D