[jboss-user] [JBoss Seam] - Re: Request param acquire

2008-01-25 Thread mrobinson28
This is possible but not with the javax.faces API. You would have to fall back to the servlet API. Note the differences: http://java.sun.com/javaee/5/docs/api/javax/faces/context/ExternalContext.html#getRequestParameterMap()

[jboss-user] [JBoss Seam] - Re: Email with Icefaces

2008-01-19 Thread mrobinson28
anonymous wrote : I suggest posting on the icefaces forum, and post a link back here. It looks like someone already beat me to it: http://www.icefaces.org/JForum/posts/list/6923.page Thanks for the help. View the original post :

[jboss-user] [JBoss Seam] - Re: Component scope w/ multiple Wars - Effect on SeamLoginMo

2008-01-16 Thread mrobinson28
If it helps anyone else who comes along I did find this related post: http://www.jboss.com/index.html?module=bbop=viewtopict=81910 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4120480#4120480 Reply to the post :

[jboss-user] [JBoss Seam] - Email with Icefaces

2008-01-16 Thread mrobinson28
A have searched and found several related posts/issue about problems integrating Seam email when using Icefaces's JSF implementation. Such as: http://jira.jboss.org/jira/browse/JBSEAM-827 http://jira.jboss.org/jira/browse/JBSEAM-977 http://www.jboss.com/index.html?module=bbop=viewtopict=103086

[jboss-user] [JBoss Seam] - Component scope w/ multiple Wars - Effect on SeamLoginModule

2007-12-05 Thread mrobinson28
First of all the Seam security stuff is awesome! I have a question though regarding the scope of components. From searching through some other post on the forum I think that Seam components are created and scoped at the War level. Is this correct? e.g. If I have an Ear with multiple War

[jboss-user] [JBoss Seam] - Re: Pageflow

2007-06-21 Thread mrobinson28
I have a similar need where I want a main pageflow who dispatches to sub-systems that have their own pageflow. At any point the parent pageflow may need to resume, make a decision, and dispatch again. Currently it doesn't look like you can transition to a completely separate pageflow from a

[jboss-user] [JBoss Seam] - Re: Pageflow

2007-06-21 Thread mrobinson28
This is it right? http://fisheye.jboss.com/browse/JBoss/jboss-seam/examples/numberguess/resources/pageflow.jpdl.xml?r=1.11 Nice! Michael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056500#4056500 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Pageflow

2007-06-21 Thread mrobinson28
JIRA issue is: http://jira.jboss.org/jira/browse/JBSEAM-157 Thought this might help anyone else looking for this type of functionality. Michael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056529#4056529 Reply to the post :

[jboss-user] [JBoss Seam] - Re: TestNG @PersistenceContext Error

2007-04-24 Thread mrobinson28
I have had similar problems with testing that I have yet to resolve but thought this information might be helpful. The following post: http://www.jboss.com/index.html?module=bbop=viewtopict=100083 looks like it might be related. View the original post :

[jboss-user] [JBoss Seam] - Re: configuring integration testing with TestNG in eclipse

2007-04-16 Thread mrobinson28
I think I am experiencing a similar problem and just realized it. Sorry that I didn't see this thread and the similarities sooner. http://www.jboss.com/index.html?module=bbop=viewtopict=106363 The only difference is that I am not using seam-gen... but I have an action class that I am trying

[jboss-user] [JBoss Seam] - Re: Back...

2007-04-16 Thread mrobinson28
Integration Testing: My original question/thread: http://www.jboss.com/index.html?module=bbop=viewtopict=106363 Then I saw this thread and noticed the similarities in the exceptions: http://www.jboss.com/index.html?module=bbop=viewtopict=100083 Thanks, Michael View the original post :

[jboss-user] [JBoss Seam] - Re: DataModel: Row is not available

2007-04-16 Thread mrobinson28
Is the documentation incorrect? seam reference docs wrote : | @DataModel | | Exposes an attribute of type List, Map, Set or Object[] as a JSF DataModel into the scope of the owning component... | I believe that the standard JSF datatable only supports a limited number of types (not

[jboss-user] [JBoss Seam] - Re: Creating PDFs Programmatically

2007-04-16 Thread mrobinson28
Seam is using iText: http://www.lowagie.com/iText/ http://docs.jboss.com/seam/1.2.1.GA/reference/en/html_single/#itext Michael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037801#4037801 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Unit Testing EL in EJB-QL/HQL

2007-04-13 Thread mrobinson28
Ok, in my unit test I originally had: | EntityManager entityManager = emf.createEntityManager(); | I have replaced it with: | EntityManager entityManager = new EntityManagerProxy( emf.createEntityManager() ); | Now the exception is: | java.lang.IllegalStateException: No

[jboss-user] [JBoss Seam] - Re: Simple question about sample apps with Seam

2007-04-13 Thread mrobinson28
I think this pretty much sums up how the import script is executed: http://www.jboss.com/index.html?module=bbop=viewtopict=89473 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037226#4037226 Reply to the post :

[jboss-user] [JBoss Seam] - Unit Testing EL in EJB-QL/HQL

2007-04-12 Thread mrobinson28
Is it possible to write a unit test for a method that uses EL expressions within EJB-QL/HQL? I attempted to do this and get the exception: javax.persistence.PersistenceException: org.hibernate.QueryException: unexpected char: '#' The documentation states that: Seam proxies the

[jboss-user] [JBoss Seam] - SeamLoginModule Error invoking login method

2007-04-12 Thread mrobinson28
I am attempting to write (mostly copy from example s ;) an integration test for a simple login process. I am using Seam 1.2.1.GA, EEJB, hsqldb, etc. The only difference that I can see from the examples is that I am building w/ Maven2...hopefully this is not the issue :( When I execute the