[Clustering/JBoss] - Re: HA-JMS
by ratrask
Thanks Brian,
I did not see your reply until today. it would have saved me sme pretty frustrating intervening days.
When I try the -b option, either of them it works with no problems, if I remove the -b option the problem recurs.
The problem was pretty vexing, because it occurred on two different networks that were administered independently. It happened every time I tried it as long as I had a valid setup.
I am kind of a cygwin junky, and the only commonality between the two environments was that I started the servers from cygwin with run.sh do you think this could be related to the issue?
None of the servers are dual homed, so I was dubious that your suggestion would work.
Another curiosity is that the problem happens in 4.2.0, but not in 4.0.5
At this point I have rolled back to 4.0.5.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4091790#4091790
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4091790
18Â years, 6Â months
[JBoss Seam] - Re: @in(create=true) not working !
by kukeltje
I have been struggling with this as well for the last few hours. The way I finally solved it was giving the injected variable the same name as the @Name value of the object to be injected. If I do not do this, I see in the debug that Seam tries to find a contectVariable with the name of the variable to be injected. It does not look (anymore?) for a contextVariable of the same type. If it finds nothing, no the create=true does not go off.
So:
@In(create=true) MyObj myVar
| in combination with
| @Name("myVar")
works
whereas
@In(create=true) MyObj myOtherVar
| in combination with
| @Name("myVar")
does not (does not find the variable, but worse, does not create a new one)
An additional test with
@In(create=true, value="myVar") MyObj myOtherVar
| in combination with
| @Name("myVar")
works to...
Oh.. and I do not have a richpanel
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4091786#4091786
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4091786
18Â years, 6Â months