Re: Using Single Sign on to access another webapp.

2005-07-08 Thread Ivan Rodriguez
Take a look at http://tp.its.yale.edu/tiki/tiki-index.php?page=CentralAuthenticationService Tim Funk escribió: One way to do SSO is to utilize a cookie (lets call it SSO, and to be really secure - it should only be transfered over https). The existence of a cookie says the person might be

Re: Tomcat and Apache

2005-07-11 Thread Ivan Rodriguez
I don t know details about your problem but i can answer that j_secutiry_check is not a way of integrating tomcat into apache. It is an authentition scheme defined by J2EE specs. What you need is the jk_mount apache module, to let your Apache install bypass the dynamic calls to tomcat, and

Re: Tomcat and Apache

2005-07-11 Thread Ivan Rodriguez
I have the same issue! with debian sarge, and tomcat installed from scratch: org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet error: The return type is incompatible with JspSourceDependent.getDependants()

Re: Tomcat and Apache

2005-07-11 Thread Ivan Rodriguez
It was my first attempt. I think i have problems with library dependencies, cause I have copied the install from development to integration enviroment. Development is a mandriva cooker (urpmi setup), and integration a debian sarge system(from scratch setup). Installing and getting running

Re: how can I put enable a button when a servlet has finished.

2005-07-12 Thread Ivan Rodriguez
You know that when the Servlet send a response stream to the browser, a.k.a. HTML code ;) Call the servlet in a hidden frame. Make the servlet response a html containing a javascript call... easy. password password escribió: Yes with javascript, but my problem when I can know that the

Re: how can I put enable a button when a servlet has finished.

2005-07-12 Thread Ivan Rodriguez
public void execute(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { [.] [When you end the server tasks, ] String redirectString = request.getContextPath() + /some/path/to/finished.jsp;