Hi i am doing a web application . In that i need to set reminders and when the time comes it should popup a message. In the login
servlet i check whether there are reminders. if there are then i call a
java class in a separate
thread and i schedule the time. after the time i need to call a servlet and from there i need to redirect to
jsp page. My problem is I after the designed time I use THis to call Servlet
URL url=new URL("url path");
url.openconnection();
and the system.out.println() in the servlet is working but if i do a response.sendredirect it wont work.
i need to some how send a pop up the user..
Can any one help me with this?