Seam 2.3 branch uses Maven
by Marek Novotny
Hi Seam devs,
although Seam 2 is now on leaving to the darkness due new Seam 3, I am
still working on that ;-) to satisfy some old Seam users who wanted
missing features which is worth to do.
First full Mavenized build of Seam 2, second JSF 2 support.
I have imported transformed Seam 2 sources from my github playground
into https://svn.jboss.org/repos/seam/branches/community/Seam_2_3/
Marek Schmidt set up hudson/jenkins CI job for that SVN branch at
http://ci.jboss.org/jenkins/view/Seam/job/Seam-2.3.X-CI/
Credits go to Martin Genčúr for his great effort on transforming Seam 2
examples into Maven build structure.
This process will be followed by releasing 2.3.0.ALPHA
13 years, 8 months
Seam on (upcoming) JBoss AS7 - Please deploy your applications and report any issues
by Jaikiran Pai
Most of you will be aware that JBoss AS 7.0 will be released in the
coming few weeks. For those of you who weren't aware, here's a quick
preview on what's new in JBoss AS7
http://www.dzone.com/links/jboss_as7_is_coming.html.
JBoss AS5 and JBoss AS6 versions have had good support for Seam
applications. We would like to continue having similar support in JBoss
AS7. i.e. We would like your applications which have been running fine
of previous versions, to continue running fine on JBoss AS7 too. As
such, we would like you to start trying out our JBoss AS7 nightly builds
and deploy your Seam applications there. We would like to hear about any
issues or other user experience so that we can fix them before 7.0 CR1
is released. So here's what we request the users to do:
1) Follow this thread http://community.jboss.org/thread/167590?tstart=0
and download the latest AS7 nightly build
2) Follow this JBoss AS7 FAQ for a quick intro on how to run the new
version http://community.jboss.org/wiki/JBossAS7FAQ
3) Deploy your applications
4) Report any issues against AS7 in our AS7 user forum here
http://community.jboss.org/en/jbossas/as7_users?view=discussions
We'll be glad to receive any feedback on what your experience has been
with Seam on AS7.
P.S: This has also been posted in the user forum, but I thought it would
be appropriate in the dev mailing list too.
-Jaikiran
13 years, 8 months
Feedback - JMS APIs
by John D. Ament
Something I've been thinking about for a while now is the mapping APIs used
by Seam JMS. Currently, you write an interface to define routes used by JMS
events. This requires a bit of extra code that I'm not a big fan of. What
I was thinking was put an extra annotation on either the injection point of
the event or the observer method. The idea is that the annotation would
include all of the destination configuration necessary. For example:
@Inject @JMS("jms/QueueOne","jms/QueueTwo","jms/QueueThree") Event<MyType>
myTypeEvent;
@JMS("jms/MyTopic")
public void handleMessages(@Observes Long longsInTopic) {
....
}
The issues I see, since essentially I have to create an extra
observer/firing pair to support each of these, is how to determine the
observed type in the event. In general, any thoughts? Is it possible to
determine the event's type in this case? If so, does the approach make
sense?
- John
13 years, 8 months
TeamSpeak 3 server
by Shane Bryzak
I've signed up for a 15 user TeamSpeak 3 server for us to use, details
are as follows:
Server: 216.6.228.98
Port: 10024
You can download the TS3 client for various OS's at
http://www.teamspeak.com. I'm personally running the client on my
Fedora 15 notebook and it seems to be vastly improved over the TS2
client, excellent support for audio and push to talk key from any app.
13 years, 8 months
Arquillian : Help needed
by Antoine Sabot-Durand
Hi team,
I'm a bit lost with Arquillian. I created a first test in Seam-social impl project. It took me one day to correctly set up my pom to have it running in a weld embedded container (yes I RTFM) and now I have issue with injection (ambiguous injection) with a bean redefined by Seam Config. I push my code to github (head of develop branch) and the test class is org.jboss.seam.social.test.TwitterTest
I launch it by a simple mvn test.
Thanks for any help or clue, if you need more information tell me.
regards,
Antoine
13 years, 8 months