JBossWS SVN: r7299 - stack/native/trunk/modules/testsuite/native-tests.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-03 12:45:47 -0400 (Tue, 03 Jun 2008)
New Revision: 7299
Modified:
stack/native/trunk/modules/testsuite/native-tests/pom.xml
Log:
fix tests.resources.dir
Modified: stack/native/trunk/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-06-03 16:35:38 UTC (rev 7298)
+++ stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-06-03 16:45:47 UTC (rev 7299)
@@ -127,7 +127,7 @@
<configuration>
<tasks>
<property name="maven.test.classpath" refid="maven.test.classpath"/>
- <property name="tests.resources.dir" value="${test.resources.directory}"/>
+ <property name="tests.resources.dir" value="${basedir}/src/test/resources"/>
<property name="tests.output.dir" value="${project.build.directory}"/>
<ant antfile="scripts/antrun-wsprovide.xml" target="wsprovide"/>
</tasks>
@@ -142,7 +142,7 @@
<configuration>
<tasks>
<property name="tests.output.dir" value="${project.build.directory}"/>
- <property name="tests.resources.dir" value="${test.resources.directory}"/>
+ <property name="tests.resources.dir" value="${basedir}/src/test/resources"/>
<ant antfile="scripts/build-jars-jaxrpc.xml" target="build-jars-jaxrpc"/>
<ant antfile="scripts/build-samples-jaxrpc.xml" target="build-samples-jaxrpc"/>
<ant antfile="scripts/build-jars-jaxws.xml" target="build-jars-jaxws"/>
16 years, 7 months
JBossWS SVN: r7298 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-06-03 12:35:38 -0400 (Tue, 03 Jun 2008)
New Revision: 7298
Modified:
stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt
Log:
[JBWS-2174] Excluding project generator test (JBWS-2174 is not solved for AS5 Beta4)
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt 2008-06-03 16:03:06 UTC (rev 7297)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt 2008-06-03 16:35:38 UTC (rev 7298)
@@ -128,3 +128,4 @@
org/jboss/test/ws/jaxws/samples/advanced/retail/**
org/jboss/test/ws/jaxws/samples/webservice/WebServiceEJB3TestCase.*
org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.*
+org/jboss/test/ws/projectGenerator/**
16 years, 7 months
JBossWS SVN: r7297 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-03 12:03:06 -0400 (Tue, 03 Jun 2008)
New Revision: 7297
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/MessageContextJAXWS.java
Log:
[JBWS-2013] Implement standard message context properties
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/MessageContextJAXWS.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/MessageContextJAXWS.java 2008-06-03 15:55:29 UTC (rev 7296)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/MessageContextJAXWS.java 2008-06-03 16:03:06 UTC (rev 7297)
@@ -23,23 +23,23 @@
// $Id: MessageContextImpl.java 275 2006-05-04 21:36:29Z jason.greene(a)jboss.com $
+import java.io.IOException;
+import java.net.URL;
+
import javax.xml.ws.handler.MessageContext;
-import javax.xml.soap.AttachmentPart;
-import javax.xml.soap.SOAPException;
import org.jboss.logging.Logger;
+import org.jboss.ws.WSException;
import org.jboss.ws.core.CommonMessageContext;
import org.jboss.ws.core.binding.SerializationContext;
import org.jboss.ws.core.jaxws.SerializationContextJAXWS;
import org.jboss.ws.core.soap.MessageContextAssociation;
-import org.jboss.ws.core.soap.attachment.SwapableMemoryDataSource;
import org.jboss.ws.metadata.umdm.EndpointMetaData;
import org.jboss.ws.metadata.umdm.OperationMetaData;
import org.jboss.ws.metadata.umdm.ServiceMetaData;
import org.jboss.xb.binding.NamespaceRegistry;
+import org.xml.sax.InputSource;
-import java.util.Iterator;
-
/**
* The interface MessageContext abstracts the message context that is processed by a handler in the handle method.
*
@@ -111,10 +111,10 @@
MessageContextAssociation.popMessageContext();
SOAPMessageContextJAXWS resContext = new SOAPMessageContextJAXWS(reqContext);
resContext.setSOAPMessage(null);
-
+
// Reverse the direction
resContext.put(MessageContext.MESSAGE_OUTBOUND_PROPERTY, new Boolean(!outbound));
-
+
MessageContextAssociation.pushMessageContext(resContext);
cleanupAttachments(reqContext);
@@ -125,7 +125,31 @@
public void setOperationMetaData(OperationMetaData opMetaData)
{
super.setOperationMetaData(opMetaData);
+
+ // [JBWS-2031] Implement standard message context properties
if (opMetaData != null)
- this.put(MessageContext.WSDL_OPERATION, opMetaData.getQName());
+ {
+ EndpointMetaData epMetaData = opMetaData.getEndpointMetaData();
+ ServiceMetaData serviceMetaData = epMetaData.getServiceMetaData();
+
+ URL wsdlURL = serviceMetaData.getWsdlFileOrLocation();
+ if (wsdlURL != null)
+ {
+ try
+ {
+ InputSource inputSource = new InputSource(wsdlURL.openStream());
+ put(MessageContext.WSDL_DESCRIPTION, inputSource);
+ }
+ catch (IOException ex)
+ {
+ throw new WSException("Cannot open: " + wsdlURL);
+ }
+ }
+
+ put(MessageContext.WSDL_SERVICE, serviceMetaData.getServiceName());
+ put(MessageContext.WSDL_PORT, epMetaData.getPortName());
+ put(MessageContext.WSDL_INTERFACE, epMetaData.getPortTypeName());
+ put(MessageContext.WSDL_OPERATION, opMetaData.getQName());
+ }
}
}
16 years, 7 months
JBossWS SVN: r7296 - container/jboss50/branches/jbossws-jboss501.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-06-03 11:55:29 -0400 (Tue, 03 Jun 2008)
New Revision: 7296
Modified:
container/jboss50/branches/jbossws-jboss501/pom.xml
Log:
Use javax.jws:jsr181-api
Modified: container/jboss50/branches/jbossws-jboss501/pom.xml
===================================================================
--- container/jboss50/branches/jbossws-jboss501/pom.xml 2008-06-03 15:11:10 UTC (rev 7295)
+++ container/jboss50/branches/jbossws-jboss501/pom.xml 2008-06-03 15:55:29 UTC (rev 7296)
@@ -163,9 +163,9 @@
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>sun-jaxws</groupId>
+ <groupId>javax.jws</groupId>
<artifactId>jsr181-api</artifactId>
- <version>1.0</version>
+ <version>1.0-MR1</version>
<scope>compile</scope>
</dependency>
16 years, 7 months
JBossWS SVN: r7295 - in stack/cxf/trunk/modules/testsuite: cxf-tests/scripts and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-06-03 11:11:10 -0400 (Tue, 03 Jun 2008)
New Revision: 7295
Removed:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoader.java
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoaderMBean.java
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/META-INF/jboss-service.xml
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/bcprov-jdk14.jar
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-samples-jaxws.xml
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.java
stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
Log:
[JBWS-2197] Assuming BC provider is installed
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-samples-jaxws.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-samples-jaxws.xml 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-samples-jaxws.xml 2008-06-03 15:11:10 UTC (rev 7295)
@@ -95,17 +95,6 @@
<include name="bob.properties" />
</zipfileset>
</war>
- <jar destfile="${tests.output.dir}/test-libs/jaxws-samples-wsse-sign-encrypt.sar">
- <metainf dir="${tests.output.dir}/test-resources/jaxws/samples/wsse/sign-encrypt/META-INF">
- <include name="jboss-service.xml" />
- </metainf>
- <fileset dir="${tests.output.dir}/test-classes">
- <include name="org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoader*.class"/>
- </fileset>
- <fileset dir="${tests.output.dir}/test-resources/jaxws/samples/wsse/sign-encrypt">
- <include name="bcprov*.jar" />
- </fileset>
- </jar>
<!-- jaxws-samples-wsse-sign-encrypt-client -->
<jar destfile="${tests.output.dir}/test-libs/jaxws-samples-wsse-sign-encrypt-client.jar">
Deleted: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoader.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoader.java 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoader.java 2008-06-03 15:11:10 UTC (rev 7295)
@@ -1,54 +0,0 @@
-/*
- * 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.security.Security;
-import org.jboss.logging.Logger;
-
-import org.bouncycastle.jce.provider.BouncyCastleProvider;
-import javax.crypto.Cipher;
-
-//$Id$
-
-/**
- * Loads / unloads the Bouncy Castle JCE provider
- *
- */
-public class BouncyCastleLoader implements BouncyCastleLoaderMBean
-{
- private static Logger log = Logger.getLogger(BouncyCastleLoader.class);
-
- public void start() throws Exception
- {
- BouncyCastleProvider bcp = new BouncyCastleProvider();
- Security.addProvider(bcp);
- Cipher c = Cipher.getInstance("RSA", "BC");
- log.info("Created RSA cipher: " + c + ", provider:" + c.getProvider());
- }
-
- public void stop() throws Exception
- {
- BouncyCastleProvider bcp = new BouncyCastleProvider();
- Security.removeProvider(bcp.getName());
- log.info("Bouncy Castle provider removed.");
- }
-}
Deleted: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoaderMBean.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoaderMBean.java 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/BouncyCastleLoaderMBean.java 2008-06-03 15:11:10 UTC (rev 7295)
@@ -1,29 +0,0 @@
-/*
- * 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;
-
-public interface BouncyCastleLoaderMBean
-{
- public void start() throws Exception;
-
- public void stop() throws Exception;
-}
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.java 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.java 2008-06-03 15:11:10 UTC (rev 7295)
@@ -43,6 +43,7 @@
import org.apache.cxf.ws.security.wss4j.WSS4JOutInterceptor;
import org.apache.cxf.binding.soap.saaj.SAAJInInterceptor;
import org.apache.cxf.binding.soap.saaj.SAAJOutInterceptor;
+import javax.xml.ws.soap.SOAPFaultException;
/**
* WS-Security sign & encrypt test case
@@ -56,8 +57,7 @@
public static Test suite()
{
- return new JBossWSTestSetup(SignEncryptTestCase.class,
- "jaxws-samples-wsse-sign-encrypt.sar jaxws-samples-wsse-sign-encrypt-client.jar jaxws-samples-wsse-sign-encrypt.war");
+ return new JBossWSTestSetup(SignEncryptTestCase.class, "jaxws-samples-wsse-sign-encrypt-client.jar jaxws-samples-wsse-sign-encrypt.war");
}
public void test() throws Exception
@@ -67,7 +67,14 @@
Service service = Service.create(wsdlURL, serviceName);
ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class);
setupWsse(proxy);
- assertEquals("Secure Hello World!", proxy.sayHello());
+ try
+ {
+ assertEquals("Secure Hello World!", proxy.sayHello());
+ }
+ catch (SOAPFaultException e)
+ {
+ throw new Exception("Please check that the Bouncy Castle provider is installed.", e);
+ }
}
private void setupWsse(ServiceIface proxy)
Deleted: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/META-INF/jboss-service.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/META-INF/jboss-service.xml 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/META-INF/jboss-service.xml 2008-06-03 15:11:10 UTC (rev 7295)
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<server>
- <mbean code="org.jboss.test.ws.jaxws.samples.wsse.BouncyCastleLoader" name="org.jboss.test.ws.jaxws.samples.wsse:service=BouncyCastleLoader"/>
-</server>
Deleted: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/resources/jaxws/samples/wsse/sign-encrypt/bcprov-jdk14.jar
===================================================================
(Binary files differ)
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss500.txt 2008-06-03 15:11:10 UTC (rev 7295)
@@ -128,6 +128,3 @@
org/jboss/test/ws/jaxws/samples/advanced/retail/**
org/jboss/test/ws/jaxws/samples/webservice/WebServiceEJB3TestCase.*
org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.*
-
-# [JBWS-2197] Dynamically load Bouncy Castle provider on AS 5.0.x
-org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.*
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2008-06-03 15:03:16 UTC (rev 7294)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2008-06-03 15:11:10 UTC (rev 7295)
@@ -125,6 +125,3 @@
# [JBWS-2194] request requires HTTP authentication: Unauthorized
org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.*
-
-# [JBWS-2197] Dynamically load Bouncy Castle provider on AS 5.0.x
-org/jboss/test/ws/jaxws/samples/wsse/SignEncryptTestCase.*
16 years, 7 months
JBossWS SVN: r7294 - stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-03 11:03:16 -0400 (Tue, 03 Jun 2008)
New Revision: 7294
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml
Log:
decrease timeout too
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml 2008-06-03 15:00:20 UTC (rev 7293)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml 2008-06-03 15:03:16 UTC (rev 7294)
@@ -9,7 +9,7 @@
<client-config>
<config-name>Standard Anonymous WSRM Client</config-name>
<reliable-messaging>
- <message-retransmission attempts="10" interval="5" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="3"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -30,7 +30,7 @@
<config-name>Standard Addressable WSRM Client</config-name>
<reliable-messaging>
<backports-server port="7777"/>
- <message-retransmission attempts="10" interval="5" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="3"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -50,7 +50,7 @@
<client-config>
<config-name>Secured Anonymous WSRM Client</config-name>
<reliable-messaging>
- <message-retransmission attempts="10" interval="5" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="3"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -75,7 +75,7 @@
<config-name>Secured Addressable WSRM Client</config-name>
<reliable-messaging>
<backports-server port="7777"/>
- <message-retransmission attempts="10" interval="5" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="3"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
16 years, 7 months
JBossWS SVN: r7293 - stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-03 11:00:20 -0400 (Tue, 03 Jun 2008)
New Revision: 7293
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml
Log:
decrease retransmission attempts cound and wait interval
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml 2008-06-03 14:37:07 UTC (rev 7292)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/wsrm/META-INF/wsrm-jaxws-client-config.xml 2008-06-03 15:00:20 UTC (rev 7293)
@@ -9,7 +9,7 @@
<client-config>
<config-name>Standard Anonymous WSRM Client</config-name>
<reliable-messaging>
- <message-retransmission attempts="50" interval="10" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="10"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -30,7 +30,7 @@
<config-name>Standard Addressable WSRM Client</config-name>
<reliable-messaging>
<backports-server port="7777"/>
- <message-retransmission attempts="50" interval="10" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="10"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -50,7 +50,7 @@
<client-config>
<config-name>Secured Anonymous WSRM Client</config-name>
<reliable-messaging>
- <message-retransmission attempts="50" interval="10" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="10"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
@@ -75,7 +75,7 @@
<config-name>Secured Addressable WSRM Client</config-name>
<reliable-messaging>
<backports-server port="7777"/>
- <message-retransmission attempts="50" interval="10" timeout="10"/>
+ <message-retransmission attempts="10" interval="5" timeout="10"/>
</reliable-messaging>
<post-handler-chains>
<javaee:handler-chain>
16 years, 7 months
JBossWS SVN: r7292 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-03 10:37:07 -0400 (Tue, 03 Jun 2008)
New Revision: 7292
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
Log:
fix hudson regression
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2008-06-03 14:29:14 UTC (rev 7291)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2008-06-03 14:37:07 UTC (rev 7292)
@@ -331,7 +331,7 @@
if (chunkSizeValue > 0)
{
- clientConfig.put("chunkedLength", new Integer(chunkSizeValue).toString());
+ clientConfig.put("chunkedLength", String.valueOf(chunkSizeValue));
}
else
{
16 years, 7 months
JBossWS SVN: r7291 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-03 10:29:14 -0400 (Tue, 03 Jun 2008)
New Revision: 7291
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
Log:
[JBWS-2124] Expose http chunking through SOAPConnection
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2008-06-03 14:16:49 UTC (rev 7290)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/client/HTTPRemotingConnection.java 2008-06-03 14:29:14 UTC (rev 7291)
@@ -331,7 +331,7 @@
if (chunkSizeValue > 0)
{
- clientConfig.put("chunkedLength", new Integer(chunkSizeValue));
+ clientConfig.put("chunkedLength", new Integer(chunkSizeValue).toString());
}
else
{
16 years, 7 months
JBossWS SVN: r7290 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-06-03 10:16:49 -0400 (Tue, 03 Jun 2008)
New Revision: 7290
Modified:
stack/native/trunk/modules/testsuite/test-excludes-jboss422.txt
stack/native/trunk/modules/testsuite/test-excludes-jboss423.txt
Log:
[JBWS-2107] Updating AS 4.2.x excludes
Modified: stack/native/trunk/modules/testsuite/test-excludes-jboss422.txt
===================================================================
--- stack/native/trunk/modules/testsuite/test-excludes-jboss422.txt 2008-06-03 13:12:17 UTC (rev 7289)
+++ stack/native/trunk/modules/testsuite/test-excludes-jboss422.txt 2008-06-03 14:16:49 UTC (rev 7290)
@@ -27,5 +27,9 @@
org/jboss/test/ws/jaxws/samples/jmstransport/**
org/jboss/test/ws/jaxws/samples/dar/JMSClientTestCase.*
+# [JBWS-2107] Resolve dependency on @SecurityDomain
+org/jboss/test/ws/jaxws/samples/dar/AddressingClientTestCase.*
+org/jboss/test/ws/jaxws/samples/dar/ClientTestCase.*
+
# [JBWS-2170] Fix embedded for maven build
-org/jboss/test/ws/embedded/**
\ No newline at end of file
+org/jboss/test/ws/embedded/**
Modified: stack/native/trunk/modules/testsuite/test-excludes-jboss423.txt
===================================================================
--- stack/native/trunk/modules/testsuite/test-excludes-jboss423.txt 2008-06-03 13:12:17 UTC (rev 7289)
+++ stack/native/trunk/modules/testsuite/test-excludes-jboss423.txt 2008-06-03 14:16:49 UTC (rev 7290)
@@ -10,5 +10,9 @@
# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration
org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*
+# [JBWS-2107] Resolve dependency on @SecurityDomain
+org/jboss/test/ws/jaxws/samples/dar/AddressingClientTestCase.*
+org/jboss/test/ws/jaxws/samples/dar/ClientTestCase.*
+
# [JBWS-2170] Fix embedded for maven build
org/jboss/test/ws/embedded/**
\ No newline at end of file
16 years, 7 months