[jboss-user] [JBoss Seam] - Re: Date parameter at s:button

2008-01-14 Thread mcanaleta
I also have this problem... You can specify a converterId at the parameter specification at pages.xml but not at f:param... Anyone knows the solution? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4119922#4119922 Reply to the post : http://www.jboss

[jboss-user] [JBoss Seam] - Re: Restrict result graph of a Web Method

2008-01-05 Thread mcanaleta
No, it is a web service. I found @WebMethod also has an exclude atribute bud it is boolean and it's definition is "Marks a method to NOT be exposed as a web method.", so it's not what I'm looking for. Any idea? Thank you! View the original post : http://www.jboss.com/index.html?module=bb&op=vie

[jboss-user] [JBoss Seam] - Re: Persistence context invocation upon application startup

2008-01-04 Thread mcanaleta
I don't need to convert to a Stateful Bean, my POJO can persist entities, i think the difference is that my startup method is annotated @Transactional. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117033#4117033 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: Persistence context invocation upon application startup

2008-01-04 Thread mcanaleta
Try injecting the entityManager: @In("entityManager") | private EntityManager em; It works for me in an application scoped component for initializing purposes, like you need. I'd like to know the difference of injecting it or using the @PersistentContext annotation... Hope it helps! View th

[jboss-user] [JBoss Seam] - Restrict result graph of a Web Method

2008-01-04 Thread mcanaleta
Hi, I have two entity classes, for example Cathegory and Product. A Product belongs to a Cathegory and a Cathegory has many products. If I try to return some product or some cathegory from a web method, the entity manager tries to fetch all fields recursivelly and an infinite cycle error happen