JBossWS SVN: r17880 - in stack/cxf/trunk/modules/testsuite: shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-08-20 11:18:34 -0400 (Tue, 20 Aug 2013)
New Revision: 17880
Added:
stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCaseForked.java
Removed:
stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
* [JBWS-3687] JBWS1178TestCase -> JBWS1178TestCaseForked
* slight optimization in maven-surefire-plugin execution configuration
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2013-08-20 15:09:50 UTC (rev 17879)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2013-08-20 15:18:34 UTC (rev 17880)
@@ -378,13 +378,8 @@
<forkMode>pertest</forkMode>
<skip>false</skip>
<includes>
- <include>**/jaxws/cxf/httpproxy/*TestCaseForked.java</include>
- <include>**/jaxws/cxf/spring/*TestCaseForked.java</include>
- <include>**/jaxws/samples/schemavalidation/*TestCaseForked.java</include>
- <include>**/jbws2150/**/*TestCaseForked.java</include>
- <include>**/jms*/**/*TestCaseForked.java</include>
- <include>**/smoke/tools/**/*TestForked.java</include>
- <include>**/smoke/tools/**/*TestCaseForked.java</include>
+ <include>**/*TestCaseForked.java</include>
+ <include>**/*TestForked.java</include>
</includes>
<systemProperties>
<property>
Deleted: stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java 2013-08-20 15:09:50 UTC (rev 17879)
+++ stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java 2013-08-20 15:18:34 UTC (rev 17880)
@@ -1,106 +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 org.jboss.test.ws.jaxws.jbws1178;
-
-import java.net.Inet6Address;
-import java.net.InetAddress;
-import java.net.URL;
-import java.util.Map;
-
-import javax.management.Attribute;
-import javax.management.ObjectName;
-import javax.xml.namespace.QName;
-import javax.xml.ws.BindingProvider;
-import javax.xml.ws.Service;
-
-import junit.extensions.TestSetup;
-import junit.framework.Test;
-
-import org.jboss.ws.common.ObjectNameFactory;
-import org.jboss.wsf.test.JBossWSTest;
-import org.jboss.wsf.test.JBossWSTestSetup;
-
-/**
- * [JBWS-1178] Multiple virtual host and soap:address problem
- * [JBWS-864] soap:address in wsdl ignores <url-pattern>
- *
- * @author Thomas.Diesler(a)jboss.com
- * @since 05-Oct-2006
- */
-public class JBWS1178TestCase extends JBossWSTest
-{
-
- public static Test suite()
- {
- TestSetup testSetup = new JBossWSTestSetup(JBWS1178TestCase.class, "jaxws-jbws1178.war")
- {
- private final ObjectName objectName = ObjectNameFactory.create("jboss.ws:service=ServerConfig");
- private String webServiceHost;
-
- public void setUp() throws Exception
- {
- // Setting the WebServiceHost to an empty string, causes the request host to be used.
- // This must be done before deploy time.
- webServiceHost = (String)getServer().getAttribute(objectName, "WebServiceHost");
- getServer().setAttribute(objectName, new Attribute("WebServiceHost", ""));
- super.setUp();
- }
-
- public void tearDown() throws Exception
- {
- super.tearDown();
- getServer().setAttribute(objectName, new Attribute("WebServiceHost", webServiceHost));
- }
- };
- return testSetup;
- }
-
-
- public void testHostAddress() throws Exception
- {
- InetAddress inetAddr = InetAddress.getByName(getServerHost());
- String hostAddress = inetAddr instanceof Inet6Address ? "[" + inetAddr.getHostAddress() + "]" : inetAddr.getHostAddress();
- URL wsdlURL = new URL("http://" + hostAddress + ":8080/jaxws-jbws1178/testpattern?wsdl");
-
- QName serviceName = new QName("http://org.jboss.ws/jbws1178", "EndpointService");
- Service service = Service.create(wsdlURL, serviceName);
- Endpoint port = service.getPort(Endpoint.class);
- Map<String, Object> reqCtx = ((BindingProvider)port).getRequestContext();
- URL epURL = new URL((String)reqCtx.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY));
-
- assertEquals(wsdlURL.getHost(), epURL.getHost());
- }
-
- public void testHostName() throws Exception
- {
- InetAddress inetAddr = InetAddress.getByName(getServerHost());
- URL wsdlURL = new URL("http://" + inetAddr.getHostName() + ":8080/jaxws-jbws1178/testpattern?wsdl");
-
- QName serviceName = new QName("http://org.jboss.ws/jbws1178", "EndpointService");
- Service service = Service.create(wsdlURL, serviceName);
- Endpoint port = service.getPort(Endpoint.class);
- Map<String, Object> reqCtx = ((BindingProvider)port).getRequestContext();
- URL epURL = new URL((String)reqCtx.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY));
-
- assertEquals(wsdlURL.getHost(), epURL.getHost());
- }
-}
Added: stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCaseForked.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCaseForked.java (rev 0)
+++ stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCaseForked.java 2013-08-20 15:18:34 UTC (rev 17880)
@@ -0,0 +1,106 @@
+/*
+ * 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 org.jboss.test.ws.jaxws.jbws1178;
+
+import java.net.Inet6Address;
+import java.net.InetAddress;
+import java.net.URL;
+import java.util.Map;
+
+import javax.management.Attribute;
+import javax.management.ObjectName;
+import javax.xml.namespace.QName;
+import javax.xml.ws.BindingProvider;
+import javax.xml.ws.Service;
+
+import junit.extensions.TestSetup;
+import junit.framework.Test;
+
+import org.jboss.ws.common.ObjectNameFactory;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * [JBWS-1178] Multiple virtual host and soap:address problem
+ * [JBWS-864] soap:address in wsdl ignores <url-pattern>
+ *
+ * @author Thomas.Diesler(a)jboss.com
+ * @since 05-Oct-2006
+ */
+public class JBWS1178TestCaseForked extends JBossWSTest
+{
+
+ public static Test suite()
+ {
+ TestSetup testSetup = new JBossWSTestSetup(JBWS1178TestCaseForked.class, "jaxws-jbws1178.war")
+ {
+ private final ObjectName objectName = ObjectNameFactory.create("jboss.ws:service=ServerConfig");
+ private String webServiceHost;
+
+ public void setUp() throws Exception
+ {
+ // Setting the WebServiceHost to an empty string, causes the request host to be used.
+ // This must be done before deploy time.
+ webServiceHost = (String)getServer().getAttribute(objectName, "WebServiceHost");
+ getServer().setAttribute(objectName, new Attribute("WebServiceHost", ""));
+ super.setUp();
+ }
+
+ public void tearDown() throws Exception
+ {
+ super.tearDown();
+ getServer().setAttribute(objectName, new Attribute("WebServiceHost", webServiceHost));
+ }
+ };
+ return testSetup;
+ }
+
+
+ public void testHostAddress() throws Exception
+ {
+ InetAddress inetAddr = InetAddress.getByName(getServerHost());
+ String hostAddress = inetAddr instanceof Inet6Address ? "[" + inetAddr.getHostAddress() + "]" : inetAddr.getHostAddress();
+ URL wsdlURL = new URL("http://" + hostAddress + ":8080/jaxws-jbws1178/testpattern?wsdl");
+
+ QName serviceName = new QName("http://org.jboss.ws/jbws1178", "EndpointService");
+ Service service = Service.create(wsdlURL, serviceName);
+ Endpoint port = service.getPort(Endpoint.class);
+ Map<String, Object> reqCtx = ((BindingProvider)port).getRequestContext();
+ URL epURL = new URL((String)reqCtx.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY));
+
+ assertEquals(wsdlURL.getHost(), epURL.getHost());
+ }
+
+ public void testHostName() throws Exception
+ {
+ InetAddress inetAddr = InetAddress.getByName(getServerHost());
+ URL wsdlURL = new URL("http://" + inetAddr.getHostName() + ":8080/jaxws-jbws1178/testpattern?wsdl");
+
+ QName serviceName = new QName("http://org.jboss.ws/jbws1178", "EndpointService");
+ Service service = Service.create(wsdlURL, serviceName);
+ Endpoint port = service.getPort(Endpoint.class);
+ Map<String, Object> reqCtx = ((BindingProvider)port).getRequestContext();
+ URL epURL = new URL((String)reqCtx.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY));
+
+ assertEquals(wsdlURL.getHost(), epURL.getHost());
+ }
+}
11 years, 4 months
JBossWS SVN: r17879 - stack/cxf/trunk/modules/addons/transports/udp.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-08-20 11:09:50 -0400 (Tue, 20 Aug 2013)
New Revision: 17879
Modified:
stack/cxf/trunk/modules/addons/transports/udp/pom.xml
Log:
Adding test scope asm dependency, require by latest snapshot of cxf 2.7.7
Modified: stack/cxf/trunk/modules/addons/transports/udp/pom.xml
===================================================================
--- stack/cxf/trunk/modules/addons/transports/udp/pom.xml 2013-08-19 17:29:32 UTC (rev 17878)
+++ stack/cxf/trunk/modules/addons/transports/udp/pom.xml 2013-08-20 15:09:50 UTC (rev 17879)
@@ -26,6 +26,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
11 years, 4 months
JBossWS SVN: r17878 - in stack/cxf/trunk/modules: testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3223 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-08-19 13:29:32 -0400 (Mon, 19 Aug 2013)
New Revision: 17878
Modified:
stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/serviceref/AbstractServiceObjectFactoryJAXWS.java
stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3223/Client.java
Log:
[JBWS-3685] Some changes on permissions...
Modified: stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/serviceref/AbstractServiceObjectFactoryJAXWS.java
===================================================================
--- stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/serviceref/AbstractServiceObjectFactoryJAXWS.java 2013-08-19 16:08:17 UTC (rev 17877)
+++ stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/serviceref/AbstractServiceObjectFactoryJAXWS.java 2013-08-19 17:29:32 UTC (rev 17878)
@@ -176,7 +176,7 @@
Object port = null;
if (serviceClass != Service.class)
{
- for (Method method : serviceClass.getDeclaredMethods())
+ for (Method method : getDeclaredMethods(serviceClass))
{
String methodName = method.getName();
Class<?> retType = method.getReturnType();
@@ -201,6 +201,14 @@
return retVal;
}
+
+ private static Method[] getDeclaredMethods(final Class<?> cls) {
+ return AccessController.doPrivileged(new PrivilegedAction<Method[]>() {
+ public Method[] run() {
+ return cls.getDeclaredMethods();
+ }
+ });
+ }
private Service instantiateService(final UnifiedServiceRefMetaData serviceRefMD, final Class<?> serviceClass)
throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException
Modified: stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3223/Client.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3223/Client.java 2013-08-19 16:08:17 UTC (rev 17877)
+++ stack/cxf/trunk/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3223/Client.java 2013-08-19 17:29:32 UTC (rev 17878)
@@ -109,7 +109,7 @@
}
}
- static ClassLoader getContextClassLoader()
+ private static ClassLoader getContextClassLoader()
{
SecurityManager sm = System.getSecurityManager();
if (sm == null)
@@ -127,7 +127,7 @@
}
}
- static void setContextClassLoader(final ClassLoader classLoader)
+ private static void setContextClassLoader(final ClassLoader classLoader)
{
if (System.getSecurityManager() == null)
{
11 years, 4 months
JBossWS SVN: r17877 - in hudson/trunk/hudson-home: users and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2013-08-19 12:08:17 -0400 (Mon, 19 Aug 2013)
New Revision: 17877
Removed:
hudson/trunk/hudson-home/users/ropalka/
Modified:
hudson/trunk/hudson-home/hudson.tasks.Mailer.xml
Log:
disabling spam for Opalka
Modified: hudson/trunk/hudson-home/hudson.tasks.Mailer.xml
===================================================================
--- hudson/trunk/hudson-home/hudson.tasks.Mailer.xml 2013-08-19 14:37:40 UTC (rev 17876)
+++ hudson/trunk/hudson-home/hudson.tasks.Mailer.xml 2013-08-19 16:08:17 UTC (rev 17877)
@@ -2,6 +2,6 @@
<hudson.tasks.Mailer-DescriptorImpl>
<defaultSuffix></defaultSuffix>
<hudsonUrl>http://@hudson.host@:@hudson.http.port@/hudson/</hudsonUrl>
- <adminAddress>richard.opalka(a)jboss.com</adminAddress>
+ <adminAddress>asoldano(a)redhat.com</adminAddress>
<smtpHost>@hudson.smtp.host@</smtpHost>
</hudson.tasks.Mailer-DescriptorImpl>
11 years, 4 months
JBossWS SVN: r17876 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-08-19 10:37:40 -0400 (Mon, 19 Aug 2013)
New Revision: 17876
Modified:
stack/cxf/trunk/pom.xml
Log:
WFLY moved to Beta1
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2013-08-15 09:48:24 UTC (rev 17875)
+++ stack/cxf/trunk/pom.xml 2013-08-19 14:37:40 UTC (rev 17876)
@@ -70,7 +70,7 @@
<jboss712.version>7.1.2.Final</jboss712.version>
<jboss713.version>7.1.3.Final</jboss713.version>
<jboss720.version>7.2.0.Final</jboss720.version>
- <wildfly800.version>8.0.0.Alpha4-SNAPSHOT</wildfly800.version>
+ <wildfly800.version>8.0.0.Beta1-SNAPSHOT</wildfly800.version>
<ejb.api.version>1.0.1.Final</ejb.api.version>
<cxf.version>2.7.7-SNAPSHOT</cxf.version>
<cxf.asm.version>3.3.1</cxf.asm.version>
11 years, 4 months
JBossWS SVN: r17875 - container/jboss72/branches/jbossws-jboss720/server-integration/src/main/java/org/jboss/as/webservices/service.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-08-15 05:48:24 -0400 (Thu, 15 Aug 2013)
New Revision: 17875
Modified:
container/jboss72/branches/jbossws-jboss720/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
Log:
[JBWS-3677]:Fix ASIL 720
Modified: container/jboss72/branches/jbossws-jboss720/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
===================================================================
--- container/jboss72/branches/jbossws-jboss720/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:47:39 UTC (rev 17874)
+++ container/jboss72/branches/jbossws-jboss720/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:48:24 UTC (rev 17875)
@@ -67,6 +67,7 @@
public void start(final StartContext context) throws StartException {
try {
serverConfig.create();
+ WSServices.saveContainerRegistry(context.getController().getServiceContainer());
} catch (final Exception e) {
ROOT_LOGGER.configServiceCreationFailed();
throw new StartException(e);
@@ -89,7 +90,6 @@
builder.addListener(listener);
builder.setInitialMode(Mode.ACTIVE);
ServiceController<?> sc = builder.install();
- WSServices.saveContainerRegistry(sc.getServiceContainer());
return sc;
}
11 years, 4 months
JBossWS SVN: r17874 - container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-08-15 05:47:39 -0400 (Thu, 15 Aug 2013)
New Revision: 17874
Modified:
container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
Log:
[JBWS-3677]:Fix ASIL 713
Modified: container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
===================================================================
--- container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:46:03 UTC (rev 17873)
+++ container/jboss71/branches/jbossws-jboss713/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:47:39 UTC (rev 17874)
@@ -67,6 +67,7 @@
public void start(final StartContext context) throws StartException {
try {
serverConfig.create();
+ WSServices.saveContainerRegistry(context.getController().getServiceContainer());
} catch (final Exception e) {
ROOT_LOGGER.configServiceCreationFailed();
throw new StartException(e);
@@ -89,7 +90,6 @@
builder.addListener(listener);
builder.setInitialMode(Mode.ACTIVE);
ServiceController<?> sc = builder.install();
- WSServices.saveContainerRegistry(sc.getServiceContainer());
return sc;
}
11 years, 4 months
JBossWS SVN: r17873 - container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-08-15 05:46:03 -0400 (Thu, 15 Aug 2013)
New Revision: 17873
Modified:
container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
Log:
[JBWS-3677]:Fix ASIL 712
Modified: container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
===================================================================
--- container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:44:58 UTC (rev 17872)
+++ container/jboss71/branches/jbossws-jboss712/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:46:03 UTC (rev 17873)
@@ -67,6 +67,7 @@
public void start(final StartContext context) throws StartException {
try {
serverConfig.create();
+ WSServices.saveContainerRegistry(context.getController().getServiceContainer());
} catch (final Exception e) {
ROOT_LOGGER.configServiceCreationFailed();
throw new StartException(e);
@@ -89,7 +90,6 @@
builder.addListener(listener);
builder.setInitialMode(Mode.ACTIVE);
ServiceController<?> sc = builder.install();
- WSServices.saveContainerRegistry(sc.getServiceContainer());
return sc;
}
11 years, 4 months
JBossWS SVN: r17872 - container/jboss71/branches/jbossws-jboss711/server-integration/src/main/java/org/jboss/as/webservices/service.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-08-15 05:44:58 -0400 (Thu, 15 Aug 2013)
New Revision: 17872
Modified:
container/jboss71/branches/jbossws-jboss711/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
Log:
[JBWS-3677]:Fix ASIL 711
Modified: container/jboss71/branches/jbossws-jboss711/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java
===================================================================
--- container/jboss71/branches/jbossws-jboss711/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 07:27:00 UTC (rev 17871)
+++ container/jboss71/branches/jbossws-jboss711/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java 2013-08-15 09:44:58 UTC (rev 17872)
@@ -67,6 +67,7 @@
public void start(final StartContext context) throws StartException {
try {
serverConfig.create();
+ WSServices.saveContainerRegistry(context.getController().getServiceContainer());
} catch (final Exception e) {
ROOT_LOGGER.configServiceCreationFailed();
throw new StartException(e);
@@ -89,7 +90,6 @@
builder.addListener(listener);
builder.setInitialMode(Mode.ACTIVE);
ServiceController<?> sc = builder.install();
- WSServices.saveContainerRegistry(sc.getServiceContainer());
return sc;
}
11 years, 4 months
JBossWS SVN: r17871 - hudson/trunk.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2013-08-15 03:27:00 -0400 (Thu, 15 Aug 2013)
New Revision: 17871
Modified:
hudson/trunk/ant.properties.example
Log:
Upgrade to wildfly-8.0.0.Beta1-SNAPSHOT
Modified: hudson/trunk/ant.properties.example
===================================================================
--- hudson/trunk/ant.properties.example 2013-08-15 06:33:57 UTC (rev 17870)
+++ hudson/trunk/ant.properties.example 2013-08-15 07:27:00 UTC (rev 17871)
@@ -33,7 +33,7 @@
hudson.jboss720.rev=7.2.0.Final-prerelease1
hudson.jboss800.url=https://github.com/wildfly/wildfly
-hudson.jboss800.build=wildfly-8.0.0.Alpha4-SNAPSHOT
+hudson.jboss800.build=wildfly-8.0.0.Beta1-SNAPSHOT
hudson.jboss800.rev=master
hudson.mail.recipients=
11 years, 4 months