This content has been marked as final.
Show 2 replies
-
2. Re: Forwarding to myapp.war from JBoss wellcome page
mablaev Feb 3, 2009 6:42 AM (in response to mablaev)Thank you jaikiran :-)
Hi all!
I newbie in JBoss and use 4.2.3 GA version.
How I can forward all request that comes to JBoss Wellcome page to myapp.war?
I try to use index.jsp from JBOSS_HOME/server/default/deploy/jboss-web.deployer/ROOT.war with following source:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="ISO-8859-1"%>
<% ServletContext ctx = application.getContext("/myapp");
if(ctx != null){
RequestDispatcher rdpt = ctx.getRequestDispatcher("/index.html");
if(rdpt != null){
rdpt.forward(request, response);
}
}
%>
Thank you jaikiran :-)