Fwd: 7.0.0.CR1 "White Rabbit" is Released
by Jason T. Greene
-------- Original Message --------
Subject: 7.0.0.CR1 "White Rabbit" is Released
Date: Wed, 29 Jun 2011 02:55:57 -0500
From: Jason T. Greene <jason.greene(a)redhat.com>
To: jboss-as7-dev(a)lists.jboss.org <jboss-as7-dev(a)lists.jboss.org>
I am happy to announce the candidate release for AS7!
In this release we closed a whopping 350 issues and made several notable
changes including
- More spec coverage!
- Clustering (Infinispan + HTTP Session Replication)
- CLI, Console, and management improvements
- Switched to EE Web Profile + JCA + JAX-RS/Resteasy + OSGi as default
config
+ JMS + WS are available in the "preview" profile
+ Each also has an HA profile with clustering
We would appreciate you taking it for a spin, and reporting any issues
you run into.
Before we hit final we are going to be putting energy towards adding
documentation (contributions welcome!). You can see an early starting
point here:
https://docs.jboss.org/author/display/AS7/Documentation
Thanks!
--
Jason T. Greene
JBoss, a division of Red Hat
13 years, 5 months
REMINDER: Participation Requested: Survey about Open-Source Software Development
by Jeffrey Carver
Hi,
Apologies for any inconvenience and thank you to those who have already
completed the survey. We will keep the survey open for another couple of
weeks. But, we do hope you will consider responding to the email request
below (sent 2 weeks ago).
Thanks,
Dr. Jeffrey Carver
Assistant Professor
University of Alabama
(v) 205-348-9829 (f) 205-348-0219
http://www.cs.ua.edu/~carver
-----Original Message-----
From: Jeffrey Carver [mailto:opensourcesurvey@cs.ua.edu]
Sent: Monday, June 13, 2011 11:52 AM
To: 'jboss-development(a)lists.jboss.org'
Subject: Participation Requested: Survey about Open-Source Software
Development
Hi,
Drs. Jeffrey Carver, Rosanna Guadagno, Debra McCallum, and Mr. Amiangshu
Bosu, University of Alabama, and Dr. Lorin Hochstein, University of
Southern California, are conducting a survey of open-source software
developers. This survey seeks to understand how developers on distributed,
virtual teams, like open-source projects, interact with each other to
accomplish their tasks. You must be at least 19 years of age to complete the
survey. The survey should take approximately 15 minutes to complete.
If you are actively participating as a developer, please consider completing
our survey.
Here is the link to the survey: http://goo.gl/HQnux
We apologize for inconvenience and if you receive multiple copies of this
email. This survey has been approved by The University of Alabama IRB board.
Thanks,
Dr. Jeffrey Carver
Assistant Professor
University of Alabama
(v) 205-348-9829 (f) 205-348-0219
http://www.cs.ua.edu/~carver
13 years, 6 months
Participation Requested: Survey about Open-Source Software Development
by Jeffrey Carver
Hi,
Drs. Jeffrey Carver, Rosanna Guadagno, Debra McCallum, and Mr. Amiangshu
Bosu, University of Alabama, and Dr. Lorin Hochstein, University of
Southern California, are conducting a survey of open-source software
developers. This survey seeks to understand how developers on distributed,
virtual teams, like open-source projects, interact with each other to
accomplish their tasks. You must be at least 19 years of age to complete the
survey. The survey should take approximately 15 minutes to complete.
If you are actively participating as a developer, please consider completing
our survey.
Here is the link to the survey: http://goo.gl/HQnux
We apologize for inconvenience and if you receive multiple copies of this
email. This survey has been approved by The University of Alabama IRB board.
Thanks,
Dr. Jeffrey Carver
Assistant Professor
University of Alabama
(v) 205-348-9829 (f) 205-348-0219
http://www.cs.ua.edu/~carver
13 years, 6 months
[JBoss-dev] Multiple Instance of Web Application end Up Using Same JCA Resource
by sjunejo
Hi Guys,
Can anyone solve following;
when I am deploying multiple instances of my web application, each instance
is configured to use different data source (JCA Cx Factory) definition but
both are end up using same data source (whichever used first). Let me
explain a bit, say I have two instance of same web application renamed as
ABCLive and ABCTest.
ABCLive deployment descriptor (web.xml) contains following resource ref
definition;
ABC
jca/abcConnectionFactory
com.....ConnectionFactory
Container
and corresponding jboss-web.xml has following mappings to bind above
resource to an actual JNDI;
jca/abcConnectionFactory
com.....ConnectionFactory
java:jca/abcConnectionFactoryLIVE
In ABCTest deployment descriptor (web.xml) contains following resource ref
definition (exactly same, as we do not have to edit this bit);
ABC
jca/abcConnectionFactory
com.....ConnectionFactory
Container
and corresponding jboss-web.xml has following mappings to bind above
resource to some other JNDI
jca/abcConnectionFactory
com.....ConnectionFactory
java:jca/abcConnectionFactoryTEST
Now theoretically when I will access 'http://localhost:8080/ABCLive'
instance it should use resource 'jca/abcConnectionFactoryLive' and for
'http://localhost:8080/ABCTest' instance it should use resource
'jca/abcConnectionFactoryTEST', BUT that's not the case, whichever I use
first the other will use the same. For example, if I use ABCTest instance
first, it successfully access 'jca/abcConnectionFactoryTEST' and now when I
start using 'ABCLive' instance it also uses 'jca/abcConnectionFactoryTEST'
which is incorrect, it should use 'jca/abcConnectionFactoryLIVE' and vice
versa.
NOTE: I am using jBoss 5.1.0 GA release and IIRC the same setup used to work
with jBoss 4.2.3GA.
Regards,
--
SJunejo
--
View this message in context: http://old.nabble.com/Multiple-Instance-of-Web-Application-end-Up-Using-S...
Sent from the JBoss - Dev mailing list archive at Nabble.com.
13 years, 6 months