0 Replies Latest reply on Feb 12, 2010 5:14 AM by tvraghavan

    How to embed a activeX output in Seam?

    tvraghavan
      We are trying to integrate SEAM with intelliview reporting framework. The reports are invoked via intelliview Java API that generates a String output with contains the html tag (i.e. <object id="" ...></object>).

      We are able to integrate it with a normal JSP using a normal output tag.
      --------
      JSP Page
      --------
      <html>
      <body>
        <% String reportOutput = IntelliviewAPI.getReportOutput(); %>
        <table>
         <tr>Report Output</tr>
         <tr><%=reportOutput%></tr>
        </table>
      </body>
      </html>

      Wondering how to achieve the same in SEAM framework.

      Thanks,
      -raghav