JBossWS SVN: r14786 - in stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864: modules/core/src/main/java/org/jboss/ws/core and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: mmusaji
Date: 2011-08-08 10:32:53 -0400 (Mon, 08 Aug 2011)
New Revision: 14786
Modified:
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPFaultException.java
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderDOM.java
Log:
JBPAPP-6864 Added additional changes to to ensure the root cause and message is passed back to the client
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath 2011-08-08 11:31:40 UTC (rev 14785)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath 2011-08-08 14:32:53 UTC (rev 14786)
@@ -11,5 +11,6 @@
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget/JBoss 5.1.1 npeInvalidCharWS Runtime"/>
+ <classpathentry kind="lib" path="/NotBackedUp/JBoss_instances/JBoss5.1.1-unsigned/lib/endorsed/xercesImpl.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPFaultException.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPFaultException.java 2011-08-08 11:31:40 UTC (rev 14785)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPFaultException.java 2011-08-08 14:32:53 UTC (rev 14786)
@@ -32,6 +32,7 @@
{
private QName faultCode;
private String faultString;
+ private Throwable throwable;
public CommonSOAPFaultException(QName faultCode, String faultString)
{
@@ -40,6 +41,15 @@
this.faultCode = faultCode;
this.faultString = faultString;
}
+
+ public CommonSOAPFaultException(QName faultCode, Throwable throwable) {
+
+ super(throwable.getMessage(), throwable);
+
+ this.faultCode = faultCode;
+ this.throwable = throwable;
+
+ }
public QName getFaultCode()
{
@@ -50,4 +60,9 @@
{
return faultString;
}
+
+ public Throwable getThrowable()
+ {
+ return throwable;
+ }
}
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2011-08-08 11:31:40 UTC (rev 14785)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2011-08-08 14:32:53 UTC (rev 14786)
@@ -263,8 +263,15 @@
{
throw new WSTimeoutException("Timeout after: " + timeout + "ms", new Long(timeout.toString()));
}
+
+ IOException io = null;
- IOException io = new IOException("Could not transmit message");
+ if(th.getCause().getMessage() != null) {
+ io = new IOException(th.getCause().getMessage());
+ }else {
+ io = new IOException("Could not transmit message");
+ }
+
io.initCause(th);
throw io;
}
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderDOM.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderDOM.java 2011-08-08 11:31:40 UTC (rev 14785)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderDOM.java 2011-08-08 14:32:53 UTC (rev 14786)
@@ -91,7 +91,7 @@
return null;
}
QName faultCode = Constants.SOAP11_FAULT_CODE_CLIENT;
- throw new CommonSOAPFaultException(faultCode, ex.getMessage());
+ throw new CommonSOAPFaultException(faultCode, ex);
}
return build(soapMessage, domEnv);
13 years, 4 months
JBossWS SVN: r14785 - in stack/native/branches/jbossws-native-3.4.1.SP2: modules/core and 4 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-08 07:31:40 -0400 (Mon, 08 Aug 2011)
New Revision: 14785
Added:
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss610.txt
Removed:
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss601.txt
Modified:
stack/native/branches/jbossws-native-3.4.1.SP2/build.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/src/main/scripts/antrun-beans-config.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/ant.properties.example
stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-deploy.xml
stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-setup.xml
stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build.xml
stack/native/branches/jbossws-native-3.4.1.SP2/src/main/scripts/assembly-deploy-artifacts.xml
Log:
adding support for AS 610
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/build.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/build.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/build.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -60,8 +60,8 @@
<condition property="jboss600.home" value="${profiles.profile.properties.jboss600.home}">
<isset property="profiles.profile.properties.jboss600.home"/>
</condition>
- <condition property="jboss601.home" value="${profiles.profile.properties.jboss601.home}">
- <isset property="profiles.profile.properties.jboss601.home"/>
+ <condition property="jboss610.home" value="${profiles.profile.properties.jboss610.home}">
+ <isset property="profiles.profile.properties.jboss610.home"/>
</condition>
<!-- Loads the properties from the user profile -->
@@ -69,13 +69,13 @@
<property name="jboss501.home" value="${profiles.profile.properties.jboss501.home}"/>
<property name="jboss510.home" value="${profiles.profile.properties.jboss510.home}"/>
<property name="jboss600.home" value="${profiles.profile.properties.jboss600.home}"/>
- <property name="jboss601.home" value="${profiles.profile.properties.jboss601.home}"/>
+ <property name="jboss610.home" value="${profiles.profile.properties.jboss610.home}"/>
<echo/>
<echo message="jboss501.home=${jboss501.home}"/>
<echo message="jboss510.home=${jboss510.home}"/>
<echo message="jboss600.home=${jboss600.home}"/>
- <echo message="jboss601.home=${jboss601.home}"/>
+ <echo message="jboss610.home=${jboss610.home}"/>
</target>
<target name="init" depends="mvn-settings,prepare,os-init">
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -233,10 +233,10 @@
<artifactItem>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss600x</artifactId>
- <version>${jbossws.jboss601.version}</version>
+ <version>${jbossws.jboss610.version}</version>
<classifier>resources</classifier>
<type>zip</type>
- <outputDirectory>${project.build.directory}/resources/jbossws-jboss601</outputDirectory>
+ <outputDirectory>${project.build.directory}/resources/jbossws-jboss610</outputDirectory>
</artifactItem>
-->
<!-- END -->
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/src/main/scripts/antrun-beans-config.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/src/main/scripts/antrun-beans-config.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/src/main/scripts/antrun-beans-config.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -33,7 +33,7 @@
<copy
file="${src.dir}/jbossws-native-config-as6.xml"
- tofile="${dest.dir}/jbossws-jboss601/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
+ tofile="${dest.dir}/jbossws-jboss610/jbossws.beans/META-INF/stack-specific-jboss-beans.xml"
/>
</target>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -556,14 +556,14 @@
</profile>
<!--
- Name: jboss601
- Descr: JBoss-6.0.1 specific options
+ Name: jboss610
+ Descr: JBoss-6.1.0 specific options
-->
<profile>
- <id>jboss601</id>
+ <id>jboss610</id>
<properties>
- <jboss.version>6.0.0-SNAPSHOT</jboss.version>
- <jbossws.integration.target>jboss601</jbossws.integration.target>
+ <jboss.version>6.1.0-SNAPSHOT</jboss.version>
+ <jbossws.integration.target>jboss610</jbossws.integration.target>
</properties>
<dependencies>
<dependency>
@@ -641,14 +641,14 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- http://jira.codehaus.org/browse/MCOMPILER-72 -->
- <testExcludeFile>../test-excludes-jboss601.txt</testExcludeFile>
- <compilerArgument>-Djava.endorsed.dirs=${jboss601.home}/lib/endorsed</compilerArgument>
+ <testExcludeFile>../test-excludes-jboss610.txt</testExcludeFile>
+ <compilerArgument>-Djava.endorsed.dirs=${jboss610.home}/lib/endorsed</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${jboss601.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${jboss610.home}/lib/endorsed</argLine>
</configuration>
</plugin>
</plugins>
Deleted: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss601.txt
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss601.txt 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss601.txt 2011-08-08 11:31:40 UTC (rev 14785)
@@ -1,11 +0,0 @@
-# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration
-org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*
-
-# [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored
-org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*
-
-# [JBAS-8363] Virtual host issue in JBossWeb
-org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.*
-
-# [JBWS-3150] This test causes hudson to freeze
-org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*
Added: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss610.txt
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss610.txt (rev 0)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/test-excludes-jboss610.txt 2011-08-08 11:31:40 UTC (rev 14785)
@@ -0,0 +1,11 @@
+# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration
+org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*
+
+# [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored
+org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*
+
+# [JBAS-8363] Virtual host issue in JBossWeb
+org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.*
+
+# [JBWS-3150] This test causes hudson to freeze
+org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -55,7 +55,7 @@
<!-- START -->
<!--
<jbossws.jboss600M5.version>3.4.1-SNAPSHOT</jbossws.jboss600M5.version>
- <jbossws.jboss601.version>3.2.1.GA</jbossws.jboss601.version>
+ <jbossws.jboss610.version>3.2.1.GA</jbossws.jboss610.version>
-->
<!-- END -->
<codehaus.jettison.version>1.0-RC2</codehaus.jettison.version>
@@ -160,12 +160,12 @@
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss600x</artifactId>
- <version>${jbossws.jboss601.version}</version>
+ <version>${jbossws.jboss610.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss600x</artifactId>
- <version>${jbossws.jboss601.version}</version>
+ <version>${jbossws.jboss610.version}</version>
<classifier>resources</classifier>
<type>zip</type>
</dependency>
@@ -618,14 +618,14 @@
</profile>
<!--
- Name: jboss601
- Descr: JBoss-6.0.1 specific options
+ Name: jboss610
+ Descr: JBoss-6.1.0 specific options
-->
<profile>
- <id>jboss601</id>
+ <id>jboss610</id>
<properties>
- <jbossws.integration.target>jboss601</jbossws.integration.target>
- <jboss.home>${jboss601.home}</jboss.home>
+ <jbossws.integration.target>jboss610</jbossws.integration.target>
+ <jboss.home>${jboss610.home}</jboss.home>
</properties>
</profile>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/ant.properties.example
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/ant.properties.example 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/ant.properties.example 2011-08-08 11:31:40 UTC (rev 14785)
@@ -3,9 +3,9 @@
#
# Optional JBoss Home
-jboss600.home=(a)jboss601.home@
+jboss610.home=(a)jboss610.home@
-jbossws.integration.target=jboss600
+jbossws.integration.target=jboss610
# The JBoss settings
jboss.server.instance=default
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-deploy.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-deploy.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-deploy.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -138,7 +138,7 @@
<!-- Prepare Deployment Structure JBoss-6.0.x -->
<!-- ================================================================== -->
- <target name="deploy-structure-jboss601" depends="prepare-deploy">
+ <target name="deploy-structure-jboss610" depends="prepare-deploy">
<delete dir="${deploy.structure}"/>
<antcall target="deploy-jbossws-native" inheritall="false">
<param name="installserver" value="${deploy.structure}/server/${jboss.server.instance}"/>
@@ -151,25 +151,25 @@
</target>
<!-- ================================================================== -->
- <!-- Deployment JBoss601 -->
+ <!-- Deployment JBoss610 -->
<!-- ================================================================== -->
- <target name="target-jboss601">
- <property name="jbossws.integration.target" value="jboss601"/>
+ <target name="target-jboss610">
+ <property name="jbossws.integration.target" value="jboss610"/>
<echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
</target>
- <target name="deploy-jboss601" depends="undeploy-jboss601,deploy-structure-jboss601" description="Deploy jbossws to jboss601">
- <fail message="Not available: ${jboss601.available.file}" unless="jboss601.available"/>
- <copy todir="${jboss601.home}" overwrite="true" verbose="true">
+ <target name="deploy-jboss610" depends="undeploy-jboss610,deploy-structure-jboss610" description="Deploy jbossws to jboss610">
+ <fail message="Not available: ${jboss610.available.file}" unless="jboss610.available"/>
+ <copy todir="${jboss610.home}" overwrite="true" verbose="true">
<fileset dir="${deploy.structure}"/>
</copy>
- <chmod dir="${jboss601.home}/bin" perm="+x" includes="*.sh"/>
+ <chmod dir="${jboss610.home}/bin" perm="+x" includes="*.sh"/>
</target>
- <target name="undeploy-jboss601" depends="target-jboss601,init" description="Remove jbossws from jboss601">
- <fail message="Not available: ${jboss601.available.file}" unless="jboss601.available"/>
- <macro-undeploy-jbossws targetdir="${jboss601.server}"
+ <target name="undeploy-jboss610" depends="target-jboss610,init" description="Remove jbossws from jboss610">
+ <fail message="Not available: ${jboss610.available.file}" unless="jboss610.available"/>
+ <macro-undeploy-jbossws targetdir="${jboss610.server}"
defaultconf="${jbossws.default.deploy.conf}"
defaultserverconf="${jbossws.default.server.deploy.conf}"
modifyjbossintegration="false"/><!-- [JBWS-2505] -->
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-setup.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-setup.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build-setup.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -42,22 +42,22 @@
<property name="jboss600.server.deploy" value="${jboss600.server}/deploy"/>
<property name="jboss600.server.deployers" value="${jboss600.server}/deployers"/>
- <property name="jboss601.lib" value="${jboss601.home}/lib"/>
- <property name="jboss601.client" value="${jboss601.home}/client"/>
- <property name="jboss601.server" value="${jboss601.home}/server/${jboss.server.instance}"/>
- <property name="jboss601.server.lib" value="${jboss601.home}/common/lib"/>
- <property name="jboss601.server.deploy" value="${jboss601.server}/deploy"/>
- <property name="jboss601.server.deployers" value="${jboss601.server}/deployers"/>
+ <property name="jboss610.lib" value="${jboss610.home}/lib"/>
+ <property name="jboss610.client" value="${jboss610.home}/client"/>
+ <property name="jboss610.server" value="${jboss610.home}/server/${jboss.server.instance}"/>
+ <property name="jboss610.server.lib" value="${jboss610.home}/common/lib"/>
+ <property name="jboss610.server.deploy" value="${jboss610.server}/deploy"/>
+ <property name="jboss610.server.deployers" value="${jboss610.server}/deployers"/>
<property name="jboss501.available.file" value="${jboss501.client}/jboss-client.jar"/>
<property name="jboss510.available.file" value="${jboss510.client}/jboss-client.jar"/>
<property name="jboss600.available.file" value="${jboss600.client}/jboss-client.jar"/>
- <property name="jboss601.available.file" value="${jboss601.client}/jboss-client.jar"/>
+ <property name="jboss610.available.file" value="${jboss610.client}/jboss-client.jar"/>
<available property="jboss501.available" file="${jboss501.available.file}"/>
<available property="jboss510.available" file="${jboss510.available.file}"/>
<available property="jboss600.available" file="${jboss600.available.file}"/>
- <available property="jboss601.available" file="${jboss601.available.file}"/>
+ <available property="jboss610.available" file="${jboss610.available.file}"/>
<tstamp>
<format property="build.id" pattern="yyyyMMddHHmm"/>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/src/main/distro/build.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -59,9 +59,13 @@
<condition property="jbossws.integration.jboss60" value="true">
<or>
<equals arg1="${jbossws.integration.target}" arg2="jboss600"/>
- <equals arg1="${jbossws.integration.target}" arg2="jboss601"/>
</or>
</condition>
+ <condition property="jbossws.integration.jboss61" value="true">
+ <or>
+ <equals arg1="${jbossws.integration.target}" arg2="jboss610"/>
+ </or>
+ </condition>
<property name="deploy.structure" value="${output.dir}/deploy-${jbossws.integration.target}"/>
<property name="excludesfile" value="${tests.dir}/resources/test-excludes-${jbossws.integration.target}.txt"/>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/src/main/scripts/assembly-deploy-artifacts.xml 2011-08-08 10:30:12 UTC (rev 14784)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/src/main/scripts/assembly-deploy-artifacts.xml 2011-08-08 11:31:40 UTC (rev 14785)
@@ -186,7 +186,7 @@
</dependencySet>
<dependencySet>
<outputDirectory>deploy-artifacts/lib</outputDirectory>
- <outputFileNameMapping>jbossws-jboss601.${module.extension}</outputFileNameMapping>
+ <outputFileNameMapping>jbossws-jboss610.${module.extension}</outputFileNameMapping>
<useStrictFiltering>true</useStrictFiltering>
<scope>provided</scope>
<unpack>false</unpack>
13 years, 4 months
JBossWS SVN: r14784 - common/branches.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-08 06:30:12 -0400 (Mon, 08 Aug 2011)
New Revision: 14784
Removed:
common/branches/jbossws-common-1.4.1.SP1/
Log:
removing working branch
13 years, 4 months
JBossWS SVN: r14783 - common/branches.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-08 06:26:51 -0400 (Mon, 08 Aug 2011)
New Revision: 14783
Added:
common/branches/jbossws-common-1.4.1.SP1/
Log:
creating 1.4.1.SP1 branch
13 years, 4 months
JBossWS SVN: r14782 - stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-08-08 05:46:18 -0400 (Mon, 08 Aug 2011)
New Revision: 14782
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
Log:
[JBPAPP-6371]:Force ipv4=true
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2011-08-08 09:46:18 UTC (rev 14782)
@@ -80,5 +80,8 @@
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/xml-resolver.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSCONSUME_CLASSPATH%" org.jboss.wsf.spi.tools.cmd.WSConsume %*
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2011-08-08 09:46:18 UTC (rev 14782)
@@ -39,7 +39,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2011-08-08 09:46:18 UTC (rev 14782)
@@ -85,5 +85,8 @@
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/wstx.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSPROVIDE_CLASSPATH%" org.jboss.wsf.spi.tools.cmd.WSProvide %*
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2011-08-08 09:46:18 UTC (rev 14782)
@@ -39,7 +39,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2011-08-08 09:46:18 UTC (rev 14782)
@@ -107,6 +107,9 @@
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/wstx.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSRUNCLIENT_CLASSPATH%" %ARGS%
:EOF
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2011-08-08 09:39:22 UTC (rev 14781)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2011-08-08 09:46:18 UTC (rev 14782)
@@ -57,7 +57,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
13 years, 4 months
JBossWS SVN: r14781 - stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-08-08 05:39:22 -0400 (Mon, 08 Aug 2011)
New Revision: 14781
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh
Log:
[JBPAPP-6371]:Force ipv4=true
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2011-08-08 09:39:22 UTC (rev 14781)
@@ -53,5 +53,8 @@
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSCONSUME_CLASSPATH%" org.jboss.wsf.spi.tools.cmd.WSConsume %*
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2011-08-08 09:39:22 UTC (rev 14781)
@@ -39,7 +39,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2011-08-08 09:39:22 UTC (rev 14781)
@@ -53,5 +53,8 @@
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSPROVIDE_CLASSPATH%" org.jboss.wsf.spi.tools.cmd.WSProvide %*
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2011-08-08 09:39:22 UTC (rev 14781)
@@ -39,7 +39,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2011-08-08 09:39:22 UTC (rev 14781)
@@ -64,6 +64,9 @@
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/xmlsec.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSRUNCLIENT_CLASSPATH%" %ARGS%
:EOF
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2011-08-08 09:39:22 UTC (rev 14781)
@@ -57,7 +57,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat 2011-08-08 09:39:22 UTC (rev 14781)
@@ -42,6 +42,9 @@
set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
+rem Force use of IPv4 stack
+set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true
+
rem Display our environment
echo ========================================================================="
echo .
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh 2011-08-08 09:13:23 UTC (rev 14780)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh 2011-08-08 09:39:22 UTC (rev 14781)
@@ -39,7 +39,8 @@
#JAVA_OPTS="-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS"
# Setup JBoss sepecific properties
-JAVA_OPTS="$JAVA_OPTS"
+# Force use of IPv4 stack
+JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
# Setup the java endorsed dirs
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed"
13 years, 4 months
JBossWS SVN: r14780 - in stack/native/branches/jbossws-native-3.4.1.SP2: modules/client and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-08 05:13:23 -0400 (Mon, 08 Aug 2011)
New Revision: 14780
Modified:
stack/native/branches/jbossws-native-3.4.1.SP2/modules/client/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/endorsed/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/management/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/resources/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/services/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/framework-tests/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/native-tests/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml
stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
Log:
changing version
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/client/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/client/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/client/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/core/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/endorsed/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/endorsed/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/endorsed/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/management/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/management/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/management/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/resources/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/resources/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/resources/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/services/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/services/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/services/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/framework-tests/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/framework-tests/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/native-tests/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/native-tests/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/modules/testsuite/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-08 09:02:02 UTC (rev 14779)
+++ stack/native/branches/jbossws-native-3.4.1.SP2/pom.xml 2011-08-08 09:13:23 UTC (rev 14780)
@@ -18,7 +18,7 @@
<packaging>pom</packaging>
<description>JBossWS Native stack</description>
- <version>3.4.1.SP1</version>
+ <version>3.4.1.SP2-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -29,9 +29,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/tags/jbossws-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/tags/jbossws-nat...</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/tags/jbossws-native...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/tags/jbossws-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/tags/jbossws-nat...</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/tags/jbossws-native...</url>
</scm>
<!-- Modules -->
13 years, 4 months
JBossWS SVN: r14779 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-08 05:02:02 -0400 (Mon, 08 Aug 2011)
New Revision: 14779
Added:
stack/native/branches/jbossws-native-3.4.1.SP2/
Log:
creating 3.4.1.SP2 working branch
13 years, 4 months
JBossWS SVN: r14778 - in stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864: modules/core/src/main/java/org/jboss/ws/core/soap and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: mmusaji
Date: 2011-08-02 07:23:11 -0400 (Tue, 02 Aug 2011)
New Revision: 14778
Modified:
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderStax.java
Log:
JBPAPP-6864 set ignoreParseError to false. Missed this file out in the previous check in
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath 2011-08-02 10:12:23 UTC (rev 14777)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/.classpath 2011-08-02 11:23:11 UTC (rev 14778)
@@ -11,7 +11,5 @@
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget/JBoss 5.1.1 npeInvalidCharWS Runtime"/>
- <classpathentry kind="lib" path="/NotBackedUp/JBoss_instances/JBoss5.1.1-unsigned/lib/endorsed/xercesImpl.jar"/>
- <classpathentry kind="lib" path="/NotBackedUp/JBoss_instances/JBoss5.1.1-unsigned/lib/endorsed/xalan.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Modified: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderStax.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderStax.java 2011-08-02 10:12:23 UTC (rev 14777)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core/src/main/java/org/jboss/ws/core/soap/EnvelopeBuilderStax.java 2011-08-02 11:23:11 UTC (rev 14778)
@@ -286,6 +286,10 @@
{
SOAPBody soapBody = soapEnv.getBody();
+
+ if (soapBody == null) {
+ soapBody = soapEnv.addBody();
+ }
if (atPartMargin())
{
13 years, 4 months
JBossWS SVN: r14777 - in stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws: jbws2651 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: mmusaji
Date: 2011-08-02 06:12:23 -0400 (Tue, 02 Aug 2011)
New Revision: 14777
Added:
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2651/
stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2651/EnvelopBuilderTestCase.java
Log:
JBPAPP-6864 check in test case
Added: stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2651/EnvelopBuilderTestCase.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2651/EnvelopBuilderTestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2651/EnvelopBuilderTestCase.java 2011-08-02 10:12:23 UTC (rev 14777)
@@ -0,0 +1,125 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.ws.jaxws.jbws2651;
+
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+
+import javax.xml.soap.SOAPException;
+
+
+import org.jboss.ws.core.CommonSOAPFaultException;
+import org.jboss.ws.core.soap.EnvelopeBuilderDOM;
+import org.jboss.ws.core.soap.EnvelopeBuilderStax;
+import org.jboss.ws.core.soap.MessageFactoryImpl;
+import org.jboss.ws.core.soap.SOAPMessageImpl;
+
+import junit.framework.TestCase;
+
+public class EnvelopBuilderTestCase extends TestCase {
+
+ EnvelopeBuilderDOM domBuilder = new EnvelopeBuilderDOM();
+ EnvelopeBuilderStax staxBuilder = new EnvelopeBuilderStax();
+ MessageFactoryImpl factory = new MessageFactoryImpl();
+
+ public void testEmptyInputStream() throws Exception {
+ InputStream ins = new ByteArrayInputStream("".getBytes());
+ factory.createMessage(null, ins, false);
+ }
+
+ public void testDomInputStream() throws Exception {
+ String soapMsg =
+ "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>" +
+ " <env:Header/>" +
+ " <env:Body>" +
+ " <ns1:addItemResponse xmlns:ns1='http://org.jboss.ws/addressing/replyto'>" +
+ " <result>Mars Bar</result>" +
+ " </ns1:addItemResponse>" +
+ " </env:Body>" +
+ "</env:Envelope>";
+ SOAPMessageImpl soapMessage = (SOAPMessageImpl)factory.createMessage();
+ InputStream ins = new ByteArrayInputStream(soapMsg.getBytes());
+ assertNotNull(domBuilder.build(soapMessage, ins, false));
+ }
+
+
+ public void testStaxInputStream() throws Exception {
+ String soapMsg =
+ "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>" +
+ " <env:Header/>" +
+ " <env:Body>" +
+ " <ns1:addItemResponse xmlns:ns1='http://org.jboss.ws/addressing/replyto'>" +
+ " <result>Mars Bar</result>" +
+ " </ns1:addItemResponse>" +
+ " </env:Body>" +
+ "</env:Envelope>";
+ SOAPMessageImpl soapMessage = (SOAPMessageImpl)factory.createMessage();
+ InputStream ins = new ByteArrayInputStream(soapMsg.getBytes());
+ assertNotNull(staxBuilder.build(soapMessage, ins, false));
+ }
+
+
+ public void testDomErroStream(){
+ String soapMsg =
+ "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>" +
+ " <env:Header/>" +
+ " <env:Body>" +
+ " <ns1:addItemResponse xmlns:ns1='http://org.jboss.ws/addressing/replyto'>" +
+ " <result>Mars Bar</result>" +
+ " </ns1:addItemResponse>" +
+ " </env:Body>" +
+ "</env:Envelope";
+
+ try {
+ SOAPMessageImpl soapMessage = (SOAPMessageImpl)factory.createMessage();
+ InputStream ins = new ByteArrayInputStream(soapMsg.getBytes());
+ domBuilder.build(soapMessage, ins, false);
+ fail("expected SOAPException");
+ } catch (Exception e) {
+ assertTrue(e instanceof CommonSOAPFaultException);
+ }
+ }
+
+
+ public void testStaxErroStream(){
+ String soapMsg =
+ "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>" +
+ " <env:Header/>" +
+ " <env:Body>" +
+ " <ns1:addItemResponse xmlns:ns1='http://org.jboss.ws/addressing/replyto'>" +
+ " <result>Mars Bar</result>" +
+ " </ns1:addItemResponse>" +
+ " </env:Body>" +
+ "</env:Envelope";
+
+ try {
+ SOAPMessageImpl soapMessage = (SOAPMessageImpl)factory.createMessage();
+ InputStream ins = new ByteArrayInputStream(soapMsg.getBytes());
+ staxBuilder.build(soapMessage, ins, false);
+ fail("expected IOException");
+ } catch (Exception e) {
+ assertTrue(e instanceof IOException);
+ }
+ }
+
+}
13 years, 4 months