Struts-tiles x Frameset

Ja implementei uma pagina do struts usando tiles
Agora preciso dividir a tela em dois frames.

É possivel usar a tag struts-tiles juntamente com o frameset do html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>teste</title>
</head>

<frameset cols="150,*" frameborder="no" border="0" framespacing="0">
 <frame src="menu/jsp" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
 <frame src="body.jsp" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>

No lugar de usar o comando:

<frame src="body.jsp" 

Eu preciso usar o comando 
<tr>
    <tiles:insert attribute="body"/>
 </tr>