Hi all,

Am using SWF+JSF. I have a situation where im getting HTML contents and i need to dump that to my page.

I tried doing the following in my page:

<code>
<iframe>
<c:out value="#{htmlOutput}" escapeXml="true" />
</frame>
</code>

However i got the error <c:out> Tag Library supports namespace: http://java.sun.com/jstl/core, but no tag was defined for name: out. I checked up and found out that facelets supports only some of the core tags(https://facelets.dev.java.net/nonav/docs/dev/docbook.html#template-repea).

So i wondering if there is any way i could achieve what i'm trying to do. Please note that i cant point my iframe to the src as i'm filtering out many tags in them and am getting refined HTML output.

Any help would be appreciated.

Thanks.