[jboss-user] [JBoss Seam] - Re: Injecting a stateful bean into a stateful bean in glassf

2007-12-26 Thread apushadow
Done: http://jira.jboss.org/jira/browse/JBSEAM-2430 Thanks, Pete. --Rich View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4115535#4115535 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4115535

[jboss-user] [JBoss Seam] - Re: Injecting a stateful bean into a stateful bean in glassf

2007-11-26 Thread apushadow
I've got a workaround (do a @Startup at the top of the bean being injected), but I'm not sure why this is necessary. I've taken to putting @Startup at the top of all my session beans just so I don't have to worry about the JNDI issues in the future if I ever have to inject them. Anyone else

[jboss-user] [JBoss Seam] - Re: Injecting a stateful bean into a stateful bean in glassf

2007-11-16 Thread apushadow
I'm not sure what you mean by linked...web.xml is as follows (unchanged from the downloaded version): | ?xml version=1.0 encoding=UTF-8? | web-app version=2.5 | xmlns=http://java.sun.com/xml/ns/javaee; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; |

[jboss-user] [JBoss Seam] - Injecting a stateful bean into a stateful bean in glassfish

2007-11-13 Thread apushadow
I'm getting a JNDI lookup error when trying to inject (@In) a stateful session bean into another stateful session bean in my app. I tried for a few days (and failed) to tweak the JNDI pattern to see if that would help, but finally decided to try to replicate my problem on the seam/jee5/booking

[jboss-user] [JBoss Seam] - Re: Deploying to OC4J 10.1.3.1

2007-08-23 Thread apushadow
jasondlee: Yeah, if you could update the wiki or post here on how to get OC4J to look in the war instead of only in applib that would be great. I struggled with that for days and never did figure it out, so I wrote the aforementioned wiki with the applib hack. Also, if you've got any

[jboss-user] [JBoss Seam] - Re: Audit Interceptor with State

2007-08-16 Thread apushadow
Heya Pete-- I'm trying to use your solution (from here http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamAuditHome)... I copied the orm.xml into my project and annotated a bunch of stuff in my User object as @Auditable. When I start up my app server (OC4J), the auditlog and auditlogdetail tables

[jboss-user] [JBoss Seam] - Re: Seam + OC4J 11g (Technology Preview)

2007-06-11 Thread apushadow
Done! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4053209#4053209 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053209 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: Seam + OC4J 11g (Technology Preview)

2007-06-08 Thread apushadow
Sure thing... Maybe I'm a n00b, but I can't seem to add a wiki page. I can edit an existing one ( here: http://wiki.jboss.org/wiki/Wiki.jsp?page=UndefinedPages), but none of the existing wiki pages - even those with no content - have relevant file names. Please advise. --Rich View the

[jboss-user] [JBoss Seam] - Re: Seam + OC4J 11g (Technology Preview)

2007-06-07 Thread apushadow
I took Seam (1.2.1 GA)'s glassfish example and got it deployed to OC4J 11 (11.1.1.0.0). Here's how I did it: Keep in mind, the glassfish example compiles into an ear file, so these instructions involve how to manually deploy an ear file to OC4J...see below for hints on how to manually deploy

[jboss-user] [JBoss Seam] - Re: deploy jboss seam application on oc4j server

2007-05-07 Thread apushadow
Made a Jira ticket out of this: http://jira.jboss.com/jira/browse/JBSEAM-1304 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043790#4043790 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043790

[jboss-user] [JBoss Seam] - Re: Issue with Seam and Tomcat 6 during tomcat startup

2007-03-16 Thread apushadow
Similar, but not the same: | 11:00:08,843 INFO [Lifecycle] starting up: org.jboss.seam.remoting.remoting | 11:00:08,843 INFO [Lifecycle] starting up: org.jboss.seam.servlet.exceptionFilter | 11:00:08,843 INFO [Lifecycle] starting up: org.jboss.seam.captcha.captchaImage |

[jboss-user] [JBoss Seam] - Re: Issue with Seam and Tomcat 6 during tomcat startup

2007-03-12 Thread apushadow
Michael-- Yeah, it looks like java:/comp/env/omegaDatasource isn't being found. I never use comp/env, though (I use java:/omegaDatasource)...not sure if that's your problem. ly-- I have Tomcat 5.5 at work and 6.0 at home...I haven't tried having both on the same box (maybe Tomcat is fighting

[jboss-user] [JBoss Seam] - Re: JBoss Seam and Web Services using OC4J stack

2007-03-09 Thread apushadow
Manuel-- I too need to make a Seam app run on oc4j. Currently, I have an app running on Tomcat (using JBoss's embedded EJB jar) and I try to deploy it to oc4j and it gives me the following error: | 16:09:24,140 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory |

[jboss-user] [JBoss Seam] - Re: Issue with Seam and Tomcat 6 during tomcat startup

2007-03-09 Thread apushadow
lle-- This looks similar to a problem I was having once: I'd throw my war into Tomcat's webapps directory, start Tomcat, and it would start up then shut down, giving me log messages similar to what you pasted. Turns out it was because I had both Tomcat and some other process (JBoss, I think)

[jboss-user] [JBoss Seam] - Re: Issue with Seam and Tomcat 6 during tomcat startup

2007-03-09 Thread apushadow
MLH-- I got Seam running on MySQL...what's the error you're getting? This site got me pretty far into the process: http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpAMysqlDatasource View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4026781#4026781 Reply to the post

[jboss-user] [JBoss Seam] - Seam Remoting w/o JBoss App Server

2007-03-08 Thread apushadow
I'm very interested in using Seam's Remoting functionality in a couple different places in my app. I know the helloworld example doesn't work in Tomcat yet (JBSEAM-379), getting the following stacktrace right after I type in my name: | 14:01:58,218 ERROR [ExceptionFilter] could not roll

[jboss-user] [JBoss Seam] - Re: Booking example, Tomcat, EJB3 and thou...

2007-03-05 Thread apushadow
I needed to include the contents of both booking\microcontainer and booking\embedded-ejb in order to get the booking example working on Tomcat. Maybe both sets of jars and config files in those directories are needed, or maybe I'm just a n00b. :-) What's the error or errant behavior you're

[jboss-user] [JBoss Seam] - Re: Is it possible to send mail from asynchronous method

2007-02-27 Thread apushadow
I'm getting this same stacktrace (NPE in FaceletsRenderer). I'm trying to use Quartz to send an email at a scheduled time. The method kicks-off when it should, but the rendering fails: | java.lang.NullPointerException | at

[jboss-user] [JBoss Seam] - Re: Is it possible to send mail from asynchronous method

2007-02-27 Thread apushadow
By the way, I'm using Tomcat with Embedded EJB and Seam 1.1.6. My apologies if asking when a Jira ticket will be resolved is Taboo. I'm really impressed with Seam and the responsiveness of the developers on this forum...please don't hate me. :-) View the original post :

[jboss-user] [JBoss Seam] - Re: No active application scope in long running process

2007-02-27 Thread apushadow
Ahh, ok. This answers a lot of my questions. I'm looking forward to a solution to this problem. I use Seam 1.1.6 with Tomcat and Embedded EJB. I'm trying to prototype being able to run a method at a specified time - the method must (1) send an email, (2) update the database and (3) raise an

[jboss-user] [JBoss Seam] - Getting the helloworld example working in Tomcat

2007-02-15 Thread apushadow
Has anyone been able to successfully get the remoting/helloworld example working in Tomcat? I deploy it via ant clean deploy.tomcat and the helloworld app comes up, but I get this in my popup window when I type in my name: | Thu Feb 15 2007 14:34:03 GMT-0600 (Central Standard Time):