[JBoss-user] [JBoss Seam] - Re: HttpSession, Seam SessionContext and bijection

2006-06-19 Thread muckwarrior
I see from JIRA that this issue has been resolved. Can somone tell me the correct way to make an object directly available to the Http Session so that it can be accessed by a Servlet filter? Ive tried: | @Out(value=loggedInUser, scope=ScopeType.SESSION) | private User loggedInUser; |

[JBoss-user] [JBoss Seam] - Re: Fileupload

2006-06-14 Thread muckwarrior
Finally got to the bottom of this. The type mismatch error was being caused by having a copy of the tomahawk.jar in the WEB-INF/lib. This can be removed if you're using faceletes and the problem is solved, but what if you don't want to use facelets? I'm facing the prospect of converting my

[JBoss-user] [JBoss Seam] - Re: @DataModel problem with JB 4.0.4GA SEAM 1.0.0.CR3

2006-06-12 Thread muckwarrior
I am also having @DataModel problems since upgrading http://www.jboss.com/index.html?module=bbop=viewtopict=84713 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3950464#3950464 Reply to the post :

[JBoss-user] [JBoss Seam] - @Datamodel in Seam RC3

2006-06-09 Thread muckwarrior
I am in the process of upgrading my project from jboss 4.0.4.RC1 Seam Beta 2 to 4.0.4GA Seam RC3. At this stage I seem to have overcome everything except one problem, @Datamodel doesn't seem to be working. All my datatables are displaying empty. I know that the lists are successfully being

[JBoss-user] [JBoss Seam] - Re: Fileupload

2006-05-31 Thread muckwarrior
elfuhrer wrote : I have followed the same approach and I cannot get it working. There's a conversion error in the file upload. Any hints? | | I have run into the exact same problem, did you find a solution? View the original post :

[JBoss-user] [JBoss Seam] - Re: How to access Seam components in a Filter class?

2006-05-31 Thread muckwarrior
[EMAIL PROTECTED] wrote : The Seam contexts are not available in a servlet filter. Is there a work around to this? I would like to use a servlet filter for security but I need to access seam components to get loggedInUser data. View the original post :

[JBoss-user] [JBoss Seam] - Re: How to access Seam components in a Filter class?

2006-05-31 Thread muckwarrior
That issue seems to deal with data being passed from the servlet to seam, it's the opposite that I need. Here's an example of what I'm trying to do: | SecurityManager secMan = (SecurityManager) ctx.lookup(seamapp/SecurityManagerBean/local); | user = secMan.getLoggedInUser(); | I then

[JBoss-user] [JBoss Seam] - Re: Fileupload

2006-05-19 Thread muckwarrior
Hi guys, I'm having some problems with file upload. I'm not using facelets but I followed the wiki example as closeley as possible and I'm gettting a deployment error. | 2006-05-19 11:32:01,703 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/gaaresults]] Exception

[JBoss-user] [JBoss Seam] - Re: Fileupload

2006-05-19 Thread muckwarrior
Hmm, well I had the commons-fileupload alright and I've just added commons-lang but to no avail. The relevant jars in my ear lib are: coomons-fileupload commons-io commons-lang myfaces-api tomahawk Is this all that I need or am I still missing something? View the original post :