I had the same problem and could solve the issue by replacing the following filter mapping
in web.xml
<filter-mapping>
| <filter-name>Seam Filter</filter-name>
| <url-pattern>/*</url-pattern>
| </filter-mapping>
with this one
<filter-mapping>
| <filter-name>Seam Filter</filter-name>
| <url-pattern>*.seam</url-pattern>
| </filter-mapping>
tazman
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4052040#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...