[jbossws-commits] JBossWS SVN: r3664 - branches/jbossws-2.0/testsuite/src/java/org/jboss/test/ws/jaxws/samples/eardeployment.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Jun 20 09:31:46 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-06-20 09:31:46 -0400 (Wed, 20 Jun 2007)
New Revision: 3664

Modified:
   branches/jbossws-2.0/testsuite/src/java/org/jboss/test/ws/jaxws/samples/eardeployment/EarTestCase.java
Log:
javadoc

Modified: branches/jbossws-2.0/testsuite/src/java/org/jboss/test/ws/jaxws/samples/eardeployment/EarTestCase.java
===================================================================
--- branches/jbossws-2.0/testsuite/src/java/org/jboss/test/ws/jaxws/samples/eardeployment/EarTestCase.java	2007-06-20 12:49:49 UTC (rev 3663)
+++ branches/jbossws-2.0/testsuite/src/java/org/jboss/test/ws/jaxws/samples/eardeployment/EarTestCase.java	2007-06-20 13:31:46 UTC (rev 3664)
@@ -38,6 +38,8 @@
 
 /**
  * Test ear deployment
+ * 
+ * [JBWS-1616] Verify correct bahaviour of @WebService.wsdlLocation
  *
  * @author Thomas.Diesler at jboss.org
  * @since 08-Dec-2006
@@ -57,18 +59,18 @@
       Service service = Service.create(new URL(soapAddress + "?wsdl"), serviceName);
       TestEndpoint port = service.getPort(TestEndpoint.class);
 
-		if(!isIntegrationSunRI())
-		{
-      // [JBWS-1616] Verify correct bahaviour of @WebService.wsdlLocation
-      Definition wsdl = getWSDLDefinition(soapAddress + "?wsdl");
-      String nsURI = wsdl.getNamespace("jbws1616");
-      assertEquals("http://jira.jboss.org/jira/browse/JBWS-1616", nsURI);
-		}
-		else
-		{
-			System.out.println("FIXME [JBWS-1616]: Verify correct bahaviour of @WebService.wsdlLocation");	
-		}
-      
+      if (!isIntegrationSunRI())
+      {
+         // [JBWS-1616] Verify correct bahaviour of @WebService.wsdlLocation
+         Definition wsdl = getWSDLDefinition(soapAddress + "?wsdl");
+         String nsURI = wsdl.getNamespace("jbws1616");
+         assertEquals("http://jira.jboss.org/jira/browse/JBWS-1616", nsURI);
+      }
+      else
+      {
+         System.out.println("FIXME [JBWS-1616]: Verify correct bahaviour of @WebService.wsdlLocation");
+      }
+
       // [JBWS-1655] Add support for endpoint address rewriting
       BindingProvider bp = (BindingProvider)port;
       bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress);
@@ -89,7 +91,7 @@
       Definition wsdl = getWSDLDefinition(soapAddress + "?wsdl");
       String nsURI = wsdl.getNamespace("jbws1616");
       assertEquals("http://jira.jboss.org/jira/browse/JBWS-1616", nsURI);
-      
+
       // [JBWS-1655] Add support for endpoint address rewriting
       BindingProvider bp = (BindingProvider)port;
       bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress);




More information about the jbossws-commits mailing list