Author: asoldano
Date: 2014-10-02 03:13:40 -0400 (Thu, 02 Oct 2014)
New Revision: 18964
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3805/JBWS3805TestCase.java
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3805] Removing exclusions and adding source header
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3805/JBWS3805TestCase.java
===================================================================
---
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3805/JBWS3805TestCase.java 2014-10-01
15:49:12 UTC (rev 18963)
+++
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3805/JBWS3805TestCase.java 2014-10-02
07:13:40 UTC (rev 18964)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2014, 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.cxf.jbws3805;
import java.io.BufferedReader;
@@ -16,10 +37,12 @@
import org.jboss.wsf.test.JBossWSTestHelper.BaseDeployment;
import org.jboss.wsf.test.JBossWSTestSetup;
+/**
+ * [JBWS-3805] Allow overriding soap:address rewrite options in jboss-webservices.xml
+ *
+ */
public class JBWS3805TestCase extends JBossWSTest
{
- private static String publishURL = "http://" + getServerHost() +
":8080/jaxws-cxf-jbws3805/HelloService";
-
public static BaseDeployment<?>[] createDeployments()
{
List<BaseDeployment<?>> list = new
LinkedList<BaseDeployment<?>>();
@@ -41,7 +64,7 @@
public void testWsdlSoapAddress() throws Exception
{
- URL wsdlURL = new URL(publishURL + "?wsdl");
+ URL wsdlURL = new URL("http://" + getServerHost() +
":8080/jaxws-cxf-jbws3805/HelloService?wsdl");
HttpURLConnection connection = (HttpURLConnection)wsdlURL.openConnection();
try
{
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2014-10-01 15:49:12 UTC (rev 18963)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2014-10-02 07:13:40 UTC (rev 18964)
@@ -689,9 +689,6 @@
<!-- # [JBWS-3620] Authentication failures w/ Undertow -->
<exclude>org/jboss/test/ws/jaxws/cxf/httpauth/HelloDigestTestCase*</exclude>
- <!-- # [JBWS-3805]:Allow overriding soap:address rewrite options in
jboss-webservices.xml;Not supposed to support in WFLY8 -->
-
<exclude>org/jboss/test/ws/jaxws/cxf/jbws3805/*TestCase*</exclude>
-
<!-- Manually setup KDC before run this test-->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/kerberos/*TestCase*</exclude>
</excludes>
@@ -773,9 +770,6 @@
<!-- Manually setup KDC before run this test-->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/kerberos/*TestCase*</exclude>
-
- <!-- # [JBWS-3805]:Allow overriding soap:address rewrite options in
jboss-webservices.xml;Not supposed to support in WFLY8 -->
-
<exclude>org/jboss/test/ws/jaxws/cxf/jbws3805/*TestCase*</exclude>
</excludes>
</configuration>
</plugin>