Hi everybody..
It is my problem.. I have an
applet that connects against
Servlet for authentification stuff.. If authentificacion is good, I need servlet sends the ID of authentified user to the external Web.
I tried in servlet:
- RequestDispatcher.
- response.sendRedirect
even - PrintWriter out = response.getWriter(); and create an auto-submit form with javascript..
Nothing... When I runs the applet, I used it to authentify, but the servlet doesn't redirect to the new web..
Is possible that the problem was I runs an applet, so the servlet returns the form, or RequestDispatcher to that applet and not to the browser??
I could redirects from Applet, but It had security problems...
Any idea?
Thank you so much.