[jboss-user] [JBossCache] - Re: Random 1.6gb object allocation attempt when using tcppin

2008-03-13 Thread youngm
I'll tell our infrastructure to try and grab that information next time they get the opportunity which may be a while since it they have no way to grab the dumps unless the problem happens to freeze the server which is usually just crashes. Looking at the stack traces I'm not sure what would

[jboss-user] [JBossCache] - Re: Random 1.6gb object allocation attempt when using tcppin

2008-03-13 Thread youngm
I have some more info. If found the line of code that is allocating the 1.6gb byte[]. BasicConnectionTable.run():577 | 575: len=in.readInt(); | 576: if(len buf.length) | 577: buf=new byte[len]; | So you were correct it

[jboss-user] [JBossCache] - Re: Random 1.6gb object allocation attempt when using tcppin

2008-03-13 Thread youngm
Another update. This bad packet contains the the following 0x62, 0x65, 0x6C, 0x61, 0x00, 0x00, 0x00, 0x00 Which converted to ascii is bela so I think this is pretty obvious that it is a jgroup/jbossCache originated packet or fragment of a packet Any other ideas? View the original post :

[jboss-user] [JBossCache] - Re: Random 1.6gb object allocation attempt when using tcppin

2008-03-13 Thread youngm
Actually I lied the packet's contents are: [98, 101, 108, 97, 17, 2, 4, 10, 108, 34, 34, 0, 0, -30, -112] the first 4 bytes == bela 10.108.34.34 is my server's IP address I don't know what the rest is. View the original post :

[jboss-user] [JBossCache] - Random 1.6gb object allocation attempt when using tcpping

2008-03-12 Thread youngm
We are using jbossCache 1.4.1.SP8 jgroups 2.4.1.SP4 on websphere 6.1 (IBM JDK AIX) This is our config string: | config | TCP start_port=58000 sock_conn_timeout=500 send_buf_size=15 recv_buf_size=8 loopback=false | use_send_queues=false / | TCPPING

[jboss-user] [JBossCache] - Re: tx completion STATUS_UNKNOWN

2008-02-25 Thread youngm
Guy Pardon of Atomikos justifies his use of UNKNOWN saying: anonymous wrote : | I think the status cannot be determined for the following reason. Imagine transaction A started in a remote VM and imported in the local VM subsequently. Also, suppose the local VM only does READ_ONLY work. |

[jboss-user] [JBossCache] - tx completion STATUS_UNKNOWN

2008-02-12 Thread youngm
I'm having a problem integrating with Atomikos as a transaction manager and JbossCache. It appears that if an XA transaction is READ_ONLY then Atomikos will complete the transaction with STATUS_UNKNOWN even though nothing specifically when wrong in the transaction. The problem is the

[jboss-user] [JBossCache] - Re: Hibernate and OptimisticTreeCache

2008-01-22 Thread youngm
thanks for the insight View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122416#4122416 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122416 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Integerating Seam Spring

2008-01-20 Thread youngm
Nope, your spring and Seam code will not be effected. The configuration might be more difficult though depending upon the transactionManager you are using. For example, if you're using a HibernateTransactionManager you need to make sure that both spring and seam are using the same

[jboss-user] [JBossCache] - Hibernate and OptimisticTreeCache

2008-01-10 Thread youngm
I've had a JBossCache+hibernate question over on the hibernate forums for a while with no responses. I was wondering if someone here might be able to help me out? The question is: Looking at the code in Hibernate OptimisticTreeCache it appears that Hibernate tells JBossCache to use an

[jboss-user] [JBoss Seam] - Re: Spring and Seam managed persistence contexts

2008-01-02 Thread youngm
The integration uses a dummy SessionFactory that simply takes calls to SessionFactory.createSession and returns the Seam managed session instead. It's quite simple. So you just need to make sure that you use the SeamManagedSessionFactory in the correct places instead of the real

[jboss-user] [JBoss Seam] - Re: Spring and Seam managed persistence contexts

2008-01-02 Thread youngm
Oh, ya. Seam uses a thread local to get it's Context and then uses the various scopes in that context to determine the actual values in the scopes. If you wanna get into much more detail on how Seam manages it's scopes it would probably be best to look at the code. I think the key here is

[jboss-user] [JBoss Seam] - Re: Spring and Seam managed persistence contexts

2008-01-01 Thread youngm
Yup through: *Template SharedEntityManager @PersistenceContext SessionFactory.currentSession() You can make your existing spring persistence code work with a conversation scoped persistence context without changing your code. Simply configure the use of a different EntitityManagerFactory of

[jboss-user] [JBoss Seam] - Re: Scope of EntityManager

2007-12-19 Thread youngm
Interesting, out of curiosity what version of a4j is this? Is this the latest RichFaces? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114267#4114267 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114267

[jboss-user] [JBoss Seam] - Re: Scope of EntityManager

2007-12-18 Thread youngm
So can you consistently get the error hitting that richfaces url? The strange thing is that if it's hitting the SeamPhaseListener then it should be creating a conversation. What it sounds like is the transaction is getting started before the conversation is started. However, the Seam

[jboss-user] [JBoss Seam] - Re: Scope of EntityManager

2007-12-18 Thread youngm
Put a breakpoint in SeamPhaseListener.handleTransactionsBeforePhase and see if you can determine why beginTran is being set to true in the case where you get this error. If the phase id is RenderResponse or ApplyRequestValues and a conversation does not exist then we can dig further from

[jboss-user] [JBoss Seam] - Re: Scope of EntityManager

2007-12-17 Thread youngm
What do you mean when I access a page, which contains no component reference in the conversation scope? The way your have everything configured Seam should never be attempting to create a transaction before a conversation is created. Can you describe more what you're doing to get Seam in this

[jboss-user] [JBoss Seam] - Re: Spring DAO and Seam

2007-11-26 Thread youngm
I may not be understanding your question entirely but I believe you would use Spring JDBC with Seam the same as you would without Seam since Seam doesn't really provide any kind of JDBC features. The main reason you might want to use Seam's JPA/Hibernate with Spring (the spring+seam

[jboss-user] [JBoss Seam] - Re: Spring DAO and Seam

2007-11-26 Thread youngm
JDBC has no concept of a persistence context. Conversation scoped persistence contexts are only valuable with Hibernate and JPA. If you just want to use JDBCTemplate in a Seam component then just define the JDBCTemplate in your spring file and inject it into a Seam component using

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-11-19 Thread youngm
the jboss-seam-ioc.jar is included with the seam distribution and it should be placed in the classpath of your project. To make sure it works when running tests you need to be sure it is included in the runtime classpath of your test running tool. View the original post :

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-11-19 Thread youngm
Is user a spring bean? If you aren't using Spring then the ioc.jar won't help you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106127#4106127 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106127

[jboss-user] [JBoss Seam] - Re: SpringTransaction exception handling enhancement require

2007-11-13 Thread youngm
Can you file an issue in Jira and post the number back to this thread? Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4104386#4104386 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4104386

[jboss-user] [JBoss Seam] - Re: no such setter method: org.jboss.seam.ioc.spring.Context

2007-11-06 Thread youngm
Thanks. Fixed. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4102364#4102364 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4102364 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Spring and Seam managed persistence contexts

2007-10-23 Thread youngm
Yes. you can use Spring as your middleware and take full advantage of Seam managed persistence contexts without seam or Spring being non the wiser. The documentation details how you can use Seam Managed persistence contexts with spring and how you can use Spring managed transactions with

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-22 Thread youngm
updated the docs to include a note about the jboss-seam-ioc dependency. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4097605#4097605 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4097605

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-18 Thread youngm
-INF is not in the classpath when running the test. Otherwise I cannot duplicate itcan you can send me an exact copy of your environment? A zipped eclipse project with all your dependencies or a project that I can just run ant or maven to duplicate the error? youngm -at- gmail dot com View

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-17 Thread youngm
I have no ideas why it is not working because it should be working. As soon as I get some time I'll get your example running and see if I can duplicate the problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096237#4096237 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-17 Thread youngm
the DelegatingVariableResolver isn't used in integration tests. The Spring integration is supposed to be loading automatically an ELResolver for use when not in a JSF request. Which is the situation for integration tests. View the original post :

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-17 Thread youngm
Well, your testcase works for me.are you sure your /WEB-INF folder which holds your component.xml file is in your classpath when you run the test? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096290#4096290 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-16 Thread youngm
A couple of things. anonymous wrote : When i try to do an integration testing, I get this exception So your app works just fine when running in a web container? anonymous wrote : I have added the SpringContextLoader in the components.xml file and my application context is getting loaded.

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-16 Thread youngm
What version of seam are you using? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4095803#4095803 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4095803 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-16 Thread youngm
Can you try with 2.0 CR2? Or is upgrading out of the question at this point? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4095819#4095819 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4095819

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-16 Thread youngm
Can you put together the simplest testcase you can where an expression is not being evaluated in an integration test so I can give it a try? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4095823#4095823 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Integration Testing with TestNG and embeddedEjb

2007-10-16 Thread youngm
Can you add your component.xml too? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4095831#4095831 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4095831 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: ui:insert / stopped working in Seam 2.0 within source

2007-08-30 Thread youngm
I've recommitted the fix Ryan originally provided. Apparently the change that broke this was some functionality Jacob added for Gavin to support the s:decorate component. I tested the fix with the Seam s:decorate component in the Booking example's register page and the s:decorate appears to

[jboss-user] [JBoss Seam] - Re: TransactionalSeamPhaseListener + Spring @Transactional

2007-08-16 Thread youngm
The spring example in the 2.0.0.cr1 nighly builds are configured exactly the way you are looking to use Seam + Spring. Using a spring configured EMF. A Seam conversation scoped EM. that is made available in spring using the SeamManagedEntityManagerFactoryBean. Have a look at the example in

[jboss-user] [JBoss Seam] - Re: Seam managed transaction in Tomcat

2007-08-16 Thread youngm
In case someone stumbles upon this thread with the same question. You can find more information at this thread: http://www.jboss.com/index.html?module=bbop=viewtopicp=4074888#4074888 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074889#4074889 Reply to the

[jboss-user] [JBoss Seam] - Re: TransactionalSeamPhaseListener + Spring @Transactional

2007-08-15 Thread youngm
anonymous wrote : 1. I am not able to locate the class TransactionalSeamPhaseListener in Seam 2.0? Has it been replaced by the general SeamPhaseListener? | Ya, it was removed in 2.0 beta and was replaced by the transaction-management-enabled attribute anonymous wrote : | 2. Where can I

[jboss-user] [JBoss Seam] - Re: TransactionalSeamPhaseListener + Spring @Transactional

2007-08-15 Thread youngm
anonymous wrote : Hi, | | thank you for your helpful answer. I plan to have a seam independent persistence and service layer using spring + JPA and only use seam in the web layer because of its powerful JSF enhancements. | | Do I understand it right: | 1. It is possible to use spring

[jboss-user] [JBoss Seam] - Re: TransactionalSeamPhaseListener + Spring @Transactional

2007-08-15 Thread youngm
Sorry my quotes got alittle messed up. :) anonymous wrote : Hi, | | thank you for your helpful answer. I plan to have a seam independent persistence and service layer using spring + JPA and only use seam in the web layer because of its powerful JSF enhancements. | | Do I understand it

[jboss-user] [JBoss Seam] - Re: TransactionalSeamPhaseListener + Spring @Transactional

2007-08-14 Thread youngm
anonymous wrote : can anyone explain me the effect, when I combine Seam TransactionalSeamPhaseListener with Spring @Transctional annotation in my service layer? Well, first of all you need to make sure that they're configured to use the same JTA TransactionManager. With Seam 2.0.0 CR1 you

[jboss-user] [JBoss Tools (users)] - Facelets support in WTP

2007-08-14 Thread youngm
I thought you guys might be able to provide useful input for this bug which is working to provide better facelets support to WTP: https://bugs.eclipse.org/bugs/show_bug.cgi?id=192393 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074093#4074093 Reply to the

[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-07-11 Thread youngm
http://jira.jboss.org/jira/browse/JBSEAM-1642 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4063035#4063035 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4063035 ___ jboss-user

[jboss-user] [JBoss Seam] - Configuring POJOs as Seam Components in components.xml

2007-07-11 Thread youngm
I'm using 1.2.0.nightly Is it legal to configure POJOs as Seam components in components.xml? For example: component name=expanderState class=java.util.HashMap auto-create=true scope=conversation/ I get: | java.lang.RuntimeException: Could not create Component: expanderState | at

[jboss-user] [JBoss Seam] - Re: Configuring POJOs as Seam Components in components.xml

2007-07-11 Thread youngm
http://jira.jboss.org/jira/browse/JBSEAM-1650 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4063268#4063268 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4063268 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Seam 2: is Spring integration totally broken?

2007-07-10 Thread youngm
Can you please file a bug with as much current information and configuration as you can muster? I plan to begin work on official Hibernate support in the spring-seam integration soon and some of this information could come in handy. Mike View the original post :

[jboss-user] [JBoss Seam] - Re: Seam 2: is Spring integration totally broken?

2007-07-10 Thread youngm
Also what happens if you use spring:context-loader instead of the Spring ContextLoaderListener? http://docs.jboss.com/seam/2.0.0.B1/reference/en/html/spring.html#d0e12322 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062521#4062521 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-07-09 Thread youngm
Actually it doesn't work. It appears that MethodContextInterceptor is unwrapping the component and placing it in the method context so when you attempt to inject SomeClass it is an unwrapped instance. This is also going to cause problems if you try to do: | @Name(someClass) | public

[jboss-user] [JBoss Seam] - Re: actions defined in pages.xml

2007-06-28 Thread youngm
There was an error in my example it should actually be: | page view-id=/list.xhtml | navigation | rule if-outcome=detail | render view-id=/detail.xhtml/ | /rule | /navigation | /page |

[jboss-user] [JBoss Seam] - actions defined in pages.xml

2007-06-27 Thread youngm
I'm attempting to get the hang of pages.xml. If I do: | page view-id=/list.xhtml | navigation if-outcome=detail | render view-id=/detail.xhtml/ | /navigation | /page | page view-id=/detail.xhtml

[jboss-user] [JBoss Seam] - Re: actions defined in pages.xml

2007-06-27 Thread youngm
Unfortunately I don't want to do a redirect here because I'm passing some other request parameters in and they get dropped after the redirect??? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058441#4058441 Reply to the post :

[jboss-user] [JBoss Seam] - Best way to clear a factory value?

2007-06-22 Thread youngm
I have a factory method which is conversation scoped but I occasionally want to clear/reload this value in the middle of a conversation. I am currently doing: | public void Component { | | @In(#{factoryValue}) | @Out | List factoryValue; | | @Factory(factoryValue) | public

[jboss-user] [JBoss Seam] - Re: Seam Spring Example

2007-06-14 Thread youngm
This only occurs on restart but cold startup works fine? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054447#4054447 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4054447 ___

[jboss-user] [JBoss Seam] - Re: Seam Spring Example

2007-06-14 Thread youngm
Make sure you have jboss-seam-ioc.jar in your classpath. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054453#4054453 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4054453 ___

[jboss-user] [JBoss Seam] - Re: Seam Spring Example

2007-06-14 Thread youngm
Try changing all instances of www.jboss.com to jboss.com View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054469#4054469 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4054469 ___

[jboss-user] [JBoss Seam] - Re: Seam Spring Example

2007-06-14 Thread youngm
Well, the exception mentions http://www.jboss.com/products/seam/spring-seam-1.2.xsd; as a System Id. So it would probably be in the applicationContext.xml file? http://www.jboss.com/products/seam/spring-seam-1.2.xsd should be http://jboss.com/products/seam/spring-seam-1.2.xsd and

[jboss-user] [JBoss Seam] - Is it possible to access the outer instance of a Seam Compon

2007-06-14 Thread youngm
I have a class with methods like so: | public class SomeClass { | public void createSomething() { | sendAnEmail(); | } | | @Asynchronous | public void sendAnEmail() { | //Send an email asynchronously | } | } | What is the recommended

[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-06-14 Thread youngm
EJB provides the context.getThis() methodperhaps ther e is some kind of Seam execution context we can make available somehow? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054572#4054572 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-06-14 Thread youngm
I believe it does apply interceptors, however, my bean isn't an EJB. :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054574#4054574 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4054574

[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-06-14 Thread youngm
I was just mentioning that as an idea. Perhaps Seam could provide an invocation context in ThreadLocal so I could do something like: InvocationContext.getContext().sendAnEmail(); Just a thought. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054575#4054575

[jboss-user] [JBoss Seam] - Re: Unable to locate NamespaceHandler for namespace [http://

2007-06-05 Thread youngm
Well, they're located in CVS at /src/ioc/META-INF I don't know if they are getting packaged into a source package. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4051515#4051515 Reply to the post :

[jboss-user] [JBoss/Spring Integration] - Re: Spring Tutorial problem

2007-05-31 Thread youngm
It appears that for some reason it's not finding the spring-seam namespace handler. Have you attempted to use a straight build of the example? Does that work with your configuration? Are there any other differences in ear/war structure or difference in .jars in the WEB-INF/lib? View the

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-05-29 Thread youngm
For now you could set up logging to not display any log messages for the ExceptionFilter class. For the future you can vote for this issue http://jira.jboss.org/jira/browse/JBSEAM-1144 which will make it possible to turn off all Seam transaction management so that your back end can own

[jboss-user] [JBoss Seam] - @Name's value configuration by convention

2007-05-03 Thread youngm
Anyone aware of a particular reason why @Name's value attribute is required? It would seem that value would be a perfect candidate for configuration by convention using a camel cased class name. Mike View the original post :

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread youngm
You're right: http://jira.jboss.org/jira/browse/JBSEAM-92 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043024#4043024 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043024 ___

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread youngm
Though it was rejected.it would be interesting to know some of the why behind it but not a big deal. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043025#4043025 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Conversation not being propogated between redirect

2007-05-02 Thread youngm
Oops. I didn't notice you specifically asked Christian to file the issue until after I created it. :) Anyway here you go: http://jira.jboss.org/jira/browse/JBSEAM-1281 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4042458#4042458 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Ability to clone or split a conversation

2007-05-02 Thread youngm
Well, my use case involves any kind of get request. If you're using s:link or h:outputlink with conversation propagation you run the risk of being able to have 2 windows open linked to the same conversation which can cause problems in some cases. In my particular case I'm creating a list

[jboss-user] [JBoss Seam] - PersistenceContext untouch on destory

2007-05-02 Thread youngm
I have a persistence context that I wish to only be created within a nested conversation and destroyed when that nested conversation ends. However, after my nested conversation ends and my PersistenceContext destroyed it is being recreated in my outer conversation when

[jboss-user] [JBoss Seam] - Re: For Gavin to review

2007-05-02 Thread youngm
http://www.jboss.com/index.html?module=bbop=viewtopict=107771 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4042610#4042610 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4042610

[jboss-user] [JBoss Seam] - Re: For Gavin to review

2007-05-01 Thread youngm
http://jira.jboss.org/jira/browse/JBSEAM-1259 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4042217#4042217 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4042217 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Conversation not being propogated between redirect

2007-05-01 Thread youngm
Figured it out. The Ajax4jsf filter was executing after the seam filter. I had my filters configured like so: |filter-mapping | filter-nameajax4jsf/filter-name | servlet-nameFaces Servlet/servlet-name | dispatcherREQUEST/dispatcher |

[jboss-user] [JBoss Seam] - Ability to clone or split a conversation

2007-05-01 Thread youngm
I have the need to spawn a new conversation will all of the same variables of the current conversation but will begin a separate path from that point on. Is this possible? If not currently possible does anyone else think this would be useful? @Begin(clone=true) or something Mike View the

[jboss-user] [JBoss Seam] - Re: For Gavin to review

2007-04-30 Thread youngm
http://jira.jboss.com/jira/browse/JBSEAM-1144 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041902#4041902 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041902 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Conversation not being propogated between redirect

2007-04-30 Thread youngm
Ok, so I got a build working today and I'm still experiencing the problem. Maybe I'm just using seam wrong but here are some more details on what I'm doing. I have a list detail page. I'm storing the current page the user is on in a conversation bean. I begin a conversation in the list

[jboss-user] [JBoss Seam] - Re: Conversation not being propogated between redirect

2007-04-30 Thread youngm
For some reason this tool blanked out my redirect tag in the navigation-case. Believe me it is there. :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041917#4041917 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041917

[jboss-user] [JBoss Seam] - Conversation not being propogated between redirect

2007-04-27 Thread youngm
My conversations aren't being continued between redirects. If my faces-context is handling the navigation and redirect which I thought was ok. The crux of the problem appears to be RedirectFilter needs an active EVENT context. However, the context is being closed in the SeamPhaseListener

[jboss-user] [JBoss Seam] - Re: Conversation not being propogated between redirect

2007-04-27 Thread youngm
I'm getting the problem using a head build from about 2 weeks ago. I tried a new build as of right now but there is a problem with a JSP 2.1 dependency. JBSEAM-1265. If you're not having any trouble I'll try again when the when JBSEAM-1265 is fixed. Mike View the original post :

[jboss-user] [JBoss Seam] - Re: Unable to locate NamespaceHandler for namespace [http://

2007-04-16 Thread youngm
And you have the seam-ioc.jar in the WEB-INF/lib? And that seam-ioc has: /META-INF/spring.handlers and /META-INF/spring.schemas And does the xsd referenced in those files exist in the seam-ioc jar? Mike View the original post :

[jboss-user] [JBoss Seam] - Re: Tomcat deployment with external datasource - is it possi

2007-04-11 Thread youngm
anonymous wrote : BTW, in the meantime I managed to configure Seam (with managed transactions, PCs and the like) without the microcontainer at all - using either JOTM, Atomikos, or JBoss Transactions. It would be great if you could post how you did that in the Seam WIKI or something for others

[jboss-user] [JBoss Seam] - Re: Tomcat deployment with external datasource - is it possi

2007-04-11 Thread youngm
Thanks. I don't know how to put it in the WIKI either but if 1144 get's rejected then I'll figure out how. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4036410#4036410 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Tomcat deployment with external datasource - is it possi

2007-04-11 Thread youngm
Quick question. What are you doing for transactions in integration tests in Seam without the microcontainer? If you're doing integration tests. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4036493#4036493 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Tomcat deployment with external datasource - is it possi

2007-04-10 Thread youngm
I've created a jira issue and a candidate patch for pluggable transaction management in seam. This will allow for use of seam without a dependence on JTA obtained through JNDI. If you want try out the patch and post any feedback you have. At the very least if this is a feature you are

[jboss-user] [JBoss Seam] - Re: Unable to locate NamespaceHandler for namespace [http://

2007-04-10 Thread youngm
Any luck with this geek? :) Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4036188#4036188 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4036188 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: no such setter method: org.jboss.seam.ioc.spring.Context

2007-04-04 Thread youngm
What does your components.xml file look like? I believe the property is supposed to be config-locations not context-locations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034663#4034663 Reply to the post :

[jboss-user] [JBossCache] - Re: JBossCache Transaction Isolation Level

2007-04-03 Thread youngm
Thanks for the insight. Just wanted to make sure I wasn't missing anything. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4034129#4034129 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4034129

[jboss-user] [JBossCache] - JBossCache Transaction Isolation Level

2007-04-02 Thread youngm
I'm using hibernate with a database at READ_COMMITTED isolation level. Does anyone see a problem with using JBossCache PESSIMISTIC at READ_COMMITTED with hibernate? Is there a particular reason why REPEATABLE_READ is the default isolation level? Mike View the original post :

[jboss-user] [JBoss Seam] - Announce: Try out better Spring+Seam PC support and give fee

2007-03-28 Thread youngm
I just checked in some better Seam Managed PC integration with Spring. Here is a list of some of the features: * Automatically makes Seam Managed PC available to spring JPA utilities like JpaTemplate and Spring beans using the Spring PersistenceAnnotationBeanPostProcessor. * If a Seam Managed

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread youngm
Thanks for working through this and providing a solution. What strange errors were you getting when you bean was not marked as lazy? Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029348#4029348 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread youngm
I created an issue to work on better spring EL integration if you want to track it: JBSEAM-1074 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029358#4029358 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029358

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread youngm
Good news, thanks for the following up. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029395#4029395 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029395 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-03-19 Thread youngm
Dan is probably using Spring managed Transactions. Which are not supported by Seam. Though he does bring up an interesting question is it or should it be possible to use Seam and JPA with a JPA Resource local TransactionManager? (em.getTransaction) Mike View the original post :

[jboss-user] [JBoss Seam] - Bijection of Application Scoped Component

2007-03-16 Thread youngm
Just a quick simple question. Is there something in Seam that makes Bijection of an Application scoped component Thread safe? Not that I think there should be something I'm just curious. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4028800#4028800

[jboss-user] [JBoss Seam] - Re: Bijection of Application Scoped Component

2007-03-16 Thread youngm
Thanks. That's what I figured, Just wanted to make sure I'm not missing something. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029000#4029000 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029000

[jboss-user] [JBoss Seam] - Re: seam, spring activemq

2007-03-14 Thread youngm
One other thing to try. What happens if you make your springHook a seam component by nesting seam:component/ in the bean entry? Does that negate the need to call Lifecycle.beginCall()? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4027988#4027988 Reply to

[jboss-user] [JBoss Seam] - Re: seam, spring activemq

2007-03-14 Thread youngm
Actually you will have to do seam:component intercept=ALWAYS / View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4027990#4027990 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4027990

[jboss-user] [JBoss Seam] - Re: seam, spring activemq

2007-03-14 Thread youngm
hmm.you're first attempt should have worked if you did the following: 1. Remove your spring bean reference. 2. Do seam:instance id=springHook name=springHook proxy=true/ 3. You probably will want to change the scope of your SpringHook Seam component to METHOD since I believe you may run into

[jboss-user] [JBoss Seam] - Re: seam, spring activemq

2007-03-14 Thread youngm
You're not bugging me. Something not working the way I expect it to work bugging me. :) anonymous wrote : | but its barfing on startup now with error that seams needs to be configured before spring. | This is probably the heart of the problem. The Spring ContextLoaderListener needs to

[jboss-user] [JBoss Seam] - Ordering seam filters

2007-03-14 Thread youngm
Is it possible to order the chain of seam web filters? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4028067#4028067 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4028067 ___

[jboss-user] [JBoss Seam] - Re: Ordering seam filters

2007-03-14 Thread youngm
I'm looking to add a filter that would make the current seam managed persistence context available in spring's standard ThreadLocal variable and clear it when done. However, this filter would need to be executed before ExceptionFilter so the persistence context created would be available to

  1   2   >