JBossWS SVN: r7922 - container/jboss42/branches.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-07-29 06:10:47 -0400 (Tue, 29 Jul 2008)
New Revision: 7922
Added:
container/jboss42/branches/jboss423/
Log:
Creating jboss 423 integration branch
Copied: container/jboss42/branches/jboss423 (from rev 7921, container/jboss42/tags/jbossws-jboss423-3.0.2.GA)
16 years, 5 months
JBossWS SVN: r7921 - in stack/metro/trunk/modules/testsuite/metro-tests/src/test: resources/jaxws/samples/wsse/username/META-INF and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-07-28 11:38:54 -0400 (Mon, 28 Jul 2008)
New Revision: 7921
Added:
stack/metro/trunk/modules/testsuite/metro-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/CustomPasswordHandler.java
Modified:
stack/metro/trunk/modules/testsuite/metro-tests/src/test/resources/jaxws/samples/wsse/username/META-INF/wsit-client.xml
Log:
[JBWS-2211] Providing an example with a custom handler to set username/pwd from the code
Added: stack/metro/trunk/modules/testsuite/metro-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/CustomPasswordHandler.java
===================================================================
--- stack/metro/trunk/modules/testsuite/metro-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/CustomPasswordHandler.java (rev 0)
+++ stack/metro/trunk/modules/testsuite/metro-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/CustomPasswordHandler.java 2008-07-28 15:38:54 UTC (rev 7921)
@@ -0,0 +1,58 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.samples.wsse;
+
+import java.io.IOException;
+
+import javax.security.auth.callback.Callback;
+import javax.security.auth.callback.CallbackHandler;
+import javax.security.auth.callback.PasswordCallback;
+import javax.security.auth.callback.UnsupportedCallbackException;
+
+/**
+ * A simple password callback handler showing how to set password from the code
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 28-Jul-2008
+ *
+ */
+public class CustomPasswordHandler implements CallbackHandler
+{
+ public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException
+ {
+ PasswordCallback pwdCallback = null;
+ if (callbacks != null)
+ {
+ for (int i=0; i < callbacks.length; i++)
+ {
+ Callback cb = callbacks[i];
+ if (cb instanceof PasswordCallback)
+ pwdCallback = (PasswordCallback)cb;
+ }
+ if (pwdCallback != null)
+ {
+ pwdCallback.setPassword("thefrog".toCharArray());
+ }
+ }
+ }
+
+}
Property changes on: stack/metro/trunk/modules/testsuite/metro-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/CustomPasswordHandler.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: stack/metro/trunk/modules/testsuite/metro-tests/src/test/resources/jaxws/samples/wsse/username/META-INF/wsit-client.xml
===================================================================
--- stack/metro/trunk/modules/testsuite/metro-tests/src/test/resources/jaxws/samples/wsse/username/META-INF/wsit-client.xml 2008-07-28 14:13:48 UTC (rev 7920)
+++ stack/metro/trunk/modules/testsuite/metro-tests/src/test/resources/jaxws/samples/wsse/username/META-INF/wsit-client.xml 2008-07-28 15:38:54 UTC (rev 7921)
@@ -21,10 +21,12 @@
<wsp:ExactlyOne>
<wsp:All>
<sc:CallbackHandlerConfiguration>
+ <!-- This shows how to set the username from the descriptor -->
<sc:CallbackHandler name="usernameHandler" default="kermit"/>
- <sc:CallbackHandler name="passwordHandler" default="thefrog"/>
+ <!-- This shows how to set the password from the code instead -->
+ <sc:CallbackHandler name="passwordHandler" classname="org.jboss.test.ws.jaxws.samples.wsse.CustomPasswordHandler"/>
</sc:CallbackHandlerConfiguration>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
-</definitions>
\ No newline at end of file
+</definitions>
16 years, 5 months
JBossWS SVN: r7920 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-07-28 10:13:48 -0400 (Mon, 28 Jul 2008)
New Revision: 7920
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
replace additional CP with maven dependencies
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-07-28 14:12:44 UTC (rev 7919)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-07-28 14:13:48 UTC (rev 7920)
@@ -426,6 +426,11 @@
<artifactId>jboss-javaee</artifactId>
<version>${jboss.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.jboss.client</groupId>
+ <artifactId>jboss-client</artifactId>
+ <version>${jboss.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -440,9 +445,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss500.home}/lib/endorsed</argLine>
- <additionalClasspathElements>
- <additionalClasspathElement>${jboss.home}/client/jboss-client.jar</additionalClasspathElement>
- </additionalClasspathElements>
</configuration>
</plugin>
</plugins>
@@ -494,6 +496,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss501.home}/lib/endorsed</argLine>
+ <!-- TODO: replace with maven dependencies -->
<additionalClasspathElements>
<additionalClasspathElement>${jboss.home}/client/jbossall-client.jar</additionalClasspathElement>
<additionalClasspathElement>${jboss.home}/server/default/lib/jboss-ejb3-core.jar</additionalClasspathElement>
16 years, 5 months
JBossWS SVN: r7919 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-07-28 10:12:44 -0400 (Mon, 28 Jul 2008)
New Revision: 7919
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
replace additional CP with maven dependencies
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2008-07-28 14:04:29 UTC (rev 7918)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2008-07-28 14:12:44 UTC (rev 7919)
@@ -397,6 +397,11 @@
<artifactId>jboss-javaee</artifactId>
<version>${jboss.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.jboss.client</groupId>
+ <artifactId>jboss-client</artifactId>
+ <version>${jboss.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -411,9 +416,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss500.home}/lib/endorsed</argLine>
- <additionalClasspathElements>
- <additionalClasspathElement>${jboss.home}/client/jboss-client.jar</additionalClasspathElement>
- </additionalClasspathElements>
</configuration>
</plugin>
</plugins>
@@ -460,6 +462,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss501.home}/lib/endorsed</argLine>
+ <!-- TODO: replace with maven dependencies -->
<additionalClasspathElements>
<additionalClasspathElement>${jboss.home}/client/jbossall-client.jar</additionalClasspathElement>
<additionalClasspathElement>${jboss.home}/server/default/lib/jboss-ejb3-core.jar</additionalClasspathElement>
16 years, 5 months
JBossWS SVN: r7918 - stack/metro/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-07-28 10:04:29 -0400 (Mon, 28 Jul 2008)
New Revision: 7918
Modified:
stack/metro/trunk/modules/testsuite/pom.xml
Log:
replace additional CP with maven dependencies
Modified: stack/metro/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/metro/trunk/modules/testsuite/pom.xml 2008-07-28 07:40:18 UTC (rev 7917)
+++ stack/metro/trunk/modules/testsuite/pom.xml 2008-07-28 14:04:29 UTC (rev 7918)
@@ -447,6 +447,11 @@
<artifactId>jboss-javaee</artifactId>
<version>${jboss.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.jboss.client</groupId>
+ <artifactId>jboss-client</artifactId>
+ <version>${jboss.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -461,9 +466,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss500.home}/lib/endorsed</argLine>
- <additionalClasspathElements>
- <additionalClasspathElement>${jboss.home}/client/jboss-client.jar</additionalClasspathElement>
- </additionalClasspathElements>
</configuration>
</plugin>
</plugins>
@@ -515,6 +517,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args} -Djava.endorsed.dirs=${jboss501.home}/lib/endorsed</argLine>
+ <!-- TODO: replace with maven dependencies -->
<additionalClasspathElements>
<additionalClasspathElement>${jboss.home}/client/jbossall-client.jar</additionalClasspathElement>
<additionalClasspathElement>${jboss.home}/server/default/lib/jboss-ejb3-core.jar</additionalClasspathElement>
16 years, 5 months
JBossWS SVN: r7917 - in stack/native/trunk/modules: testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-07-28 03:40:18 -0400 (Mon, 28 Jul 2008)
New Revision: 7917
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/security/Constants.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/MessageTestCase.java
Log:
[JBWS-2265] Fixing namespace
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/security/Constants.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/security/Constants.java 2008-07-25 15:04:00 UTC (rev 7916)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/security/Constants.java 2008-07-28 07:40:18 UTC (rev 7917)
@@ -58,9 +58,9 @@
public static final String BASE64_ENCODING_TYPE = WSS_SOAP_NS + "#Base64Binary";
- public static final String PASSWORD_TEXT_TYPE = WSSE_NS + "#PasswordText";
+ public static final String PASSWORD_TEXT_TYPE = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...";
- public static final String PASSWORD_DIGEST_TYPE = WSSE_NS + "#PasswordDigest";
+ public static final String PASSWORD_DIGEST_TYPE = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...";
public static final String WSSE_HEADER = WSSE_PREFIX + ":Security";
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/MessageTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/MessageTestCase.java 2008-07-25 15:04:00 UTC (rev 7916)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/MessageTestCase.java 2008-07-28 07:40:18 UTC (rev 7917)
@@ -110,7 +110,7 @@
"xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utilit...'>" +
"<wsse:UsernameToken wsu:Id='token-1-1205341951321-19004769'>" +
"<wsse:Username>kermit</wsse:Username>" +
- "<wsse:Password Type='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...'>IEeuDaP/NTozwiyJHzTgBoCCDjg=</wsse:Password>" +
+ "<wsse:Password Type='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...'>IEeuDaP/NTozwiyJHzTgBoCCDjg=</wsse:Password>" +
"<wsse:Nonce EncodingType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-secu...'>gHGIdDEWjX1Ay/LiVd3qJ1ua8VbjXis8CJwNDQh1ySA=</wsse:Nonce>" +
"<wsse:Created>CREATED</wsse:Created>" +
"</wsse:UsernameToken>" +
@@ -146,7 +146,7 @@
"xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utilit...'>" +
"<wsse:UsernameToken wsu:Id='token-1-1205341951321-19004769'>" +
"<wsse:Username>kermit</wsse:Username>" +
- "<wsse:Password Type='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...'>IEeuDaP/NTozwiyJHzTgBoCCDjg=</wsse:Password>" +
+ "<wsse:Password Type='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...'>IEeuDaP/NTozwiyJHzTgBoCCDjg=</wsse:Password>" +
"<wsse:Nonce>gHGIdDEWjX1Ay/LiVd3qJ1ua8VbjXis8CJwNDQh1ySA=</wsse:Nonce>" +
"<wsse:Created>CREATED</wsse:Created>" +
"</wsse:UsernameToken>" +
@@ -244,6 +244,6 @@
Element passwordEl = (Element)DOMUtils.getChildElements(usernameTokenEl, new QName(Constants.WSSE_NS, "Password")).next();
assertNotNull(passwordEl);
assertNotNull(DOMUtils.getTextContent(passwordEl));
- assertEquals(passwordEl.getAttribute("Type"), Constants.WSSE_NS+"#PasswordDigest");
+ assertEquals("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext...", passwordEl.getAttribute("Type"));
}
}
\ No newline at end of file
16 years, 5 months
JBossWS SVN: r7916 - in stack/metro/trunk: modules/server and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-07-25 11:04:00 -0400 (Fri, 25 Jul 2008)
New Revision: 7916
Modified:
stack/metro/trunk/modules/server/pom.xml
stack/metro/trunk/pom.xml
Log:
[JBWS-2263] Further AS5 container integration dependencies cleanup
Modified: stack/metro/trunk/modules/server/pom.xml
===================================================================
--- stack/metro/trunk/modules/server/pom.xml 2008-07-25 15:03:20 UTC (rev 7915)
+++ stack/metro/trunk/modules/server/pom.xml 2008-07-25 15:04:00 UTC (rev 7916)
@@ -182,6 +182,8 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss424</outputDirectory>
</artifactItem>
+ <!-- JBWS-2263 -->
+ <!--
<artifactItem>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -198,6 +200,7 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss501</outputDirectory>
</artifactItem>
+ -->
</artifactItems>
</configuration>
</execution>
Modified: stack/metro/trunk/pom.xml
===================================================================
--- stack/metro/trunk/pom.xml 2008-07-25 15:03:20 UTC (rev 7915)
+++ stack/metro/trunk/pom.xml 2008-07-25 15:04:00 UTC (rev 7916)
@@ -53,8 +53,11 @@
<jbossws.jboss422.version>3.0.2.GA</jbossws.jboss422.version>
<jbossws.jboss423.version>3.0.2.GA</jbossws.jboss423.version>
<jbossws.jboss424.version>3.0.3-SNAPSHOT</jbossws.jboss424.version>
+ <!-- JBWS-2263 -->
+ <!--
<jbossws.jboss500.version>3.0.2.GA</jbossws.jboss500.version>
<jbossws.jboss501.version>3.0.3-SNAPSHOT</jbossws.jboss501.version>
+ -->
<jboss.common.version>1.2.1.GA</jboss.common.version>
<commons.logging.version>1.1.1</commons.logging.version>
<jaxb.api.version>2.1</jaxb.api.version>
@@ -131,6 +134,8 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ <!-- JBWS-2263 -->
+ <!--
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -167,6 +172,7 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ -->
<!-- provided apis -->
<dependency>
16 years, 5 months
JBossWS SVN: r7915 - in stack/native/trunk: modules/core and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-07-25 11:03:20 -0400 (Fri, 25 Jul 2008)
New Revision: 7915
Modified:
stack/native/trunk/modules/core/pom.xml
stack/native/trunk/pom.xml
Log:
[JBWS-2263] Further AS5 container integration dependencies cleanup
Modified: stack/native/trunk/modules/core/pom.xml
===================================================================
--- stack/native/trunk/modules/core/pom.xml 2008-07-25 15:02:39 UTC (rev 7914)
+++ stack/native/trunk/modules/core/pom.xml 2008-07-25 15:03:20 UTC (rev 7915)
@@ -205,6 +205,8 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss424</outputDirectory>
</artifactItem>
+ <!-- JBWS-2263 -->
+ <!--
<artifactItem>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -221,6 +223,7 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss501</outputDirectory>
</artifactItem>
+ -->
</artifactItems>
</configuration>
</execution>
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2008-07-25 15:02:39 UTC (rev 7914)
+++ stack/native/trunk/pom.xml 2008-07-25 15:03:20 UTC (rev 7915)
@@ -57,8 +57,11 @@
<jbossws.jboss422.version>3.0.2.GA</jbossws.jboss422.version>
<jbossws.jboss423.version>3.0.2.GA</jbossws.jboss423.version>
<jbossws.jboss424.version>3.0.3-SNAPSHOT</jbossws.jboss424.version>
+ <!-- JBWS-2263 -->
+ <!--
<jbossws.jboss500.version>3.0.2.GA</jbossws.jboss500.version>
<jbossws.jboss501.version>3.0.3-SNAPSHOT</jbossws.jboss501.version>
+ -->
<codehaus.jettison.version>1.0-RC2</codehaus.jettison.version>
<commons.logging.version>1.1.1</commons.logging.version>
<javassist.version>3.6.0.GA</javassist.version>
@@ -145,6 +148,8 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ <!-- JBWS-2263 -->
+ <!--
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -181,6 +186,7 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ -->
<!-- provided apis -->
<dependency>
16 years, 5 months
JBossWS SVN: r7914 - framework/trunk/hudson/jboss/bin.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-07-25 11:02:39 -0400 (Fri, 25 Jul 2008)
New Revision: 7914
Modified:
framework/trunk/hudson/jboss/bin/http-spider.sh
Log:
increase to 5 minutes
Modified: framework/trunk/hudson/jboss/bin/http-spider.sh
===================================================================
--- framework/trunk/hudson/jboss/bin/http-spider.sh 2008-07-25 15:01:57 UTC (rev 7913)
+++ framework/trunk/hudson/jboss/bin/http-spider.sh 2008-07-25 15:02:39 UTC (rev 7914)
@@ -16,7 +16,7 @@
TIMEOUT=2 # wget timeout in sec
SLEEP_TIME=10 # the actual sleep time in between test
-NUM_RETRIES=24 # equals 240 seconds before exit
+NUM_RETRIES=30 # equals to 5 minutes before exit
if [ "x$1" = "x" ]; then
echo "Usage: http.sh <hostname:port> <output_dir>"
16 years, 5 months
JBossWS SVN: r7913 - in stack/cxf/trunk: modules/server and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-07-25 11:01:57 -0400 (Fri, 25 Jul 2008)
New Revision: 7913
Modified:
stack/cxf/trunk/modules/server/pom.xml
stack/cxf/trunk/pom.xml
Log:
[JBWS-2263] Further AS5 container integration dependencies cleanup
Modified: stack/cxf/trunk/modules/server/pom.xml
===================================================================
--- stack/cxf/trunk/modules/server/pom.xml 2008-07-25 14:43:57 UTC (rev 7912)
+++ stack/cxf/trunk/modules/server/pom.xml 2008-07-25 15:01:57 UTC (rev 7913)
@@ -189,6 +189,8 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss424</outputDirectory>
</artifactItem>
+ <!-- JBWS-2263 -->
+ <!--
<artifactItem>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -205,6 +207,7 @@
<type>zip</type>
<outputDirectory>${project.build.directory}/resources/jbossws-jboss501</outputDirectory>
</artifactItem>
+ -->
</artifactItems>
</configuration>
</execution>
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2008-07-25 14:43:57 UTC (rev 7912)
+++ stack/cxf/trunk/pom.xml 2008-07-25 15:01:57 UTC (rev 7913)
@@ -52,8 +52,11 @@
<jbossws.jboss422.version>3.0.2.GA</jbossws.jboss422.version>
<jbossws.jboss423.version>3.0.2.GA</jbossws.jboss423.version>
<jbossws.jboss424.version>3.0.3-SNAPSHOT</jbossws.jboss424.version>
+ <!-- JBWS-2263 -->
+ <!--
<jbossws.jboss500.version>3.0.2.GA</jbossws.jboss500.version>
<jbossws.jboss501.version>3.0.3-SNAPSHOT</jbossws.jboss501.version>
+ -->
<cxf.version>2.1</cxf.version>
<cxf.stax.version>1.0.1</cxf.stax.version>
<fastinfoset.api.version>1.2.2</fastinfoset.api.version>
@@ -131,6 +134,8 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ <!-- JBWS-2263 -->
+ <!--
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-jboss500CR1</artifactId>
@@ -167,6 +172,7 @@
<classifier>resources</classifier>
<type>zip</type>
</dependency>
+ -->
<!-- provided apis -->
<dependency>
16 years, 5 months