I have been searching for a suitable answer for this question for a while. My scenario is like this -> We have a webserver like http://web.mydomain.com and after loging in, we will redirect them to our other application servers like http://us1.mydomain.com, http://us2.mydomain.com etc.,
Our login expiry is 8 hours, after 8 hours instead of redirecting him to the web, we want to show him a popup, which will in turn fire the login request to http://web.mydomain.com. But here it will be treated as a cross domain Ajax POST.
I am using tomcat, and servlet for login in the web server. I found like setting the response.setHeader("Access-Control-Allow-Origin","*"); will do the job for solving cross domain response in browsers, and i am doing this step in my servlet. The disappointing thing is tomcat doesn't even seem to accept the request, as nothing enters my servlet. Can any one give me a tip on this.
1-> i want tomcat to accept the cross domain Ajax request
2-> set the response in such a way that browser wont reject it.
