JBossWS SVN: r5545 - stack/native/trunk/src/main/etc.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-28 11:15:02 -0500 (Mon, 28 Jan 2008)
New Revision: 5545
Modified:
stack/native/trunk/src/main/etc/wsrunclient.bat
stack/native/trunk/src/main/etc/wsrunclient.sh
Log:
Adding xmlsec.jar to client classpath in wsrunclient: this allows clients using ws-security to run without further classpath changes
Modified: stack/native/trunk/src/main/etc/wsrunclient.bat
===================================================================
--- stack/native/trunk/src/main/etc/wsrunclient.bat 2008-01-28 10:08:59 UTC (rev 5544)
+++ stack/native/trunk/src/main/etc/wsrunclient.bat 2008-01-28 16:15:02 UTC (rev 5545)
@@ -44,6 +44,7 @@
rem Setup the client classpath
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/log4j.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-client.jar
+set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/xmlsec.jar
rem JBossAS-5.0 subset of jbossall-client.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jboss-logging-spi.jar
Modified: stack/native/trunk/src/main/etc/wsrunclient.sh
===================================================================
--- stack/native/trunk/src/main/etc/wsrunclient.sh 2008-01-28 10:08:59 UTC (rev 5544)
+++ stack/native/trunk/src/main/etc/wsrunclient.sh 2008-01-28 16:15:02 UTC (rev 5545)
@@ -66,6 +66,7 @@
# Setup the client classpath
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/log4j.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-client.jar"
+WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/xmlsec.jar"
# JBossAS-5.0 subset of jbossall-client.jar
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jboss-logging-spi.jar"
16 years, 10 months
JBossWS SVN: r5544 - stack/native/trunk/src/main/etc.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-28 05:08:59 -0500 (Mon, 28 Jan 2008)
New Revision: 5544
Modified:
stack/native/trunk/src/main/etc/wsrunclient.sh
Log:
[JBWS-1970] wsrunclient doesn't work with args
Modified: stack/native/trunk/src/main/etc/wsrunclient.sh
===================================================================
--- stack/native/trunk/src/main/etc/wsrunclient.sh 2008-01-25 16:15:58 UTC (rev 5543)
+++ stack/native/trunk/src/main/etc/wsrunclient.sh 2008-01-28 10:08:59 UTC (rev 5544)
@@ -33,7 +33,7 @@
while [ $# -ge 1 ]; do
case $1 in
"-classpath") WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$2"; shift;;
- *) args="$1";;
+ *) args=$args" $1";;
esac
shift
done
@@ -87,4 +87,4 @@
-Djava.endorsed.dirs="$JBOSS_ENDORSED_DIRS" \
-Dlog4j.configuration=wstools-log4j.xml \
-classpath "$WSRUNCLIENT_CLASSPATH" \
- "$args"
+ $args
16 years, 10 months
JBossWS SVN: r5543 - in legacy: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-25 11:15:58 -0500 (Fri, 25 Jan 2008)
New Revision: 5543
Added:
legacy/tags/jbossws-1.2.1.GA_CP02/
Removed:
legacy/branches/jbossws-1.2.1.GA_CP02/
Log:
[JBPAPP-332] Release and upgrade to next JBossWS 1.2.1.GA_CP
Copied: legacy/tags/jbossws-1.2.1.GA_CP02 (from rev 5542, legacy/branches/jbossws-1.2.1.GA_CP02)
16 years, 10 months
JBossWS SVN: r5542 - legacy/branches/jbossws-1.2.1.GA_CP02/build.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-25 11:01:57 -0500 (Fri, 25 Jan 2008)
New Revision: 5542
Modified:
legacy/branches/jbossws-1.2.1.GA_CP02/build/version.properties
Log:
[JBPAPP-332] Release and upgrade to next JBossWS 1.2.1.GA_CP
Modified: legacy/branches/jbossws-1.2.1.GA_CP02/build/version.properties
===================================================================
--- legacy/branches/jbossws-1.2.1.GA_CP02/build/version.properties 2008-01-25 14:44:15 UTC (rev 5541)
+++ legacy/branches/jbossws-1.2.1.GA_CP02/build/version.properties 2008-01-25 16:01:57 UTC (rev 5542)
@@ -5,8 +5,8 @@
specification.vendor=JBoss (http://www.jboss.org)
specification.version=jbossws-1.2
-version.id=1.2.1.GA_CP01
-repository.id=1.2.1.GA_CP01
+version.id=1.2.1.GA_CP02
+repository.id=1.2.1.GA_CP02
implementation.title=JBoss Web Services (JBossWS)
implementation.url=http://www.jboss.org/products/jbossws
16 years, 10 months
JBossWS SVN: r5541 - legacy/branches.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-25 09:44:15 -0500 (Fri, 25 Jan 2008)
New Revision: 5541
Added:
legacy/branches/jbossws-1.2.1.GA_CP02/
Log:
[JBPAPP-332] Release and upgrade to next JBossWS 1.2.1.GA_CP
Copied: legacy/branches/jbossws-1.2.1.GA_CP02 (from rev 5540, legacy/branches/jbossws-1.2.1.GA_CP)
16 years, 10 months
JBossWS SVN: r5540 - in stack/native/branches/jbossws-native-2.0.3.QA: src/main/distro and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-25 07:17:31 -0500 (Fri, 25 Jan 2008)
New Revision: 5540
Modified:
stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/Install.txt
stack/native/branches/jbossws-native-2.0.3.QA/version.properties
Log:
Correct installation instructions
Modified: stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/Install.txt
===================================================================
--- stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/Install.txt 2008-01-25 10:28:46 UTC (rev 5539)
+++ stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/Install.txt 2008-01-25 12:17:31 UTC (rev 5540)
@@ -13,9 +13,9 @@
2.) Modify the target container location in ant.properties
3.) Execute one of the following
- ant deploy-jboss50
- ant deploy-jboss42
- ant deploy-jboss40
+ ant deploy-jboss500
+ ant deploy-jboss422
+ ant deploy-jboss405
Please consult the wiki for detailed up to date install instructions
http://labs.jboss.com/portal/jbossws/
@@ -27,4 +27,4 @@
http://www.jboss.org/index.html?module=bb&op=viewforum&f=200
Enjoy,
-The JBossWS Team
\ No newline at end of file
+The JBossWS Team
Modified: stack/native/branches/jbossws-native-2.0.3.QA/version.properties
===================================================================
--- stack/native/branches/jbossws-native-2.0.3.QA/version.properties 2008-01-25 10:28:46 UTC (rev 5539)
+++ stack/native/branches/jbossws-native-2.0.3.QA/version.properties 2008-01-25 12:17:31 UTC (rev 5540)
@@ -32,11 +32,11 @@
# JBossAS-5.0
jboss-jbossxb-jboss50=2.0.0.CR5
-jboss-remoting-jboss50=2.2.2.SP4
+jboss-remoting-jboss50=2.2.2.SP4-brew
# JBossAS-4.2
jboss-jbossxb-jboss42=1.0.0.SP1
-jboss-remoting-jboss42=2.2.2.SP4
+jboss-remoting-jboss42=2.2.2.SP4-brew
# JBossAS-4.0
jboss-jbossxb-jboss40=1.0.0.CR11
16 years, 10 months
JBossWS SVN: r5539 - stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/jmstransport.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-25 05:28:46 -0500 (Fri, 25 Jan 2008)
New Revision: 5539
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/jmstransport/OrganizationJMSEndpoint.java
Log:
Fix jmstransport. The bean needs to provide an explicit listener interface
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/jmstransport/OrganizationJMSEndpoint.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/jmstransport/OrganizationJMSEndpoint.java 2008-01-25 06:31:21 UTC (rev 5538)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/jmstransport/OrganizationJMSEndpoint.java 2008-01-25 10:28:46 UTC (rev 5539)
@@ -33,7 +33,10 @@
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
- @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/RequestQueue") })
+ @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/RequestQueue")
+ },
+ messageListenerInterface = javax.jms.MessageListener.class
+)
public class OrganizationJMSEndpoint extends JMSTransportSupportEJB3
{
// provide logging
16 years, 10 months
JBossWS SVN: r5538 - framework/trunk/hudson/hudson-home/jobs/Release-Matrix-Step1.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-01-25 01:31:21 -0500 (Fri, 25 Jan 2008)
New Revision: 5538
Modified:
framework/trunk/hudson/hudson-home/jobs/Release-Matrix-Step1/config.xml
Log:
[JBWS-1962] updated release matrix to include TCK14 tests as well
Modified: framework/trunk/hudson/hudson-home/jobs/Release-Matrix-Step1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Release-Matrix-Step1/config.xml 2008-01-24 22:05:32 UTC (rev 5537)
+++ framework/trunk/hudson/hudson-home/jobs/Release-Matrix-Step1/config.xml 2008-01-25 06:31:21 UTC (rev 5538)
@@ -3,7 +3,7 @@
<builders class="vector"/>
<publishers class="vector">
<hudson.tasks.BuildTrigger>
- <childProjects>AS-4.0.5, AS-4.2.1, AS-4.2.2, AS-4.2.3, AS-5.0.0</childProjects>
+ <childProjects>AS-4.0.5, AS-4.2.1, AS-4.2.2, AS-4.2.3, AS-5.0.0, TCK-1.4</childProjects>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers class="vector"/>
16 years, 10 months
JBossWS SVN: r5537 - in framework/trunk/hudson/hudson-home/jobs: Native-Tck14-Jaxrpc-AS-4.2.3 and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-01-24 17:05:32 -0500 (Thu, 24 Jan 2008)
New Revision: 5537
Modified:
framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxr-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxrpc-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Saaj-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Webservices-AS-4.2.3/config.xml
Log:
[JBWS-1962] optimization - do not checkout J2EE14 RI, just copy it
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxr-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxr-AS-4.2.3/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxr-AS-4.2.3/config.xml 2008-01-24 22:05:32 UTC (rev 5537)
@@ -48,7 +48,7 @@
#
if [ ! -f $J2EERI14_INSTALL_FILE ]
then
- svn export https://svn.corp.jboss.com/repos/tck/j2ee14-tck-dist/trunk/$J2EERI14_INST...
+ cp -f @hudson.home(a)/jobs/TCK-1.4/workspace/$J2EERI14_INSTALL_FILE .
fi
if [ -f $J2EERI14_INSTALL_FILE ]
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxrpc-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxrpc-AS-4.2.3/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Jaxrpc-AS-4.2.3/config.xml 2008-01-24 22:05:32 UTC (rev 5537)
@@ -48,7 +48,7 @@
#
if [ ! -f $J2EERI14_INSTALL_FILE ]
then
- svn export https://svn.corp.jboss.com/repos/tck/j2ee14-tck-dist/trunk/$J2EERI14_INST...
+ cp -f @hudson.home(a)/jobs/TCK-1.4/workspace/$J2EERI14_INSTALL_FILE .
fi
if [ -f $J2EERI14_INSTALL_FILE ]
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Saaj-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Saaj-AS-4.2.3/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Saaj-AS-4.2.3/config.xml 2008-01-24 22:05:32 UTC (rev 5537)
@@ -48,7 +48,7 @@
#
if [ ! -f $J2EERI14_INSTALL_FILE ]
then
- svn export https://svn.corp.jboss.com/repos/tck/j2ee14-tck-dist/trunk/$J2EERI14_INST...
+ cp -f @hudson.home(a)/jobs/TCK-1.4/workspace/$J2EERI14_INSTALL_FILE .
fi
if [ -f $J2EERI14_INSTALL_FILE ]
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Webservices-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Webservices-AS-4.2.3/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Tck14-Webservices-AS-4.2.3/config.xml 2008-01-24 22:05:32 UTC (rev 5537)
@@ -48,7 +48,7 @@
#
if [ ! -f $J2EERI14_INSTALL_FILE ]
then
- svn export https://svn.corp.jboss.com/repos/tck/j2ee14-tck-dist/trunk/$J2EERI14_INST...
+ cp -f @hudson.home(a)/jobs/TCK-1.4/workspace/$J2EERI14_INSTALL_FILE .
fi
if [ -f $J2EERI14_INSTALL_FILE ]
16 years, 10 months
JBossWS SVN: r5536 - in framework/trunk/hudson/hudson-home/jobs: TCK-1.4 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-01-24 16:55:06 -0500 (Thu, 24 Jan 2008)
New Revision: 5536
Modified:
framework/trunk/hudson/hudson-home/jobs/Native-ALL/config.xml
framework/trunk/hudson/hudson-home/jobs/TCK-1.4/config.xml
Log:
[JBWS-1962] optimizing TCK14 hudson job - checkout from JBoss internal SVN only on first call of the suite
Modified: framework/trunk/hudson/hudson-home/jobs/Native-ALL/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-ALL/config.xml 2008-01-24 20:34:20 UTC (rev 5535)
+++ framework/trunk/hudson/hudson-home/jobs/Native-ALL/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
@@ -7,7 +7,7 @@
Native-Core-AS-4.0.5, Native-Core-AS-4.0.5-No-EJB3, Native-Core-AS-4.2.1, Native-Core-AS-4.2.2, Native-Core-AS-4.2.2-JDK6, Native-Core-AS-4.2.3, Native-Core-AS-4.2.3-JDK6, Native-Core-AS-5.0.0,
Native-Distro-AS-4.0.5, Native-Distro-AS-4.0.5-No-EJB3, Native-Distro-AS-4.2.1, Native-Distro-AS-4.2.2, Native-Distro-AS-4.2.2-JDK6, Native-Distro-AS-4.2.3, Native-Distro-AS-4.2.3-JDK6, Native-Distro-AS-5.0.0,
Native-Integration-AS-4.0.5, Native-Integration-AS-4.0.5-No-EJB3, Native-Integration-AS-4.2.1, Native-Integration-AS-4.2.2, Native-Integration-AS-4.2.3, Native-Integration-AS-5.0.0,
- Native-Tck14-Jaxr-AS-4.2.3, Native-Tck14-Jaxrpc-AS-4.2.3, Native-Tck14-Saaj-AS-4.2.3, Native-Tck14-Webservices-AS-4.2.3,
+ Native-Tck14-Jaxr-AS-4.2.3, Native-Tck14-Jaxrpc-AS-4.2.3, Native-Tck14-Saaj-AS-4.2.3, Native-Tck14-Webservices-AS-4.2.3
</childProjects>
</hudson.tasks.BuildTrigger>
</publishers>
Modified: framework/trunk/hudson/hudson-home/jobs/TCK-1.4/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/TCK-1.4/config.xml 2008-01-24 20:34:20 UTC (rev 5535)
+++ framework/trunk/hudson/hudson-home/jobs/TCK-1.4/config.xml 2008-01-24 21:55:06 UTC (rev 5536)
@@ -4,16 +4,24 @@
<hudson.tasks.Shell>
<command>
#
-# Module settings
+# IMPORTANT: For the first execution of this suite the following preconditions must be fulfilled:
+# * RED HAT VPN must be turned on on test machine
+# * User under which HUDSON environment is running must be logged in to
+# https://svn.corp.jboss.com/repos SVN repository
#
-SVNBASE=TCK-1.4
-
+
#
-# Verify build
+# prepare necessary TCK14 artifacts if not yet available
#
-if [ ! -d $SVNBASE ]; then
- echo "Cannot find expected build: $SVNBASE"
- exit 1
+if [ ! -f tck14.prepared ]
+then
+ echo "Checking out TCK14"
+ svn co https://svn.corp.jboss.com/repos/tck/tck141/trunk TCK-1.4
+ echo "Exporting J2EE14 RI"
+ svn export https://svn.corp.jboss.com/repos/tck/j2ee14-tck-dist/trunk/j2eeri-1_4_1-f...
+ touch tck14.prepared
+else
+ echo "Nothing to do. All necessary artifacts are already checked out and exported from jboss internal SVN repository"
fi
</command>
</hudson.tasks.Shell>
@@ -24,23 +32,16 @@
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>true</sendToIndividuals>
</hudson.tasks.Mailer>
- <!--hudson.tasks.BuildTrigger>
- <childProjects>TCK-1.4</childProjects>
- </hudson.tasks.BuildTrigger-->
</publishers>
<buildWrappers class="vector"/>
<scm class="hudson.scm.SubversionSCM">
<locations>
<hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.tck14.url@</remote>
- <local>TCK-1.4</local>
+ <remote>@hudson.framework.url@</remote>
+ <local>framework</local>
</hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
- <!--browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossAS/</url>
- <rootModule></rootModule>
- </browser-->
</scm>
<canRoam>true</canRoam>
<disabled>false</disabled>
@@ -52,6 +53,6 @@
</logRotator>
<keepDependencies>false</keepDependencies>
<properties/>
- <description>Build TCK-1.4</description>
+ <description>Prepare TCK-1.4 artifacts</description>
<actions class="vector"/>
-</project>
\ No newline at end of file
+</project>
16 years, 10 months