JBossWS SVN: r11853 - in stack/native/branches/jbossws-native-3.1.2: modules/core/src/main/java/org/jboss/ws/tools/jaxws/impl and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-03-24 08:33:23 -0400 (Wed, 24 Mar 2010)
New Revision: 11853
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/tools/jaxws/impl/SunRIConsumerImpl.java
stack/native/branches/jbossws-native-3.1.2/pom.xml
Log:
[JBPAPP-3974] upgrading sun jaxws tools from 2.1.3 to 2.1.7 and chaning JAXWS default from 2.0 to 2.1
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/tools/jaxws/impl/SunRIConsumerImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/tools/jaxws/impl/SunRIConsumerImpl.java 2010-03-23 08:48:15 UTC (rev 11852)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/tools/jaxws/impl/SunRIConsumerImpl.java 2010-03-24 12:33:23 UTC (rev 11853)
@@ -51,7 +51,7 @@
private PrintStream messageStream;
private String wsdlLocation;
private List<String> additionalCompilerClassPath = new ArrayList<String>();
- private String target = "2.0";
+ private String target = "2.1";
@Override
public void setBindingFiles(List<File> bindingFiles)
Modified: stack/native/branches/jbossws-native-3.1.2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/pom.xml 2010-03-23 08:48:15 UTC (rev 11852)
+++ stack/native/branches/jbossws-native-3.1.2/pom.xml 2010-03-24 12:33:23 UTC (rev 11853)
@@ -69,7 +69,7 @@
<apache.scout.version>1.1.1</apache.scout.version>
<juddi.version>2.0.1</juddi.version>
<sun.fastinfoset.version>1.2.7</sun.fastinfoset.version>
- <sun.jaxws.version>2.1.3</sun.jaxws.version>
+ <sun.jaxws.version>2.1.7</sun.jaxws.version>
<woodstox.version>3.2.8</woodstox.version>
<wsdl4j.version>1.6.2</wsdl4j.version>
<xmlsec.version>1.4.3</xmlsec.version>
14 years, 9 months
JBossWS SVN: r11852 - in stack/native/branches/jbossws-native-3.1.2/modules: core/src/main/java/org/jboss/ws/extensions/security and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: mageshbk(a)jboss.com
Date: 2010-03-23 04:48:15 -0400 (Tue, 23 Mar 2010)
New Revision: 11852
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/XMLContent.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPContentElementTestCase.java
Log:
[JBPAPP-3785] - Wrong namespace on SOAP operation when a method with header parameter having a new namespace is invoked, "second" after a method that does not have this namespace'd parameter
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java 2010-03-23 08:30:31 UTC (rev 11851)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java 2010-03-23 08:48:15 UTC (rev 11852)
@@ -34,11 +34,13 @@
import javax.xml.soap.AttachmentPart;
import javax.xml.soap.MimeHeader;
import javax.xml.soap.MimeHeaders;
+import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPFault;
+import javax.xml.soap.SOAPHeader;
import javax.xml.soap.SOAPMessage;
import javax.xml.soap.SOAPPart;
@@ -47,6 +49,7 @@
import org.jboss.ws.WSException;
import org.jboss.ws.core.CommonMessageContext;
import org.jboss.ws.core.SOAPMessageAbstraction;
+import org.jboss.ws.core.soap.SOAPContent.State;
import org.jboss.ws.core.soap.attachment.AttachmentPartImpl;
import org.jboss.ws.core.soap.attachment.CIDGenerator;
import org.jboss.ws.core.soap.attachment.MimeConstants;
@@ -56,6 +59,8 @@
import org.jboss.ws.extensions.xop.XOPContext;
import org.jboss.ws.metadata.umdm.EndpointMetaData;
import org.jboss.ws.metadata.umdm.OperationMetaData;
+import org.w3c.dom.Node;
+import org.w3c.dom.NodeList;
/**
* The root class for all SOAP messages. As transmitted on the "wire", a SOAP message is an XML document or a
@@ -530,7 +535,7 @@
if (attachment == null)
{
- // autogenerated CID based on part name
+ // auto-generated CID based on part name
attachment = getAttachmentByPartName(ref);
}
@@ -564,4 +569,41 @@
while (attachmentItr.next() != null)
attachmentItr.remove();
}
+
+ public void prepareForDOMAccess() throws SOAPException
+ {
+ prepareForSpecificAccess(State.DOM_VALID);
+ }
+
+ private void prepareForSpecificAccess(State state) throws SOAPException
+ {
+ List<SOAPContentElement> contentElements = new LinkedList<SOAPContentElement>();
+ SOAPBody soapBody = this.getSOAPBody();
+ NodeList nodes = soapBody.getChildNodes();
+ for (int i = 0; i < nodes.getLength(); i++)
+ {
+ Node current = nodes.item(i);
+ if (current instanceof SOAPContentElement)
+ {
+ contentElements.add((SOAPContentElement)current);
+ break;
+ }
+ }
+ SOAPHeader soapHeader = this.getSOAPHeader();
+ nodes = soapHeader.getChildNodes();
+ for (int i = 0; i < nodes.getLength(); i++)
+ {
+ Node current = nodes.item(i);
+ if (current instanceof SOAPContentElement)
+ {
+ contentElements.add((SOAPContentElement)current);
+ break;
+ }
+ }
+ for (SOAPContentElement sce : contentElements)
+ {
+ sce.transitionTo(state);
+ }
+ }
+
}
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/XMLContent.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/XMLContent.java 2010-03-23 08:30:31 UTC (rev 11851)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/XMLContent.java 2010-03-23 08:48:15 UTC (rev 11852)
@@ -39,8 +39,8 @@
import org.jboss.ws.Constants;
import org.jboss.ws.WSException;
import org.jboss.ws.core.CommonMessageContext;
+import org.jboss.ws.core.binding.AbstractDeserializerFactory;
import org.jboss.ws.core.binding.BindingException;
-import org.jboss.ws.core.binding.AbstractDeserializerFactory;
import org.jboss.ws.core.binding.DeserializerSupport;
import org.jboss.ws.core.binding.SerializationContext;
import org.jboss.ws.core.binding.TypeMappingImpl;
@@ -309,18 +309,28 @@
// Remove all child nodes
container.removeContents();
- // In case of dispatch and provider we use artifical element names
+ // In case of dispatch and provider we use artificial element names
// These need to be replaced (costly!)
if (artificalElement)
{
container.setElementQNameInternal(contentRootName);
}
- Document ownerDoc = container.getOwnerDocument();
+ // Process attributes: we copy from the fragment element to the previous container element, after having cleaned the latter
+ // to prevent useless / redundant namespace declarations with multiple prefixes. We also update the prefix of the container
+ // element to ensure proper namespace is configured for it
+ String oldPrefix = container.getPrefix();
+ if (oldPrefix != null)
+ {
+ container.removeNamespaceDeclaration(oldPrefix);
+ }
DOMUtils.copyAttributes(container, domElement);
+ container.setPrefix(domElement.getPrefix());
SOAPFactoryImpl soapFactory = new SOAPFactoryImpl();
+ // Add new child nodes
+ Document ownerDoc = container.getOwnerDocument();
NodeList nlist = domElement.getChildNodes();
for (int i = 0; i < nlist.getLength(); i++)
{
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java 2010-03-23 08:30:31 UTC (rev 11851)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java 2010-03-23 08:48:15 UTC (rev 11852)
@@ -214,6 +214,11 @@
SecurityStore securityStore = new SecurityStore(configuration.getKeyStoreURL(), configuration.getKeyStoreType(), configuration.getKeyStorePassword(),
configuration.getKeyPasswords(), configuration.getTrustStoreURL(), configuration.getTrustStoreType(), configuration.getTrustStorePassword());
SecurityEncoder encoder = new SecurityEncoder(operations, securityStore);
+
+ if ((sign != null || encrypt != null) && message instanceof SOAPMessageImpl)
+ {
+ ((SOAPMessageImpl)message).prepareForDOMAccess();
+ }
encoder.encode(message.getSOAPPart());
}
catch (WSSecurityException e)
Modified: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPContentElementTestCase.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPContentElementTestCase.java 2010-03-23 08:30:31 UTC (rev 11851)
+++ stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/common/soap/SOAPContentElementTestCase.java 2010-03-23 08:48:15 UTC (rev 11852)
@@ -32,10 +32,16 @@
import javax.xml.soap.SOAPMessage;
import javax.xml.soap.Text;
+import org.jboss.ws.core.soap.MessageFactoryImpl;
import org.jboss.ws.core.soap.NameImpl;
+import org.jboss.ws.core.soap.SOAPBodyImpl;
import org.jboss.ws.core.soap.SOAPContentElement;
+import org.jboss.ws.core.soap.SOAPElementImpl;
+import org.jboss.ws.core.soap.Style;
import org.jboss.ws.core.soap.XMLFragment;
import org.jboss.wsf.test.JBossWSTest;
+import org.w3c.dom.Node;
+import org.w3c.dom.NodeList;
/**
* Test the SOAPContentElement
@@ -187,4 +193,53 @@
String expEnv = "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Body><ns1:hello xmlns:ns1='http://handlerservice1.org/wsdl'><String_1>world::SOAP header was added</String_1></ns1:hello></env:Body></env:Envelope>";
assertEquals(expEnv, baos.toString());
}
+
+
+ //JBWS-2940: JAXB marshalling of object model can lead to a slightly different yet equivalent XMLFragment
+ //The new fragment can have different namespace prefix declarations, which can cause major issues in unlucky situations like below
+ public void testAttributesHandlingOnModelTransition() throws Exception
+ {
+ String envStr =
+ "<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>" +
+ "<env:Body>" +
+ "<ns2:Foo xmlns:ns2='firstNS'/>" +
+ "</env:Body>" +
+ "</env:Envelope>";
+
+ MessageFactoryImpl factory = new MessageFactoryImpl();
+ factory.setStyle(Style.DOCUMENT);
+ SOAPMessage soapMessage = factory.createMessage(null, new ByteArrayInputStream(envStr.getBytes()));
+
+ SOAPContentElement sce = getSOAPContentElement(soapMessage);
+
+ //force transition to XML_VALID and set an equivalent XMLFragment (but having a new ns declaration that would overwrite the one in the original fragment)
+ sce.setXMLFragment(new XMLFragment("<Foo xmlns='firstNS' xmlns:ns2='secondNs'/>"));
+
+ SOAPBody soapBody = soapMessage.getSOAPBody();
+ //force transition to DOM_VALID
+ soapBody.getFirstChild().getChildNodes();
+
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ soapMessage.writeTo(baos);
+
+ soapMessage = factory.createMessage(null, new ByteArrayInputStream(baos.toByteArray()));
+ Node foo = soapMessage.getSOAPBody().getFirstChild();
+ assertEquals("firstNS", foo.getNamespaceURI());
+ }
+
+ private SOAPContentElement getSOAPContentElement(final SOAPMessage soapMessage) throws Exception
+ {
+ SOAPBodyImpl soapBody = (SOAPBodyImpl)soapMessage.getSOAPBody();
+ SOAPElementImpl bodyElement = null;
+ NodeList nodes = soapBody.getChildNodes();
+ for (int i = 0; i < nodes.getLength() && bodyElement == null; i++)
+ {
+ Node current = nodes.item(i);
+ if (current instanceof SOAPElementImpl)
+ {
+ bodyElement = (SOAPElementImpl)current;
+ }
+ }
+ return (SOAPContentElement)bodyElement;
+ }
}
14 years, 9 months
JBossWS SVN: r11851 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-23 04:30:31 -0400 (Tue, 23 Mar 2010)
New Revision: 11851
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
Log:
[JBWS-2969]:revert the change
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 08:28:41 UTC (rev 11850)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 08:30:31 UTC (rev 11851)
@@ -129,10 +129,6 @@
{
throw new UnsupportedOperationException("Cannot get epr for BindingProvider instances using the XML/HTTP binding");
}
- if (!clazz.isAssignableFrom(W3CEndpointReference.class))
- {
- throw new WebServiceException("Unknown EndpointReference class: " + clazz.getClass());
- }
W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
if (epMetaData != null)
{
14 years, 9 months
JBossWS SVN: r11850 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-23 04:28:41 -0400 (Tue, 23 Mar 2010)
New Revision: 11850
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
Log:
[JBPAPP-3962]:revert the change
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:11:52 UTC (rev 11849)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 08:28:41 UTC (rev 11850)
@@ -129,10 +129,6 @@
{
throw new UnsupportedOperationException("Cannot get epr for BindingProvider instances using the XML/HTTP binding");
}
- if (!clazz.isAssignableFrom(W3CEndpointReference.class))
- {
- throw new WebServiceException("Unknown EndpointRefrence class : " + clazz.getClass());
- }
W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
if (epMetaData != null)
{
14 years, 9 months
JBossWS SVN: r11849 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-23 02:11:52 -0400 (Tue, 23 Mar 2010)
New Revision: 11849
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
Log:
[JBWS-2969]:throw WebServiceException when the class is not assignableFrom W3CEndpointReference
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:08:09 UTC (rev 11848)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:11:52 UTC (rev 11849)
@@ -24,6 +24,7 @@
import java.util.Observable;
import javax.xml.ws.EndpointReference;
+import javax.xml.ws.WebServiceException;
import javax.xml.ws.http.HTTPBinding;
import javax.xml.ws.soap.SOAPBinding;
import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -128,6 +129,10 @@
{
throw new UnsupportedOperationException("Cannot get epr for BindingProvider instances using the XML/HTTP binding");
}
+ if (!clazz.isAssignableFrom(W3CEndpointReference.class))
+ {
+ throw new WebServiceException("Unknown EndpointReference class: " + clazz.getClass());
+ }
W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
if (epMetaData != null)
{
14 years, 9 months
JBossWS SVN: r11848 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-23 02:08:09 -0400 (Tue, 23 Mar 2010)
New Revision: 11848
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
Log:
[JBPAPP-3962]:fixed typo
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:06:47 UTC (rev 11847)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:08:09 UTC (rev 11848)
@@ -131,7 +131,7 @@
}
if (!clazz.isAssignableFrom(W3CEndpointReference.class))
{
- throw new WebServiceException("Unknow EndpointRefrence class : " + clazz.getClass());
+ throw new WebServiceException("Unknown EndpointRefrence class : " + clazz.getClass());
}
W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
if (epMetaData != null)
14 years, 9 months
JBossWS SVN: r11847 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-03-23 02:06:47 -0400 (Tue, 23 Mar 2010)
New Revision: 11847
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
Log:
[JBPAPP-3962]:Throw WebSeriveException when the clazz is not assignableFrom W3CEndpointReference
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-22 18:21:26 UTC (rev 11846)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/CommonBindingProvider.java 2010-03-23 06:06:47 UTC (rev 11847)
@@ -24,6 +24,7 @@
import java.util.Observable;
import javax.xml.ws.EndpointReference;
+import javax.xml.ws.WebServiceException;
import javax.xml.ws.http.HTTPBinding;
import javax.xml.ws.soap.SOAPBinding;
import javax.xml.ws.wsaddressing.W3CEndpointReference;
@@ -128,6 +129,10 @@
{
throw new UnsupportedOperationException("Cannot get epr for BindingProvider instances using the XML/HTTP binding");
}
+ if (!clazz.isAssignableFrom(W3CEndpointReference.class))
+ {
+ throw new WebServiceException("Unknow EndpointRefrence class : " + clazz.getClass());
+ }
W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
if (epMetaData != null)
{
14 years, 9 months
JBossWS SVN: r11846 - in stack/native/tags/jbossws-native-3.3.0.CR1: modules/client and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-03-22 14:21:26 -0400 (Mon, 22 Mar 2010)
New Revision: 11846
Modified:
stack/native/tags/jbossws-native-3.3.0.CR1/modules/client/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/core/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/endorsed/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/management/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/services/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.3.0.CR1/pom.xml
Log:
Updating pom.xml files
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/client/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/client/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/core/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/core/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/endorsed/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/endorsed/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/endorsed/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/management/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/management/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/resources/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/resources/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/services/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/services/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/services/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/native-tests/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/native-tests/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/modules/testsuite/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -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</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.3.0.CR1/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.3.0.CR1/pom.xml 2010-03-22 17:53:56 UTC (rev 11845)
+++ stack/native/tags/jbossws-native-3.3.0.CR1/pom.xml 2010-03-22 18:21:26 UTC (rev 11846)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</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,12 +45,12 @@
<!-- 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.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>
+ <jbossws.spi.version>1.3.0.CR1</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.CR1</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.CR1</jbossws.framework.version>
+ <jbossws.jboss501.version>3.3.0.Beta1</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.3.0.Beta1</jbossws.jboss510.version>
+ <jbossws.jboss600M2.version>3.3.0.Beta1</jbossws.jboss600M2.version>
<!-- [JBWS-2505] -->
<!-- START -->
<!--
14 years, 9 months
JBossWS SVN: r11845 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-03-22 13:53:56 -0400 (Mon, 22 Mar 2010)
New Revision: 11845
Added:
stack/native/tags/jbossws-native-3.3.0.CR1/
Log:
Tagging jbossws-native-3.3.0.CR1
Copied: stack/native/tags/jbossws-native-3.3.0.CR1 (from rev 11844, stack/native/trunk)
14 years, 9 months
JBossWS SVN: r11844 - in stack/cxf/tags/jbossws-cxf-3.3.0.CR1: modules/client and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-03-22 13:49:48 -0400 (Mon, 22 Mar 2010)
New Revision: 11844
Modified:
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/client/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/management/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/resources/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/server/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/cxf-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.CR1/pom.xml
Log:
Updating pom.xml files
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/client/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/client/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/client/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/management/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/management/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/management/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/resources/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/resources/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/resources/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/server/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/server/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/server/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/cxf-tests/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/cxf-tests/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/modules/testsuite/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.CR1/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.CR1/pom.xml 2010-03-22 17:43:50 UTC (rev 11843)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.CR1/pom.xml 2010-03-22 17:49:48 UTC (rev 11844)
@@ -17,7 +17,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.CR1</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf-3....</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/tags/jbossws-cxf-3.3.0...</url>
</scm>
<!-- Modules -->
@@ -43,12 +43,12 @@
<!-- 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.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>
+ <jbossws.spi.version>1.3.0.CR1</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.CR1</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.CR1</jbossws.framework.version>
+ <jbossws.jboss501.version>3.3.0.Beta1</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.3.0.Beta1</jbossws.jboss510.version>
+ <jbossws.jboss600M2.version>3.3.0.Beta1</jbossws.jboss600M2.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
14 years, 9 months