I have the following Tiles2 template:
<body>
<div id="container" >
<tiles:insertAttribute name="header" />
<tiles:insertAttribute name="menu" />
<div id="content">
<tiles:insertAttribute name="myContent" />
</div>
<tiles:insertAttribute name="footer" />
</div>
</body>
In the div "content", i'm trying to load an external page passing parameters to the URL, like this: http://www.myhost.com/forms/frmservlet?form=${param1}&width=${param2}
The action definition should be something like this:
<action name="oraForms" class="com.struts.actions.OracleFormsAction>
<result name="success" type="tiles">oraForms</result>
</action>
The definition of the tile, seems to:
<definition name="oraForms" extends="aplicacion_contexto">
<put-attribute name="contenido" value=http://www.myhost.com/forms/frmservlet?form=${param1}&width=${param2}"/>
</definition>
How can i include the content of the url in the tile? (i dont want to use "iframe"). How can pass the parameters to the URL? (These are in the action)
Thanks you!!