JBossWS SVN: r15351 - in stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core: jaxrpc/handler and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2011-12-06 05:18:33 -0500 (Tue, 06 Dec 2011)
New Revision: 15351
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonMessageContext.java
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/handler/HandlerChainBaseImpl.java
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/HandlerChainExecutor.java
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvoker.java
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
Log:
removing obsolete 'org.jboss.ws.allow.expand.dom' property
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonMessageContext.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonMessageContext.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonMessageContext.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -54,10 +54,6 @@
private static final ResourceBundle bundle = BundleUtils.getBundle(CommonMessageContext.class);
private static Logger log = Logger.getLogger(CommonMessageContext.class);
- // expandToDOM in the SOAPContentElement should not happen during normal operation
- // This property should be set the message context when it is ok to do so.
- public static final String ALLOW_EXPAND_TO_DOM = "org.jboss.ws.allow.expand.dom";
-
public static final String REMOTING_METADATA = "org.jboss.ws.remoting.metadata";
// The serialization context for this message ctx
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -880,25 +880,16 @@
if (SOAP_ARRAY_NAME.equals(elName))
{
- CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
- msgContext.put(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
- try
+ QName compXMLName = paramMetaData.getXmlName();
+ Element compElement = DOMUtils.getFirstChildElement(aux);
+ // NPE when the soap encoded array size is 0 on the return path
+ // http://jira.jboss.org/jira/browse/JBWS-1285
+ if (compElement == null || compElement.getNodeName().equals(compXMLName.getLocalPart()))
{
- QName compXMLName = paramMetaData.getXmlName();
- Element compElement = DOMUtils.getFirstChildElement(aux);
- // NPE when the soap encoded array size is 0 on the return path
- // http://jira.jboss.org/jira/browse/JBWS-1285
- if (compElement == null || compElement.getNodeName().equals(compXMLName.getLocalPart()))
- {
- soapContentElement = aux;
- soapContentElement.setParamMetaData(paramMetaData);
- break;
- }
+ soapContentElement = aux;
+ soapContentElement.setParamMetaData(paramMetaData);
+ break;
}
- finally
- {
- msgContext.remove(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
- }
}
}
}
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/handler/HandlerChainBaseImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/handler/HandlerChainBaseImpl.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/handler/HandlerChainBaseImpl.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -274,8 +274,6 @@
log.debug("Enter: handleRequest");
SOAPMessageContextJAXRPC jaxrpcContext = (SOAPMessageContextJAXRPC)msgContext;
- jaxrpcContext.setProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
-
// Replace handlers that did not survive the previous call
replaceDirtyHandlers();
@@ -318,8 +316,6 @@
// we start at this index in the response chain
if (doNext == false)
falseIndex = (handlerIndex - 1);
-
- jaxrpcContext.removeProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
log.debug("Exit: handleRequest with status: " + doNext);
}
}
@@ -356,7 +352,6 @@
log.debug("Enter: handleResponse");
SOAPMessageContextJAXRPC jaxrpcContext = (SOAPMessageContextJAXRPC)msgContext;
- jaxrpcContext.setProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
int handlerIndex = handlers.size() - 1;
if (falseIndex != -1)
@@ -401,7 +396,6 @@
if (doNext == false)
falseIndex = (handlerIndex - 1);
- jaxrpcContext.removeProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
log.debug("Exit: handleResponse with status: " + doNext);
}
}
@@ -435,35 +429,21 @@
if (handlers.size() > 0)
{
- log.debug("Enter: handleFault");
+ int handlerIndex = handlers.size() - 1;
+ if (falseIndex != -1)
+ handlerIndex = falseIndex;
- SOAPMessageContextJAXRPC jaxrpcContext = (SOAPMessageContextJAXRPC)msgContext;
- jaxrpcContext.setProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
-
- try
+ Handler currHandler = null;
+ for (; doNext && handlerIndex >= 0; handlerIndex--)
{
- int handlerIndex = handlers.size() - 1;
- if (falseIndex != -1)
- handlerIndex = falseIndex;
-
- Handler currHandler = null;
- for (; doNext && handlerIndex >= 0; handlerIndex--)
+ HandlerEntry handlerEntry = (HandlerEntry)handlers.get(handlerIndex);
+ if (type == HandlerType.ALL || type == handlerEntry.getType())
{
- HandlerEntry handlerEntry = (HandlerEntry)handlers.get(handlerIndex);
- if (type == HandlerType.ALL || type == handlerEntry.getType())
- {
- currHandler = handlerEntry.getHandler();
-
- log.debug("Handle fault: " + currHandler);
- doNext = currHandler.handleFault(msgContext);
- }
+ currHandler = handlerEntry.getHandler();
+ log.debug("Handle fault: " + currHandler);
+ doNext = currHandler.handleFault(msgContext);
}
}
- finally
- {
- jaxrpcContext.removeProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
- log.debug("Exit: handleFault with status: " + doNext);
- }
}
return doNext;
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/HandlerChainExecutor.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/HandlerChainExecutor.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/handler/HandlerChainExecutor.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -326,14 +326,12 @@
try
{
- context.put(MessageContextJAXWS.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
context.setCurrentScope(Scope.HANDLER);
return currHandler.handleMessage(msgContext);
}
finally
{
context.setCurrentScope(Scope.APPLICATION);
- context.remove(MessageContextJAXWS.ALLOW_EXPAND_TO_DOM);
}
}
@@ -351,14 +349,12 @@
try
{
- context.put(MessageContextJAXWS.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
context.setCurrentScope(Scope.HANDLER);
return currHandler.handleFault(msgContext);
}
finally
{
context.setCurrentScope(Scope.APPLICATION);
- context.remove(MessageContextJAXWS.ALLOW_EXPAND_TO_DOM);
}
}
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvoker.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvoker.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvoker.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -208,54 +208,46 @@
if (handlersPass)
{
- msgContext.put(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
- try
+ // Check if protocol handlers modified the payload
+ if (msgContext.isModified())
{
- // Check if protocol handlers modified the payload
- if (msgContext.isModified())
+ log.debug("Handler modified payload, unbind message again");
+ reqMessage = msgContext.getMessageAbstraction();
+ sepInv = binding.unbindRequestMessage(opMetaData, reqMessage);
+ }
+ //JBWS-2969:check if the RPC/Lit input paramter is null
+ if (opMetaData.getEndpointMetaData().getType() != EndpointMetaData.Type.JAXRPC
+ && opMetaData.isRPCLiteral() && sepInv.getRequestParamNames() != null)
+ {
+
+ for (QName qname : sepInv.getRequestParamNames())
{
- log.debug("Handler modified payload, unbind message again");
- reqMessage = msgContext.getMessageAbstraction();
- sepInv = binding.unbindRequestMessage(opMetaData, reqMessage);
- }
- //JBWS-2969:check if the RPC/Lit input paramter is null
- if (opMetaData.getEndpointMetaData().getType() != EndpointMetaData.Type.JAXRPC
- && opMetaData.isRPCLiteral() && sepInv.getRequestParamNames() != null)
- {
-
- for (QName qname : sepInv.getRequestParamNames())
+ ParameterMetaData paramMetaData = opMetaData.getParameter(qname);
+ if ((paramMetaData.getMode().equals(ParameterMode.IN) || paramMetaData.getMode().equals(ParameterMode.INOUT)) && sepInv.getRequestParamValue(qname) == null)
{
- ParameterMetaData paramMetaData = opMetaData.getParameter(qname);
- if ((paramMetaData.getMode().equals(ParameterMode.IN) || paramMetaData.getMode().equals(ParameterMode.INOUT)) && sepInv.getRequestParamValue(qname) == null)
- {
- throw new WebServiceException(BundleUtils.getMessage(bundle, "RPC/LITERAL_PAPAMETERS_IS_NULL", opMetaData.getQName()));
- }
+ throw new WebServiceException(BundleUtils.getMessage(bundle, "RPC/LITERAL_PAPAMETERS_IS_NULL", opMetaData.getQName()));
}
}
+ }
- // Invoke an instance of the SEI implementation bean
- Invocation inv = setupInvocation(endpoint, sepInv, invContext);
- InvocationHandler invHandler = endpoint.getInvocationHandler();
-
- try
- {
- invHandler.invoke(endpoint, inv);
- }
- catch (InvocationTargetException th)
- {
- //Unwrap the throwable raised by the service endpoint implementation
- Throwable targetEx = th.getTargetException();
- throw (targetEx instanceof Exception ? (Exception)targetEx : new UndeclaredThrowableException(targetEx));
- }
+ // Invoke an instance of the SEI implementation bean
+ Invocation inv = setupInvocation(endpoint, sepInv, invContext);
+ InvocationHandler invHandler = endpoint.getInvocationHandler();
- // Handler processing might have replaced the endpoint invocation
- sepInv = inv.getInvocationContext().getAttachment(EndpointInvocation.class);
+ try
+ {
+ invHandler.invoke(endpoint, inv);
}
- finally
+ catch (InvocationTargetException th)
{
- msgContext.remove(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
+ //Unwrap the throwable raised by the service endpoint implementation
+ Throwable targetEx = th.getTargetException();
+ throw (targetEx instanceof Exception ? (Exception)targetEx : new UndeclaredThrowableException(targetEx));
}
+ // Handler processing might have replaced the endpoint invocation
+ sepInv = inv.getInvocationContext().getAttachment(EndpointInvocation.class);
+
// Reverse the message direction
msgContext = processPivotInternal(msgContext, direction);
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java 2011-12-05 17:19:02 UTC (rev 15350)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java 2011-12-06 10:18:33 UTC (rev 15351)
@@ -621,13 +621,6 @@
// See SOAPFactoryImpl for details.
log.debug("MTOM disabled: Force inline XOP data");
-
- // TODO: This property must be reset, otherwise you negate its purpose
- CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
- msgContext.put(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Boolean.TRUE);
- if (msgContext instanceof MessageContextJAXWS)
- ((MessageContextJAXWS)msgContext).setScope(CommonMessageContext.ALLOW_EXPAND_TO_DOM, Scope.APPLICATION);
-
expandToDOM();
}
else if (domContentState && XOPContext.isMTOMEnabled())
13 years
JBossWS SVN: r15349 - in stack/native/tags/jbossws-native-4.0.0.CR2: modules/client and 9 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-05 10:11:22 -0500 (Mon, 05 Dec 2011)
New Revision: 15349
Modified:
stack/native/tags/jbossws-native-4.0.0.CR2/modules/client/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/core/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/management/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/endorsed/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/resources/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/services/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/shared-tests/pom.xml
stack/native/tags/jbossws-native-4.0.0.CR2/pom.xml
Log:
Updating poms
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/client/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/client/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/core/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/core/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/management/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/management/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -17,11 +17,11 @@
These dependencies are picked up by the assembly-deploy-artifacts
descriptor. They have no real and relevant meaning for this module
-->
- <dependency>
+<!-- <dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-shared-testsuite</artifactId>
<type>zip</type>
- </dependency>
+ </dependency> -->
<dependency>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-shared-testsuite</artifactId>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/dist/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -5,12 +5,12 @@
<name>JBoss Web Services - Stack Native Distribution</name>
<artifactId>jbossws-native-dist</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/endorsed/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/endorsed/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/endorsed/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/resources/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/resources/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/services/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/services/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/services/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/native-tests/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/native-tests/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/shared-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/shared-tests/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/modules/testsuite/shared-tests/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-4.0.0.CR2/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-4.0.0.CR2/pom.xml 2011-12-05 13:47:56 UTC (rev 15348)
+++ stack/native/tags/jbossws-native-4.0.0.CR2/pom.xml 2011-12-05 15:11:22 UTC (rev 15349)
@@ -31,7 +31,7 @@
<packaging>pom</packaging>
<description>JBossWS Native stack</description>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.CR2</version>
<!-- Parent -->
<parent>
@@ -42,9 +42,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 -->
@@ -58,15 +58,15 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>2.0.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>2.0.0-SNAPSHOT</jbossws.common.version>
- <jbossws.common.tools.version>1.0.0-SNAPSHOT</jbossws.common.tools.version>
- <jbossws.shared.testsuite.version>4.0.0-SNAPSHOT</jbossws.shared.testsuite.version>
- <jbossws.jboss600.version>4.0.0-SNAPSHOT</jbossws.jboss600.version>
- <jbossws.jboss610.version>4.0.0-SNAPSHOT</jbossws.jboss610.version>
- <jbossws.jboss700.version>4.0.0-SNAPSHOT</jbossws.jboss700.version>
- <jbossws.jboss701.version>4.0.0-SNAPSHOT</jbossws.jboss701.version>
- <jbossws.jboss702.version>4.0.0-SNAPSHOT</jbossws.jboss702.version>
+ <jbossws.spi.version>2.0.0.CR1</jbossws.spi.version>
+ <jbossws.common.version>2.0.0.CR1</jbossws.common.version>
+ <jbossws.common.tools.version>1.0.0.CR1</jbossws.common.tools.version>
+ <jbossws.shared.testsuite.version>4.0.0.CR1</jbossws.shared.testsuite.version>
+ <jbossws.jboss600.version>4.0.0.CR1</jbossws.jboss600.version>
+ <jbossws.jboss610.version>4.0.0.CR1</jbossws.jboss610.version>
+ <jbossws.jboss700.version>4.0.0.CR1</jbossws.jboss700.version>
+ <jbossws.jboss701.version>4.0.0.CR1</jbossws.jboss701.version>
+ <jbossws.jboss702.version>4.0.0.CR1</jbossws.jboss702.version>
<jboss700.version>7.0.0.Final</jboss700.version>
<jboss701.version>7.0.1.Final</jboss701.version>
<jboss702.version>7.0.2.Final</jboss702.version>
13 years
JBossWS SVN: r15348 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-05 08:47:56 -0500 (Mon, 05 Dec 2011)
New Revision: 15348
Added:
stack/native/tags/jbossws-native-4.0.0.CR2/
Log:
Tagging jbossws-native-4.0.0.CR2
13 years
JBossWS SVN: r15347 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-05 07:06:57 -0500 (Mon, 05 Dec 2011)
New Revision: 15347
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/PortComponentResolver.java
Log:
Minor cleanup
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/PortComponentResolver.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/PortComponentResolver.java 2011-12-01 17:33:07 UTC (rev 15346)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/server/PortComponentResolver.java 2011-12-05 12:06:57 UTC (rev 15347)
@@ -40,7 +40,6 @@
private static final Logger log = Logger.getLogger(PortComponentResolver.class);
private String pcLink;
- private Endpoint result;
public PortComponentResolver(String pcref)
{
13 years
JBossWS SVN: r15346 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-01 12:33:07 -0500 (Thu, 01 Dec 2011)
New Revision: 15346
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
Exclude xnio-api dependency from jboss-ejb-client in 710 testsuite dependency tree to avoid freezing the testsuite due to recent AS7 controller-client updates
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-12-01 17:29:53 UTC (rev 15345)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-12-01 17:33:07 UTC (rev 15346)
@@ -1295,6 +1295,10 @@
<groupId>org.jboss.remoting3</groupId>
<artifactId>jboss-remoting</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.jboss.xnio</groupId>
+ <artifactId>xnio-api</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
13 years
JBossWS SVN: r15345 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-01 12:29:53 -0500 (Thu, 01 Dec 2011)
New Revision: 15345
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
Exclude xnio-api dependency from jboss-ejb-client in 710 testsuite dependency tree to avoid freezing the testsuite due to recent AS7 controller-client updates
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-11-24 06:18:53 UTC (rev 15344)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-12-01 17:29:53 UTC (rev 15345)
@@ -1525,6 +1525,10 @@
<groupId>org.jboss.remoting3</groupId>
<artifactId>jboss-remoting</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.jboss.xnio</groupId>
+ <artifactId>xnio-api</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
13 years