djencks 2005/06/26 13:39:52
Modified: modules/core/src/test/org/openejb/server/axis
WSContainerTest.java
Log:
wsdls are now getting path replaced, although in a somewhat questionable way
Revision Changes Path
1.8 +4 -2
openejb/modules/core/src/test/org/openejb/server/axis/WSContainerTest.java
Index: WSContainerTest.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/test/org/openejb/server/axis/WSContainerTest.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- WSContainerTest.java 8 May 2005 19:37:10 -0000 1.7
+++ WSContainerTest.java 26 Jun 2005 17:39:52 -0000 1.8
@@ -140,7 +140,9 @@
assertNotNull(port2);
SOAPAddress address = (SOAPAddress)
port2.getExtensibilityElements().get(0);
assertNotNull(address);
- assertEquals("http://localhost:" + port + "/services/Simple",
address.getLocationURI());
+ //TODO make sure we believe which of these is correct
+// assertEquals("http://localhost:" + port + "/services/Simple",
address.getLocationURI());
+ assertEquals("http://localhost:" + port + "/test/service",
address.getLocationURI());
} finally {
kernel.stopGBean(stack);