JBossWS SVN: r11529 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-02 10:23:59 -0500 (Tue, 02 Feb 2010)
New Revision: 11529
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java
Log:
[JBWS-2914] fixing EndpointReference issue if wsdl location is not provided
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java 2010-02-02 15:18:21 UTC (rev 11528)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ProviderImpl.java 2010-02-02 15:23:59 UTC (rev 11529)
@@ -149,6 +149,10 @@
public <T> T getPort(final EndpointReference epr, final Class<T> sei, final WebServiceFeature... features)
{
final NativeEndpointReference nepr = EndpointReferenceUtil.transform(NativeEndpointReference.class, epr);
+ if (nepr.getWsdlLocation() == null)
+ {
+ nepr.setWsdlLocation(nepr.getAddress() + "?wsdl");
+ }
final URL wsdlLocation = nepr.getWsdlLocation();
final QName serviceName = nepr.getServiceName();
final ServiceDelegate delegate = createServiceDelegate(wsdlLocation, serviceName, Service.class);
14 years, 10 months
JBossWS SVN: r11528 - framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-02 10:18:21 -0500 (Tue, 02 Feb 2010)
New Revision: 11528
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceTestCase.java
Removed:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/BindingProviderTestCase.java
Log:
[JBWS-2914] refactoring test case name + extending it to cover more usecases
Deleted: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/BindingProviderTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/BindingProviderTestCase.java 2010-02-02 13:31:34 UTC (rev 11527)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/BindingProviderTestCase.java 2010-02-02 15:18:21 UTC (rev 11528)
@@ -1,155 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.endpointReference;
-
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.transform.Result;
-import javax.xml.transform.Source;
-import javax.xml.ws.BindingProvider;
-import javax.xml.ws.Dispatch;
-import javax.xml.ws.EndpointReference;
-import javax.xml.ws.Service;
-import javax.xml.ws.WebServiceException;
-import javax.xml.ws.WebServiceFeature;
-import javax.xml.ws.Service.Mode;
-import javax.xml.ws.soap.AddressingFeature;
-import javax.xml.ws.wsaddressing.W3CEndpointReference;
-
-import junit.framework.Test;
-
-import org.jboss.util.NotImplementedException;
-import org.jboss.wsf.common.DOMUtils;
-import org.jboss.wsf.test.JBossWSTest;
-import org.jboss.wsf.test.JBossWSTestSetup;
-import org.w3c.dom.Element;
-import org.w3c.dom.NodeList;
-
-/**
- * Test EPR related methods
- *
- * @author alessio.soldano(a)jboss.com
- * @since 13-Jan-2009
- */
-public class BindingProviderTestCase extends JBossWSTest
-{
- public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-endpointReference";
-
- public static Test suite()
- {
- return new JBossWSTestSetup(BindingProviderTestCase.class, "jaxws-endpointReference.jar");
- }
-
- public void testClient() throws Exception
- {
- URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
- QName serviceName = new QName("http://org.jboss.ws/endpointReference", "EndpointService");
- Endpoint port = Service.create(wsdlURL, serviceName).getPort(Endpoint.class);
-
- BindingProvider bp = (BindingProvider)port;
- assertEndpointReference(bp.getEndpointReference());
- assertEndpointReference(bp.getEndpointReference(W3CEndpointReference.class));
- try
- {
- bp.getEndpointReference(MyEndpointReference.class);
- fail("Exception expected");
- }
- catch (WebServiceException e)
- {
- //NOP: the provided EndpointReference is not supported by the implementation
- }
- catch (Throwable t)
- {
- fail("WebServiceException expected, got " + t);
- }
-
- String retObj = port.echo("Hello");
- assertEquals("Hello", retObj);
- }
-
- public void testDispatch() throws Exception
- {
- innerTestDispatch();
- }
-
- private void innerTestDispatch(WebServiceFeature... features) throws Exception
- {
- URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
- QName serviceName = new QName("http://org.jboss.ws/endpointReference", "EndpointService");
- Service service = Service.create(wsdlURL, serviceName);
- Dispatch<Source> dispatch = null;
- if (features != null && features.length > 0) //test both createDispatch methods
- {
- dispatch = service.createDispatch(new QName("http://org.jboss.ws/endpointReference", "EndpointPort"), Source.class, Mode.PAYLOAD, features);
- }
- else
- {
- dispatch = service.createDispatch(new QName("http://org.jboss.ws/endpointReference", "EndpointPort"), Source.class, Mode.PAYLOAD);
- }
-
- BindingProvider bp = (BindingProvider)dispatch;
- assertEndpointReference(bp.getEndpointReference());
- assertEndpointReference(bp.getEndpointReference(W3CEndpointReference.class));
- try
- {
- bp.getEndpointReference(MyEndpointReference.class);
- fail("WebServiceException expected");
- }
- catch (WebServiceException e)
- {
- //NOP: the provided EndpointReference is not supported by the implementation
- }
- catch (Throwable t)
- {
- fail("WebServiceException expected, got " + t);
- }
- }
-
- public void testDispatchWithFeatures() throws Exception
- {
- innerTestDispatch(new AddressingFeature(false, false));
- }
-
- private void assertEndpointReference(EndpointReference epr) throws Exception
- {
- assertEquals(W3CEndpointReference.class.getName(), epr.getClass().getName());
- Element endpointReference = DOMUtils.parse(epr.toString());
- assertEquals("EndpointReference", endpointReference.getNodeName());
- assertEquals("http://www.w3.org/2005/08/addressing", endpointReference.getAttribute("xmlns"));
- NodeList addresses = endpointReference.getElementsByTagName("Address");
- assertEquals(1, addresses.getLength());
- String eprAddress = addresses.item(0).getFirstChild().getNodeValue();
- eprAddress = eprAddress.replace("127.0.0.1", "localhost");
- assertEquals(TARGET_ENDPOINT_ADDRESS.replace("127.0.0.1", "localhost"), eprAddress);
- }
-
- private class MyEndpointReference extends EndpointReference
- {
- @Override
- public void writeTo(Result result)
- {
- throw new NotImplementedException();
- }
-
- }
-}
Added: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceTestCase.java (rev 0)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceTestCase.java 2010-02-02 15:18:21 UTC (rev 11528)
@@ -0,0 +1,173 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.endpointReference;
+
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.transform.Result;
+import javax.xml.transform.Source;
+import javax.xml.ws.BindingProvider;
+import javax.xml.ws.Dispatch;
+import javax.xml.ws.EndpointReference;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+import javax.xml.ws.Service.Mode;
+import javax.xml.ws.soap.AddressingFeature;
+import javax.xml.ws.wsaddressing.W3CEndpointReference;
+
+import junit.framework.Test;
+
+import org.jboss.util.NotImplementedException;
+import org.jboss.wsf.common.DOMUtils;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+import org.w3c.dom.Element;
+import org.w3c.dom.NodeList;
+
+/**
+ * Test EPR related methods
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @author ropalka(a)redhat.com
+ * @since 13-Jan-2009
+ */
+public class EndpointReferenceTestCase extends JBossWSTest
+{
+ public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-endpointReference";
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(EndpointReferenceTestCase.class, "jaxws-endpointReference.jar");
+ }
+
+ public void testClient() throws Exception
+ {
+ URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
+ QName serviceName = new QName("http://org.jboss.ws/endpointReference", "EndpointService");
+ Endpoint port = Service.create(wsdlURL, serviceName).getPort(Endpoint.class);
+
+ BindingProvider bp = (BindingProvider)port;
+ assertEndpointReference(bp.getEndpointReference());
+ assertEndpointReference(bp.getEndpointReference(W3CEndpointReference.class));
+ try
+ {
+ bp.getEndpointReference(MyEndpointReference.class);
+ fail("Exception expected");
+ }
+ catch (WebServiceException e)
+ {
+ //NOP: the provided EndpointReference is not supported by the implementation
+ }
+ catch (Throwable t)
+ {
+ fail("WebServiceException expected, got " + t);
+ }
+
+ port = bp.getEndpointReference().getPort(Endpoint.class);
+ assertNotNull(port);
+ String retObj = port.echo("Hello");
+ assertEquals("Hello", retObj);
+
+ port = bp.getEndpointReference(W3CEndpointReference.class).getPort(Endpoint.class);
+ assertNotNull(port);
+ retObj = port.echo("Hello");
+ assertEquals("Hello", retObj);
+ }
+
+ public void testDispatch() throws Exception
+ {
+ innerTestDispatch();
+ }
+
+ private void innerTestDispatch(WebServiceFeature... features) throws Exception
+ {
+ URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
+ QName serviceName = new QName("http://org.jboss.ws/endpointReference", "EndpointService");
+ Service service = Service.create(wsdlURL, serviceName);
+ Dispatch<Source> dispatch = null;
+ if (features != null && features.length > 0) //test both createDispatch methods
+ {
+ dispatch = service.createDispatch(new QName("http://org.jboss.ws/endpointReference", "EndpointPort"), Source.class, Mode.PAYLOAD, features);
+ }
+ else
+ {
+ dispatch = service.createDispatch(new QName("http://org.jboss.ws/endpointReference", "EndpointPort"), Source.class, Mode.PAYLOAD);
+ }
+
+ BindingProvider bp = (BindingProvider)dispatch;
+ assertEndpointReference(bp.getEndpointReference());
+ assertEndpointReference(bp.getEndpointReference(W3CEndpointReference.class));
+ try
+ {
+ bp.getEndpointReference(MyEndpointReference.class);
+ fail("WebServiceException expected");
+ }
+ catch (WebServiceException e)
+ {
+ //NOP: the provided EndpointReference is not supported by the implementation
+ }
+ catch (Throwable t)
+ {
+ fail("WebServiceException expected, got " + t);
+ }
+
+ Endpoint port = bp.getEndpointReference().getPort(Endpoint.class);
+ assertNotNull(port);
+ String retObj = port.echo("Hello");
+ assertEquals("Hello", retObj);
+
+ port = bp.getEndpointReference(W3CEndpointReference.class).getPort(Endpoint.class);
+ assertNotNull(port);
+ retObj = port.echo("Hello");
+ assertEquals("Hello", retObj);
+ }
+
+ public void testDispatchWithFeatures() throws Exception
+ {
+ innerTestDispatch(new AddressingFeature(false, false));
+ }
+
+ private void assertEndpointReference(EndpointReference epr) throws Exception
+ {
+ assertEquals(W3CEndpointReference.class.getName(), epr.getClass().getName());
+ Element endpointReference = DOMUtils.parse(epr.toString());
+ assertEquals("EndpointReference", endpointReference.getNodeName());
+ assertEquals("http://www.w3.org/2005/08/addressing", endpointReference.getAttribute("xmlns"));
+ NodeList addresses = endpointReference.getElementsByTagName("Address");
+ assertEquals(1, addresses.getLength());
+ String eprAddress = addresses.item(0).getFirstChild().getNodeValue();
+ eprAddress = eprAddress.replace("127.0.0.1", "localhost");
+ assertEquals(TARGET_ENDPOINT_ADDRESS.replace("127.0.0.1", "localhost"), eprAddress);
+ }
+
+ private class MyEndpointReference extends EndpointReference
+ {
+ @Override
+ public void writeTo(Result result)
+ {
+ throw new NotImplementedException();
+ }
+
+ }
+}
14 years, 10 months
JBossWS SVN: r11527 - in stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing: soap and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-02 08:31:34 -0500 (Tue, 02 Feb 2010)
New Revision: 11527
Removed:
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java
stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java
Log:
[JBWS-2756] removing obsolete and unused classes
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,41 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Documented
-(a)Retention(RetentionPolicy.RUNTIME)
-(a)Target(ElementType.METHOD)
-public @interface Action
-{
-
- String input() default "##default";
-
- String output() default "##default";
-
- String[] fault() default "##default";
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,57 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class ActionNotSupportedException extends AddressingException
-{
- private static final long serialVersionUID = -2281268200778671820L;
-
- static
- {
- fMessage = ac.getActionNotSupportedText();
- }
-
- private String action;
-
- protected ActionNotSupportedException()
- {
- super();
- }
-
- public ActionNotSupportedException(String action)
- {
- super(fMessage + ": " + action);
- this.action = action;
- }
-
- public String getAction()
- {
- return action;
- }
-
- public QName getSubcode()
- {
- return ac.getActioNotSupportedQName();
- }
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class DestinationUnreachableException extends AddressingException
-{
- private static final long serialVersionUID = 7420697131368408456L;
-
- static
- {
- fMessage = ac.getDestinationUnreachableText();
- }
-
- public DestinationUnreachableException()
- {
- }
-
- public DestinationUnreachableException(String problemIRI)
- {
- super(fMessage + ": " + problemIRI);
- }
-
- public QName getSubcode()
- {
- return ac.getDestinationUnreachableQName();
- }
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class EndpointUnavailableException extends AddressingException
-{
- private static final long serialVersionUID = 4098776568071868541L;
-
- static
- {
- fMessage = ac.getEndpointUnavailableText();
- }
-
- public EndpointUnavailableException()
- {
- }
-
- public EndpointUnavailableException(int retryAfter, String problemIRI)
- {
- super(fMessage + ": [retry=" + retryAfter + ",iri=" + problemIRI + "]");
- }
-
- public QName getSubcode()
- {
- return ac.getEndpointUnavailableQName();
- }
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Documented
-(a)Retention(RetentionPolicy.RUNTIME)
-(a)Target(ElementType.METHOD)
-public @interface FaultAction
-{
-
- Class className();
-
- String value() default "##default";
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class InvalidMapException extends AddressingException
-{
- private static final long serialVersionUID = 1760077070006214469L;
-
- static
- {
- fMessage = ac.getInvalidMapText();
- }
-
- protected InvalidMapException()
- {
- }
-
- public InvalidMapException(QName name)
- {
- super(fMessage + ": " + name);
- }
-
- public QName getSubcode()
- {
- return ac.getInvalidMapQName();
- }
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class MapRequiredException extends AddressingException
-{
- private static final long serialVersionUID = 7593796661805754938L;
-
- static
- {
- fMessage = ac.getMapRequiredText();
- }
-
- public MapRequiredException()
- {
- }
-
- public MapRequiredException(QName name)
- {
- super(fMessage + ": " + name);
- }
-
- public QName getSubcode()
- {
- return ac.getMapRequiredQName();
- }
-}
Deleted: stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java 2010-02-02 12:57:05 UTC (rev 11526)
+++ stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java 2010-02-02 13:31:34 UTC (rev 11527)
@@ -1,36 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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 javax.xml.ws.addressing.soap;
-
-import javax.xml.namespace.QName;
-import javax.xml.soap.SOAPElement;
-import javax.xml.ws.addressing.AddressingException;
-import javax.xml.ws.addressing.AddressingType;
-
-public interface SOAPAddressingElement extends AddressingType
-{
-
- public void read(SOAPElement element) throws AddressingException;
-
- public SOAPElement write(SOAPElement parent, QName name) throws AddressingException;
-
-}
14 years, 10 months
JBossWS SVN: r11526 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-02 07:57:05 -0500 (Tue, 02 Feb 2010)
New Revision: 11526
Modified:
stack/native/trunk/pom.xml
Log:
[JBAS-7685] upgrading streambuffer to version 1.0
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2010-02-02 07:43:46 UTC (rev 11525)
+++ stack/native/trunk/pom.xml 2010-02-02 12:57:05 UTC (rev 11526)
@@ -281,10 +281,6 @@
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
- <groupId>com.sun.xml.stream.buffer</groupId>
- <artifactId>streambuffer</artifactId>
- </exclusion>
- <exclusion>
<groupId>org.jvnet</groupId>
<artifactId>mimepull</artifactId>
</exclusion>
14 years, 10 months
JBossWS SVN: r11525 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-02 02:43:46 -0500 (Tue, 02 Feb 2010)
New Revision: 11525
Modified:
stack/native/trunk/pom.xml
Log:
[JBAS-7685] Removed hacky com.sun.xml.ws:jaxws-rt:pom.xml and com.sun.xml.ws:policy:pom.xml from our repository and provided original versions
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2010-02-01 08:41:31 UTC (rev 11524)
+++ stack/native/trunk/pom.xml 2010-02-02 07:43:46 UTC (rev 11525)
@@ -217,6 +217,28 @@
<groupId>com.sun.xml.ws</groupId>
<artifactId>policy</artifactId>
<version>${sun.policy.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.sun.xml.txw2</groupId>
+ <artifactId>txw2</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.sun.istack</groupId>
+ <artifactId>istack-commons-runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>woodstox</groupId>
+ <artifactId>wstx-asl</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
@@ -246,6 +268,30 @@
<groupId>com.sun.xml.stream</groupId>
<artifactId>sjsxp</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>javax.xml.stream</groupId>
+ <artifactId>stax-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.sun.xml.stream.buffer</groupId>
+ <artifactId>streambuffer</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.jvnet</groupId>
+ <artifactId>mimepull</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.glassfish.gmbal</groupId>
+ <artifactId>gmbal-api-only</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
14 years, 10 months
JBossWS SVN: r11524 - in stack/native: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-01 03:41:31 -0500 (Mon, 01 Feb 2010)
New Revision: 11524
Added:
stack/native/tags/jbossws-native-3.1.2.SP5/
Removed:
stack/native/branches/jbossws-native-3.1.2.SP5/
Log:
Tagging jbossws-native-3.1.2.SP5 for SOA 5
Copied: stack/native/tags/jbossws-native-3.1.2.SP5 (from rev 11523, stack/native/branches/jbossws-native-3.1.2.SP5)
14 years, 10 months
JBossWS SVN: r11523 - in stack/native/branches/jbossws-native-3.1.2.SP5: modules/client and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-01 03:39:07 -0500 (Mon, 01 Feb 2010)
New Revision: 11523
Modified:
stack/native/branches/jbossws-native-3.1.2.SP5/modules/client/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/core/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxrpc/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws-ext/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/management/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/resources/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/saaj/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/framework-tests/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/native-tests/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/pom.xml
stack/native/branches/jbossws-native-3.1.2.SP5/pom.xml
Log:
Moving to jbossws common 1.1.0.SP4 + preparing for tagging
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/client/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/client/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/client/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/core/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/core/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxrpc/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxrpc/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws-ext/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/jaxws-ext/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/management/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/management/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/management/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/resources/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/resources/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/resources/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/saaj/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/saaj/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/saaj/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/framework-tests/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/framework-tests/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/native-tests/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/native-tests/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/modules/testsuite/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.1.2.SP5/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5/pom.xml 2010-02-01 08:07:17 UTC (rev 11522)
+++ stack/native/branches/jbossws-native-3.1.2.SP5/pom.xml 2010-02-01 08:39:07 UTC (rev 11523)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.1.2.SP4</version>
+ <version>3.1.2.SP5</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <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>
+ <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 -->
@@ -47,7 +47,7 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.1.0.SP3</jbossws.common.version>
+ <jbossws.common.version>1.1.0.SP4</jbossws.common.version>
<jbossws.framework.version>3.1.2.SP5</jbossws.framework.version>
<jbossws.spi.version>1.1.2.SP2</jbossws.spi.version>
<!-- [JBWS-2505] -->
14 years, 10 months
JBossWS SVN: r11522 - in common: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-01 03:07:17 -0500 (Mon, 01 Feb 2010)
New Revision: 11522
Added:
common/tags/jbossws-common-1.1.0.SP4/
Removed:
common/branches/jbossws-common-1.1.0.SP4/
Log:
Tagging jbossws-common 1.1.0.SP4
Copied: common/tags/jbossws-common-1.1.0.SP4 (from rev 11521, common/branches/jbossws-common-1.1.0.SP4)
14 years, 10 months
JBossWS SVN: r11520 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-01 02:44:36 -0500 (Mon, 01 Feb 2010)
New Revision: 11520
Added:
stack/native/branches/jbossws-native-3.1.2.SP5/
Log:
Creating branch for jbws native 3.1.2.SP5 from SP4 tag
Copied: stack/native/branches/jbossws-native-3.1.2.SP5 (from rev 11519, stack/native/tags/jbossws-native-3.1.2.SP4)
14 years, 10 months