[jboss-svn-commits] JBossWS SVN: r690 - trunk/src/test/java/org/jboss/test/ws/eventing
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Aug 4 09:58:55 EDT 2006
Author: thomas.diesler at jboss.com
Date: 2006-08-04 09:58:52 -0400 (Fri, 04 Aug 2006)
New Revision: 690
Modified:
trunk/src/test/java/org/jboss/test/ws/eventing/DIIClientTestCase.java
Log:
explicitly use jaxrpc-mapping
Modified: trunk/src/test/java/org/jboss/test/ws/eventing/DIIClientTestCase.java
===================================================================
--- trunk/src/test/java/org/jboss/test/ws/eventing/DIIClientTestCase.java 2006-08-04 13:53:34 UTC (rev 689)
+++ trunk/src/test/java/org/jboss/test/ws/eventing/DIIClientTestCase.java 2006-08-04 13:58:52 UTC (rev 690)
@@ -107,12 +107,9 @@
File mappingFile = new File("resources/eventing/WEB-INF/jaxrpc-mapping.xml");
assertTrue("jaxrpc-mapping.xml found", mappingFile.exists());
- URL mappingURL = mappingFile.toURL();
-
// construct service and setup handlers
ServiceFactoryImpl serviceFactory = (ServiceFactoryImpl)ServiceFactory.newInstance();
- //ServiceExt service = (ServiceExt)serviceFactory.createService(new URL(wsdlLocation), SERVICE_NAME, mappingURL);
- ServiceExt service = (ServiceExt)serviceFactory.createService(new URL(wsdlLocation), SERVICE_NAME);
+ ServiceExt service = (ServiceExt)serviceFactory.createService(new URL(wsdlLocation), SERVICE_NAME, mappingFile.toURL());
setupHandlerRegistry(service);
return service;
More information about the jboss-svn-commits
mailing list