JBoss Community

Re: SEAM BIRT Integration Scripted DS report works when embedded, but not when designType=run or frameset

created by Snjezana Peco in JBoss Tools - View the full discussion

When using the run or frameset designType, requests are sent direct to the BIRT servlet and are not processed through the JSF lifecycle. If you need to access Seam components, you have to add a context filter to the components.xml file as:

 

<web:context-filter regex-url-pattern="/run | /frameset"/>

 

Don't forget to include the web namespace in the components.xml file.For instance:

 

<components xmlns="http://jboss.com/products/seam/components"

...

  xmlns:web="http://jboss.com/products/seam/web"

...

  xsi:schemaLocation=

...

  http://jboss.com/products/seam/web http://jboss.com/products/seam/web-2.2.xsd

...

Reply to this message by going to Community

Start a new discussion in JBoss Tools at Community