Author: ay
Date: Wed Jan 30 22:16:28 2013
New Revision: 1440710
URL: http://svn.apache.org/viewvc?rev=1440710&view=rev
Log:
Merged revisions 1440708 via svn merge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1440708 | ay | 2013-01-30 23:14:45 +0100 (Wed, 30 Jan 2013) | 1 line
a minor fix for CXF-4794 test in cleaning up the second EP
........
Modified:
cxf/branches/2.7.x-fixes/ (props changed)
cxf/branches/2.7.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soap12/Server.java
Propchange: cxf/branches/2.7.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.7.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soap12/Server.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soap12/Server.java?rev=1440710&r1=1440709&r2=1440710&view=diff
==============================================================================
---
cxf/branches/2.7.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soap12/Server.java
(original)
+++
cxf/branches/2.7.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/soap12/Server.java
Wed Jan 30 22:16:28 2013
@@ -29,7 +29,8 @@ public class Server extends AbstractBusT
public static final String PORT = allocatePort(Server.class);
Endpoint ep;
-
+ Endpoint ep11;
+
@SuppressWarnings("deprecation")
protected void run() {
Object implementor = new GreeterImpl();
@@ -40,11 +41,12 @@ public class Server extends AbstractBusT
implementor = new org.apache.hello_world_soap_http.GreeterImpl();
address = "http://localhost:" + PORT + "/SoapContext/Soap11Port";
- ep = Endpoint.publish(address, implementor);
+ ep11 = Endpoint.publish(address, implementor);
}
public void tearDown() throws Exception {
ep.stop();
+ ep11.stop();
}
public static void main(String[] args) {