Olá gujeiros, estou com dúvidas em carregar páginas usando V-Raptor, tenho uma página onde tenho um frame superior onde carrega uma outra página de "cabeçalho" que possui uma animação em Flash. Inicialmente a estrutura das minhas pastas está assim:
>>>>>WEB-INF
>>>>>>jsp
>>>>>>>cliente
package br.bmweb.controller;
import br.com.caelum.vraptor.Resource;
@Resource
public class ClienteController {
public void index(){
}
}
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<script src="../js/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body bgcolor="#000000">
<div align="center">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','768','height','166','title','LOGO','src','anim','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','anim' ); //end AC code
</script>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="768" height="166" title="LOGO">
<param name="movie" value="anim.swf" />
<param name="quality" value="high" />
<embed src="anim.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="768" height="166"></embed>
</object>
</noscript>
</div>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>BMWEB</title>
</head>
<frameset rows="190,*" cols="*" framespacing="0" frameborder="no" border="0" bordercolor="#F0F0F0">
<frame src="../animacao.jsp" name="topFrame" scrolling="no" noresize="noresize" id="topFrame" title="topFrame" />
</frameset>
<noframes></body>
</html>
<frame src="../animacao.jsp" name="topFrame" scrolling="no" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="../nome_da_minha_pasta/animacao.jsp" name="topFrame" scrolling="no" noresize="noresize" id="topFrame" title="topFrame" />
Agora a minha dúvida: Como posso fazer o V-Raptor carregar a página com a animação do caminho WEB-INF/jsp/cliente??