[ MVC I arch ] -- flash movie loading problems in MVC
Hello All,
I am using MVC I Architecture to build my Sites. In my Servlet, i have my standard method for forwarding into JSP is :
public void LoadToJsp(HttpServletRequest req, HttpServletResponse res, String jspFile)
throws ServletException, IOException {
end();
String contentType = "text/html";
res.setContentType(contentType);
RequestDispatcher dispatcher = req.getRequestDispatcher(res.encodeURL(jspFile));
dispatcher.forward(req, res);
}
If i use this method and Load some JSP means, Flash Widgets are not working in the JSP.
If i forward the JSP and parameters directly in the URL [Without passing through my Servlet], My JSP loaded and my Flash Movies are playinmg well.
I dont think anything wrong with my jsploader from Servlet. If i cant use Flash movies in MVC, its a problem for me, because before loading the movie, I have to do lot lod this on Server side.
Please help me in thi regards,
Vijaya Rama kannan.K

