Hi all,

I am working on a Spring flavored appfuse application. And, I have an applet to be used in the application. There is a NTLM filter in place for the authentication. The applet or the folder containing the applet is in the same level as WEB-INF. On click of a menu inside the web application I am redirecting it to a jsp page that contains the applet.

I could see that the NTLM auth does not work when it comes to a JSP page. Do I have to do something special for this? Some configuration or some other way of placing my code?

My redirection on controller is as follows,

Code:
 @Controller
public class RedirectController {
	protected final transient Log log = LogFactory.getLog(getClass());
	
	
	@RequestMapping(value = "/sample/applet.jsp")
	public ModelAndView handleRequest(
	        HttpServletRequest request,
	        HttpServletResponse response) throws Exception{
		return new ModelAndView("/sample/applet.jsp");
	}

}
Thanks a bunch.

Cheers,
Jad