JBossWS SVN: r15344 - hudson/trunk.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-11-24 01:18:53 -0500 (Thu, 24 Nov 2011)
New Revision: 15344
Modified:
hudson/trunk/ant.properties.example
Log:
sync. with upstream
Modified: hudson/trunk/ant.properties.example
===================================================================
--- hudson/trunk/ant.properties.example 2011-11-24 06:16:57 UTC (rev 15343)
+++ hudson/trunk/ant.properties.example 2011-11-24 06:18:53 UTC (rev 15344)
@@ -38,7 +38,7 @@
hudson.jboss702.rev=7.0.2.Final
hudson.jboss710.url=https://github.com/jbossas/jboss-as
-hudson.jboss710.build=jboss-as-7.1.0.Alpha2-SNAPSHOT
+hudson.jboss710.build=jboss-as-7.1.0.CR1-SNAPSHOT
hudson.jboss710.rev=master
hudson.mail.recipients=
13 years
JBossWS SVN: r15343 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-11-24 01:16:57 -0500 (Thu, 24 Nov 2011)
New Revision: 15343
Modified:
stack/cxf/trunk/pom.xml
Log:
sync. with upstream
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2011-11-24 06:03:04 UTC (rev 15342)
+++ stack/cxf/trunk/pom.xml 2011-11-24 06:16:57 UTC (rev 15343)
@@ -71,7 +71,7 @@
<jboss700.version>7.0.0.Final</jboss700.version>
<jboss701.version>7.0.1.Final</jboss701.version>
<jboss702.version>7.0.2.Final</jboss702.version>
- <jboss710.version>7.1.0.Alpha2-SNAPSHOT</jboss710.version>
+ <jboss710.version>7.1.0.CR1-SNAPSHOT</jboss710.version>
<ejb.api.version>1.0.1.Final</ejb.api.version>
<cxf.version>2.4.4</cxf.version>
<cxf.asm.version>3.3</cxf.asm.version>
13 years
JBossWS SVN: r15342 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-11-24 01:03:04 -0500 (Thu, 24 Nov 2011)
New Revision: 15342
Modified:
stack/native/trunk/pom.xml
Log:
sync. with upstream
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2011-11-23 16:20:21 UTC (rev 15341)
+++ stack/native/trunk/pom.xml 2011-11-24 06:03:04 UTC (rev 15342)
@@ -70,7 +70,7 @@
<jboss700.version>7.0.0.Final</jboss700.version>
<jboss701.version>7.0.1.Final</jboss701.version>
<jboss702.version>7.0.2.Final</jboss702.version>
- <jboss710.version>7.1.0.Alpha2-SNAPSHOT</jboss710.version>
+ <jboss710.version>7.1.0.CR1-SNAPSHOT</jboss710.version>
<ejb.api.version>1.0.1.Final</ejb.api.version>
<ant.version>1.7.1</ant.version>
<codehaus.jettison.version>1.0-RC2</codehaus.jettison.version>
13 years
JBossWS SVN: r15341 - in stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core: client and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: mmusaji
Date: 2011-11-23 11:20:21 -0500 (Wed, 23 Nov 2011)
New Revision: 15341
Modified:
stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/StubExt.java
stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
Log:
[JBPAPP-7554] - Added PROPERTY_CHUNKED_ENCODING_SIZE and check to disable chunked encoding if value is set below 0
Modified: stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/StubExt.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/StubExt.java 2011-11-23 06:46:47 UTC (rev 15340)
+++ stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/StubExt.java 2011-11-23 16:20:21 UTC (rev 15341)
@@ -71,6 +71,8 @@
static final String PROPERTY_AUTH_TYPE_WSSE = "org.jboss.ws.authType.wsse";
/** Enable MTOM on the stub */
static final String PROPERTY_MTOM_ENABLED= "org.jboss.ws.mtom.enabled";
+ /** HTTP chunk size */
+ static final String PROPERTY_CHUNKED_ENCODING_SIZE = "http://org.jboss.ws/http#chunksize";
/**
* Get the endpoint meta data for this stub
Modified: stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2011-11-23 06:46:47 UTC (rev 15340)
+++ stack/native/branches/jbossws-native-3.1.2.SP3_CP01_JBPAPP-7554/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2011-11-23 16:20:21 UTC (rev 15341)
@@ -301,6 +301,7 @@
// Enable chunked encoding. This is the default size.
int chunkSizeValue = (chunkedLength != null ? chunkedLength : 1024);
+ boolean fastInfosetEnabled = false;
// Overwrite, through endpoint config
if (msgContext != null)
@@ -313,9 +314,19 @@
chunkSizeValue = Integer.valueOf(sizeValue);
if (epMetaData.isFeatureEnabled(FastInfosetFeature.class))
+ {
+ fastInfosetEnabled = true;
chunkSizeValue = 0;
+ }
}
+ if (fastInfosetEnabled == false)
+ {
+ String sizeValue = (String)callProps.get(StubExt.PROPERTY_CHUNKED_ENCODING_SIZE);
+ if (sizeValue != null)
+ chunkSizeValue = Integer.valueOf(sizeValue);
+ }
+
if (chunkSizeValue > 0)
{
clientConfig.put("chunkedLength", String.valueOf(chunkSizeValue));
13 years
JBossWS SVN: r15340 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-11-23 01:46:47 -0500 (Wed, 23 Nov 2011)
New Revision: 15340
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
sync. jboss-ejb-client with upstream
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-23 06:44:47 UTC (rev 15339)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-23 06:46:47 UTC (rev 15340)
@@ -1519,7 +1519,7 @@
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-ejb-client</artifactId>
- <version>1.0.0.Beta6</version>
+ <version>1.0.0.Beta7</version>
<exclusions>
<exclusion>
<groupId>org.jboss.remoting3</groupId>
13 years
JBossWS SVN: r15339 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-11-23 01:44:47 -0500 (Wed, 23 Nov 2011)
New Revision: 15339
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
sync. jboss-ejb-client with upstream
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-11-23 06:20:32 UTC (rev 15338)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-11-23 06:44:47 UTC (rev 15339)
@@ -1289,7 +1289,7 @@
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-ejb-client</artifactId>
- <version>1.0.0.Beta6</version>
+ <version>1.0.0.Beta7</version>
<exclusions>
<exclusion>
<groupId>org.jboss.remoting3</groupId>
13 years
JBossWS SVN: r15338 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-11-23 01:20:32 -0500 (Wed, 23 Nov 2011)
New Revision: 15338
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
Get remoting version from AS7 maven artifacts dependencies to be in synch with AS7
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-11-23 06:18:20 UTC (rev 15337)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-11-23 06:20:32 UTC (rev 15338)
@@ -1290,6 +1290,12 @@
<groupId>org.jboss</groupId>
<artifactId>jboss-ejb-client</artifactId>
<version>1.0.0.Beta6</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jboss.remoting3</groupId>
+ <artifactId>jboss-remoting</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.jboss.naming</groupId>
13 years
JBossWS SVN: r15337 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-11-23 01:18:20 -0500 (Wed, 23 Nov 2011)
New Revision: 15337
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
Get remoting version from AS7 maven artifacts dependencies to be in synch with AS7
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-22 15:07:09 UTC (rev 15336)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-23 06:18:20 UTC (rev 15337)
@@ -1520,6 +1520,12 @@
<groupId>org.jboss</groupId>
<artifactId>jboss-ejb-client</artifactId>
<version>1.0.0.Beta6</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jboss.remoting3</groupId>
+ <artifactId>jboss-remoting</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.jboss.naming</groupId>
13 years
JBossWS SVN: r15336 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-11-22 10:07:09 -0500 (Tue, 22 Nov 2011)
New Revision: 15336
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3389] Restore tests
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-22 15:03:56 UTC (rev 15335)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-22 15:07:09 UTC (rev 15336)
@@ -1675,9 +1675,6 @@
<!-- AS7 integration exclusions -->
<!-- ////////////////////////// -->
- <!-- # [JBWS-3389] investigate & fix regression -->
- <exclude>org/jboss/test/ws/jaxws/cxf/jms_http/JMSHTTPEndpointDeploymentTestCase*</exclude>
-
<!-- # [JBWS-3388] Rewrite JMX based tests -->
<exclude>org/jboss/test/ws/jaxws/cxf/management/CXFManagementTestCase*</exclude>
<exclude>org/jboss/test/ws/management/recording/MemoryBufferRecorderTestCase*</exclude>
13 years
JBossWS SVN: r15335 - hudson/trunk/scripts.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-11-22 10:03:56 -0500 (Tue, 22 Nov 2011)
New Revision: 15335
Modified:
hudson/trunk/scripts/jboss.sh
Log:
[JBWS-3389] AS 7.1.x now has standalone-full.xml and the messaging stuff is in there only
Modified: hudson/trunk/scripts/jboss.sh
===================================================================
--- hudson/trunk/scripts/jboss.sh 2011-11-22 10:15:54 UTC (rev 15334)
+++ hudson/trunk/scripts/jboss.sh 2011-11-22 15:03:56 UTC (rev 15335)
@@ -14,6 +14,11 @@
cp $JBOSS_HOME/standalone/configuration/standalone-preview.xml $JBOSS_HOME/standalone/configuration/standalone.xml
fi
+# Overwrite standalone.xml with standalone-preview.xml if available (AS 7.1.x since https://github.com/jbossas/jboss-as/commit/641a75718909fbe04f80a15740ecb2... )
+if [ -f "$JBOSS_HOME/standalone/configuration/standalone-full.xml" ]; then
+ cp $JBOSS_HOME/standalone/configuration/standalone-full.xml $JBOSS_HOME/standalone/configuration/standalone.xml
+fi
+
if [ -f "$JBOSS_HOME/bin/run.sh" ]; then
RUN_CMD="$DIRNAME/runjboss.sh -b $BINDADDR"
else
13 years