hughesj 2002/06/24 02:02:07 Modified: java/test/wsdl WSDLTest.java Log: Fixed to use java/test/wsdl as location Revision Changes Path 1.3 +3 -5 xml-axis-wsif/java/test/wsdl/WSDLTest.java Index: WSDLTest.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/test/wsdl/WSDLTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- WSDLTest.java 11 Jun 2002 15:09:23 -0000 1.2 +++ WSDLTest.java 24 Jun 2002 09:02:07 -0000 1.3 @@ -80,6 +80,7 @@ * of a wsdl document including testing reading extension * attributes on Parts. * @author Owen Burroughs + * @author Jeremy Hughes <[EMAIL PROTECTED]> */ public class WSDLTest extends TestCase { private final static String DEF_FACTORY_PROPERTY_NAME = @@ -132,15 +133,12 @@ public void testReadMissingDefaultXMLNamepsaceWSDL() { debug("--- Test WSDL with missing default XML namespace is good"); Definition d = - readWSDL(null, TestUtilities.getWsdlPath("testcases") + "WSDLTestNested2.wsdl"); + readWSDL(null, TestUtilities.getWsdlPath("java\\test\\wsdl") + "WSDLTestNested2.wsdl"); assertNotNull("Definition is null after reading WSDLTestNested2.wsdl", d); } - + private static Definition readWSDL(URL contextURL, String wsdlLoc) { try { - //WSIFServiceImpl.addExtensionRegistry(new JavaExtensionRegistry()); - //WSIFServiceImpl.addExtensionRegistry(new FormatExtensionRegistry()); - //WSIFServiceImpl.addExtensionRegistry(new EJBExtensionRegistry()); Properties props = System.getProperties(); String oldPropValue = props.getProperty(DEF_FACTORY_PROPERTY_NAME);