JBossWS SVN: r11904 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-30 10:27:02 -0400 (Tue, 30 Mar 2010)
New Revision: 11904
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
Log:
[JBPAPP-4033]:Add wsa:MessageID in request soap message
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-03-30 14:25:11 UTC (rev 11903)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-03-30 14:27:02 UTC (rev 11904)
@@ -22,6 +22,7 @@
package org.jboss.ws.extensions.addressing.jaxws;
import org.jboss.logging.Logger;
+import org.jboss.ws.extensions.addressing.AddressingClientUtil;
import org.jboss.ws.extensions.addressing.AddressingConstantsImpl;
import org.jboss.ws.extensions.addressing.soap.SOAPAddressingPropertiesImpl;
import org.jboss.ws.metadata.umdm.ClientEndpointMetaData;
@@ -122,6 +123,12 @@
}
}
+ //Add this optional messageID
+ if (addrProps.getMessageID()== null)
+ {
+ addrProps.setMessageID(AddressingClientUtil.createMessageID());
+ }
+
SOAPMessage soapMessage = ((SOAPMessageContext)msgContext).getMessage();
addrProps.writeHeaders(soapMessage);
14 years, 9 months
JBossWS SVN: r11903 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/metadata/builder/jaxws.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-30 10:25:11 -0400 (Tue, 30 Mar 2010)
New Revision: 11903
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
Log:
[JBPAPP-4032]:correct default wsa:action value
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2010-03-30 14:08:54 UTC (rev 11902)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSMetaDataBuilder.java 2010-03-30 14:25:11 UTC (rev 11903)
@@ -544,7 +544,16 @@
if (anAction != null)
{
addrExt.setInboundAction(anAction.input());
- addrExt.setOutboundAction(anAction.output());
+ if ("".equals(anAction.output()))
+ {
+ addrExt.setOutboundAction(epMetaData.getPortName().getNamespaceURI()
+ + "/" + opMetaData.getQName().getLocalPart() + "/" + opMetaData.getQName().getLocalPart()
+ + "Response");
+ }
+ else
+ {
+ addrExt.setOutboundAction(anAction.output());
+ }
addrExt.setFaultActions(anAction.fault());
}
else
14 years, 9 months
JBossWS SVN: r11902 - in stack/native/tags/jbossws-native-3.3.0.CR1.SP2: modules/client and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 10:08:54 -0400 (Tue, 30 Mar 2010)
New Revision: 11902
Modified:
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/client/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/core/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/endorsed/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/management/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/services/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/pom.xml
Log:
[JBAS-7833] releasing JBossWS 3.3.0.CR1.SP2
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/client/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/client/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/core/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/core/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/endorsed/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/endorsed/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/endorsed/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/management/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/management/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/resources/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/resources/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/services/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/services/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/services/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/framework-tests/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/framework-tests/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/native-tests/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/native-tests/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/modules/testsuite/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP2/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP2/pom.xml 2010-03-30 13:48:39 UTC (rev 11901)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP2/pom.xml 2010-03-30 14:08:54 UTC (rev 11902)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP2</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/trunk</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 -->
@@ -45,9 +45,9 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.3.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.3.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.3.0-SNAPSHOT</jbossws.framework.version>
+ <jbossws.spi.version>1.3.0.CR1.SP1</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.CR1.SP1</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.CR1.SP1</jbossws.framework.version>
<jbossws.jboss501.version>3.3.0-SNAPSHOT</jbossws.jboss501.version>
<jbossws.jboss510.version>3.3.0-SNAPSHOT</jbossws.jboss510.version>
<jbossws.jboss600M2.version>3.3.0-SNAPSHOT</jbossws.jboss600M2.version>
14 years, 9 months
JBossWS SVN: r11901 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 09:48:39 -0400 (Tue, 30 Mar 2010)
New Revision: 11901
Added:
stack/native/tags/jbossws-native-3.3.0.CR1.SP2/
Log:
[JBAS-7833] another tag
Copied: stack/native/tags/jbossws-native-3.3.0.CR1.SP2 (from rev 11900, stack/native/trunk)
14 years, 9 months
JBossWS SVN: r11900 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 09:45:27 -0400 (Tue, 30 Mar 2010)
New Revision: 11900
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
Log:
[NETTY-237] rollback workaround
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 11:30:31 UTC (rev 11899)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 13:45:27 UTC (rev 11900)
@@ -128,8 +128,11 @@
this.status = HttpResponseStatus.valueOf(sc);
}
- @Override
- public final void setStatus(HttpResponseStatus sc)
+ /**
+ * Sets response status code.
+ * @param sc response status code
+ */
+ public final void setStatus(final HttpResponseStatus sc)
{
this.status = sc;
}
@@ -211,8 +214,44 @@
key = header.getName();
List<String> values = new LinkedList<String>();
values.add(header.getValue());
+ values = this.removeProhibitedCharacters(values);
this.setHeader(key, values);
}
}
+ // TODO: https://jira.jboss.org/jira/browse/NETTY-237
+ /**
+ * Removes prohibited header value characters.
+ *
+ * @param values header values before optimization
+ * @return optimized header values
+ */
+ private List<String> removeProhibitedCharacters(final List<String> values)
+ {
+ final List<String> retVal = new LinkedList<String>();
+ for (int i = 0; i < values.size(); i++)
+ {
+ retVal.add(i, this.removeProhibitedCharacters(values.get(i)));
+ }
+
+ return retVal;
+ }
+
+ // TODO: https://jira.jboss.org/jira/browse/NETTY-237
+ /**
+ * Removes prohibited header value characters.
+ *
+ * @param value header value before optimization
+ * @return optimized header value
+ */
+ private String removeProhibitedCharacters(final String value)
+ {
+ String retVal = value;
+
+ retVal = retVal.replace('\r', ' ');
+ retVal = retVal.replace('\n', ' ');
+
+ return retVal;
+ }
+
}
14 years, 9 months
JBossWS SVN: r11899 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 07:30:31 -0400 (Tue, 30 Mar 2010)
New Revision: 11899
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
sync with AS trunk
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2010-03-30 11:26:33 UTC (rev 11898)
+++ stack/native/trunk/modules/testsuite/pom.xml 2010-03-30 11:30:31 UTC (rev 11899)
@@ -26,7 +26,7 @@
<wsdl.publish.location>${project.build.directory}/wsdl-publish</wsdl.publish.location>
<hibernate.version>3.2.4.sp1</hibernate.version>
<jboss.javaee.version>5.0.0.GA</jboss.javaee.version>
- <hornetq.version>2.1.0.r8931</hornetq.version>
+ <hornetq.version>2.1.0.r9008</hornetq.version>
</properties>
<!-- Modules -->
14 years, 9 months
JBossWS SVN: r11898 - in stack/native/tags/jbossws-native-3.3.0.CR1.SP1: modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 07:26:33 -0400 (Tue, 30 Mar 2010)
New Revision: 11898
Modified:
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml
Log:
[JBWS-2979][NETTY-237] switching to Netty 3.2.0.BETA1 and removing obsolete hack
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 11:22:51 UTC (rev 11897)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 11:26:33 UTC (rev 11898)
@@ -128,6 +128,12 @@
this.status = HttpResponseStatus.valueOf(sc);
}
+ @Override
+ public final void setStatus(HttpResponseStatus sc)
+ {
+ this.status = sc;
+ }
+
/**
* Sets cookis to response.
*/
@@ -205,44 +211,8 @@
key = header.getName();
List<String> values = new LinkedList<String>();
values.add(header.getValue());
- values = this.removeProhibitedCharacters(values);
this.setHeader(key, values);
}
}
- // TODO: https://jira.jboss.org/jira/browse/NETTY-237
- /**
- * Removes prohibited header value characters.
- *
- * @param values header values before optimization
- * @return optimized header values
- */
- private List<String> removeProhibitedCharacters(final List<String> values)
- {
- final List<String> retVal = new LinkedList<String>();
- for (int i = 0; i < values.size(); i++)
- {
- retVal.add(i, this.removeProhibitedCharacters(values.get(i)));
- }
-
- return retVal;
- }
-
- // TODO: https://jira.jboss.org/jira/browse/NETTY-237
- /**
- * Removes prohibited header value characters.
- *
- * @param value header value before optimization
- * @return optimized header value
- */
- private String removeProhibitedCharacters(final String value)
- {
- String retVal = value;
-
- retVal = retVal.replace('\r', ' ');
- retVal = retVal.replace('\n', ' ');
-
- return retVal;
- }
-
}
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml 2010-03-30 11:22:51 UTC (rev 11897)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml 2010-03-30 11:26:33 UTC (rev 11898)
@@ -70,7 +70,7 @@
<jboss.jaxr.version>2.0.1</jboss.jaxr.version>
<apache.scout.version>1.1.1</apache.scout.version>
<juddi.version>0.9RC4</juddi.version>
- <netty.version>3.1.5.GA</netty.version>
+ <netty.version>3.2.0.BETA1</netty.version>
<sun.fastinfoset.version>1.2.2</sun.fastinfoset.version>
<sun.jaxws.version>2.2</sun.jaxws.version>
<sun.policy.version>2.0-b01</sun.policy.version>
14 years, 9 months
JBossWS SVN: r11897 - in stack/native/trunk: modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 07:22:51 -0400 (Tue, 30 Mar 2010)
New Revision: 11897
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
stack/native/trunk/pom.xml
Log:
[JBWS-2979][NETTY-237] switching to Netty 3.2.0.BETA1 and removing obsolete hack
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 10:34:42 UTC (rev 11896)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/http/AbstractNettyMessage.java 2010-03-30 11:22:51 UTC (rev 11897)
@@ -128,6 +128,12 @@
this.status = HttpResponseStatus.valueOf(sc);
}
+ @Override
+ public final void setStatus(HttpResponseStatus sc)
+ {
+ this.status = sc;
+ }
+
/**
* Sets cookis to response.
*/
@@ -205,44 +211,8 @@
key = header.getName();
List<String> values = new LinkedList<String>();
values.add(header.getValue());
- values = this.removeProhibitedCharacters(values);
this.setHeader(key, values);
}
}
- // TODO: https://jira.jboss.org/jira/browse/NETTY-237
- /**
- * Removes prohibited header value characters.
- *
- * @param values header values before optimization
- * @return optimized header values
- */
- private List<String> removeProhibitedCharacters(final List<String> values)
- {
- final List<String> retVal = new LinkedList<String>();
- for (int i = 0; i < values.size(); i++)
- {
- retVal.add(i, this.removeProhibitedCharacters(values.get(i)));
- }
-
- return retVal;
- }
-
- // TODO: https://jira.jboss.org/jira/browse/NETTY-237
- /**
- * Removes prohibited header value characters.
- *
- * @param value header value before optimization
- * @return optimized header value
- */
- private String removeProhibitedCharacters(final String value)
- {
- String retVal = value;
-
- retVal = retVal.replace('\r', ' ');
- retVal = retVal.replace('\n', ' ');
-
- return retVal;
- }
-
}
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
+++ stack/native/trunk/pom.xml 2010-03-30 11:22:51 UTC (rev 11897)
@@ -70,7 +70,7 @@
<jboss.jaxr.version>2.0.1</jboss.jaxr.version>
<apache.scout.version>1.1.1</apache.scout.version>
<juddi.version>0.9RC4</juddi.version>
- <netty.version>3.1.5.GA</netty.version>
+ <netty.version>3.2.0.BETA1</netty.version>
<sun.fastinfoset.version>1.2.2</sun.fastinfoset.version>
<sun.jaxws.version>2.2</sun.jaxws.version>
<sun.policy.version>2.0-b01</sun.policy.version>
14 years, 9 months
JBossWS SVN: r11896 - in stack/native/tags/jbossws-native-3.3.0.CR1.SP1: modules/client and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-30 06:34:42 -0400 (Tue, 30 Mar 2010)
New Revision: 11896
Modified:
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/client/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/endorsed/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/management/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/services/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml
Log:
[JBAS-7833] releasing NATIVE
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/client/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/client/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/core/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/endorsed/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/endorsed/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/endorsed/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/management/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/management/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/resources/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/resources/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/services/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/services/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/services/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/framework-tests/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/framework-tests/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/native-tests/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/native-tests/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/modules/testsuite/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml 2010-03-30 10:27:51 UTC (rev 11895)
+++ stack/native/tags/jbossws-native-3.3.0.CR1.SP1/pom.xml 2010-03-30 10:34:42 UTC (rev 11896)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1.SP1</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/trunk</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 -->
@@ -45,9 +45,9 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.3.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.3.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.3.0-SNAPSHOT</jbossws.framework.version>
+ <jbossws.spi.version>1.3.0.CR1.SP1</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.CR1.SP1</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.CR1.SP1</jbossws.framework.version>
<jbossws.jboss501.version>3.3.0-SNAPSHOT</jbossws.jboss501.version>
<jbossws.jboss510.version>3.3.0-SNAPSHOT</jbossws.jboss510.version>
<jbossws.jboss600M2.version>3.3.0-SNAPSHOT</jbossws.jboss600M2.version>
14 years, 9 months