You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mi...@apache.org on 2008/10/10 22:36:52 UTC

svn commit: r703572 - in /ode/trunk/axis2-war/src/test: java/org/apache/ode/axis2/ java/org/apache/ode/axis2/httpbinding/ java/org/apache/ode/axis2/management/ resources/TestAttributeNamespaces/ resources/TestDynPartner/ resources/TestEndpointPropertie...

Author: midon
Date: Fri Oct 10 13:36:51 2008
New Revision: 703572

URL: http://svn.apache.org/viewvc?rev=703572&view=rev
Log:
ODE-384: use 8888 as the http port for tests

Modified:
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenario.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenarioV1.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
    ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
    ode/trunk/axis2-war/src/test/resources/TestDynPartner/DynPartnerMain.bpel
    ode/trunk/axis2-war/src/test/resources/TestDynPartner/Main.wsdl
    ode/trunk/axis2-war/src/test/resources/TestDynPartner/Responder.wsdl
    ode/trunk/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHelloWorld2/HelloWorld2.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
    ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
    ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
    ode/trunk/axis2-war/src/test/resources/TestMagicSession/Main.wsdl
    ode/trunk/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
    ode/trunk/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
    ode/trunk/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
    ode/trunk/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
    ode/trunk/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java Fri Oct 10 13:36:51 2008
@@ -5,6 +5,7 @@
 import org.apache.axis2.description.WSDL11ToAxisServiceBuilder;
 import org.apache.axis2.description.AxisService;
 import org.apache.axis2.description.AxisOperation;
+import org.apache.axis2.description.Parameter;
 import org.apache.axis2.context.ConfigurationContextFactory;
 import org.apache.axis2.engine.AxisServer;
 import org.apache.axis2.engine.MessageReceiver;
@@ -33,8 +34,10 @@
 @Ignore
 public abstract class Axis2TestBase extends TestCase {
 
-    protected ODEAxis2Server server;
+    private static final int DEFAULT_TEST_PORT = 8888;
     
+    protected ODEAxis2Server server;
+
     // Provide standard constructors to accommodate creation of test suites
     public Axis2TestBase(String name) {
     	super(name);
@@ -75,6 +78,8 @@
             String repoLocation = webappPath + "/WEB-INF";
             configContext = ConfigurationContextFactory
                     .createConfigurationContextFromFileSystem(repoLocation, confLocation);
+            // do not use 8080 for tests
+            configContext.getAxisConfiguration().getTransportIn("http").addParameter(new Parameter("port", ""+DEFAULT_TEST_PORT));
         }
 
         protected void start() throws AxisFault {

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java Fri Oct 10 13:36:51 2008
@@ -54,7 +54,7 @@
             if (server.isDeployed(bundleName)) server.undeployProcess(bundleName);
             server.deployProcess(bundleName);
             try {
-                String response = server.sendRequestFile("http://localhost:8080/processes/helloWorld",
+                String response = server.sendRequestFile("http://localhost:8888/processes/helloWorld",
                         bundleName, "testRequest.soap");
                 assertTrue(response.contains("helloResponse") && response.contains("OK!!!"));
             } finally {

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java Fri Oct 10 13:36:51 2008
@@ -131,9 +131,9 @@
     private class ArithmeticsServiceHandler extends AbstractHandler {
         /*
         8 urls to handle:
-        (GET)       http://localhost:8080/HttpBindingTestService/OlaElMundo-GET/plus/(left):(right)
+        (GET)       http://localhost:8888/HttpBindingTestService/OlaElMundo-GET/plus/(left):(right)
         (GET)       http://         ........                    /OlaElMundo-GET/minus?left=&right=
-        (DELETE)    http://localhost:8080/HttpBindingTestService/OlaElMundo-DELETE/plus/(left):(right)
+        (DELETE)    http://localhost:8888/HttpBindingTestService/OlaElMundo-DELETE/plus/(left):(right)
         (DELETE)    http://         ........                    /OlaElMundo-DELETE/minus?left=&right=
         (POST)      http://         ........                    /OlaElMundo-POST/plus
         (POST)      http://         ........                    /OlaElMundo-POST/minus

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java Fri Oct 10 13:36:51 2008
@@ -12,7 +12,7 @@
         if (server.isDeployed(bundleName)) server.undeployProcess(bundleName);
         server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/processes/attrNSWorld",
+            String response = server.sendRequestFile("http://localhost:8888/processes/attrNSWorld",
                     bundleName, "testRequest.soap");
             Element domResponse = DOMUtils.stringToDOM(response);
             Element out = DOMUtils.getFirstChildElement(DOMUtils.getFirstChildElement(DOMUtils.getFirstChildElement(domResponse)));

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java Fri Oct 10 13:36:51 2008
@@ -18,7 +18,7 @@
         if (!server.isDeployed(bundleName)) server.deployProcess(bundleName);
 
         try {
-            String response = server.sendRequestFile("http://localhost:8080/processes/helloWorld",
+            String response = server.sendRequestFile("http://localhost:8888/processes/helloWorld",
                     bundleName, "testRequest.soap");
 
             assertTrue(response.indexOf("Something went wrong. Fortunately, it was meant to be.") >= 0);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java Fri Oct 10 13:36:51 2008
@@ -58,7 +58,7 @@
 
         if (!server.isDeployed("TestSoapHeader")) server.deployProcess("TestSoapHeader");
 
-        String response = server.sendRequestFile("http://localhost:8080/processes/headerTest",
+        String response = server.sendRequestFile("http://localhost:8888/processes/headerTest",
                 "TestSoapHeader", "testRequest.soap");
  
         Element rootElemt = DOMUtils.stringToDOM(response);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenario.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenario.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenario.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenario.java Fri Oct 10 13:36:51 2008
@@ -8,7 +8,7 @@
         String bundleName = "TestHelloWorld2";
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/helloWorld",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/helloWorld",
                     bundleName, "testRequest.soap");
 
             assertTrue(response.indexOf("Hello World") > 0);
@@ -22,7 +22,7 @@
         String bundleName = "TestDynPartner";
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/DynMainService",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/DynMainService",
                     bundleName, "testRequest.soap");
 
             assertTrue(response.indexOf("OK") > 0);
@@ -37,7 +37,7 @@
         String bundleName = "TestMagicSession";
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/MSMainExecuteService",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/MSMainExecuteService",
                     bundleName, "testRequest.soap");
 
             System.out.println("->" + response);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenarioV1.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenarioV1.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenarioV1.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/TestSimpleScenarioV1.java Fri Oct 10 13:36:51 2008
@@ -9,7 +9,7 @@
         BpelCompilerFactory.forceVersion = 1;
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/helloWorld",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/helloWorld",
                     bundleName, "testRequest.soap");
 
             assertTrue(response.indexOf("Hello World") > 0);
@@ -24,7 +24,7 @@
         BpelCompilerFactory.forceVersion = 1;
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/DynMainService",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/DynMainService",
                     bundleName, "testRequest.soap");
 
             assertTrue(response.indexOf("OK") > 0);
@@ -40,7 +40,7 @@
         BpelCompilerFactory.forceVersion = 1;
         if(!server._ode.getProcessStore().getPackages().contains(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/ode/processes/MSMainExecuteService",
+            String response = server.sendRequestFile("http://localhost:8888/ode/processes/MSMainExecuteService",
                     bundleName, "testRequest.soap");
 
             System.out.println("->" + response);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java Fri Oct 10 13:36:51 2008
@@ -57,7 +57,7 @@
         // deploy the required service
         if (!server.isDeployed(bundleName)) server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/processes/helloWorld",
+            String response = server.sendRequestFile("http://localhost:8888/processes/helloWorld",
                     bundleName, "testRequest.soap");
             if (log.isDebugEnabled()) log.debug(response);
             int valueInSoapRequest = 100;
@@ -98,7 +98,7 @@
         // then deploy the required service
         server.deployProcess(bundleName);
         try {
-            String response = server.sendRequestFile("http://localhost:8080/processes/helloWorld", bundleName, "testRequest.soap");
+            String response = server.sendRequestFile("http://localhost:8888/processes/helloWorld", bundleName, "testRequest.soap");
             System.out.println("Test Response Received: "+response);
             if (log.isDebugEnabled()) log.debug("Test Response Received: "+response);
             assertTrue("Test failed. Response is:"+response, response.indexOf("What a success!") >= 0);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java Fri Oct 10 13:36:51 2008
@@ -211,11 +211,11 @@
     }
 
     private OMElement sendToPM(OMElement msg) throws AxisFault {
-        return _client.send(msg, "http://localhost:8080/processes/ProcessManagement");
+        return _client.send(msg, "http://localhost:8888/processes/ProcessManagement");
     }
 
     private OMElement sendToDeployment(OMElement msg) throws AxisFault {
-        return _client.send(msg, "http://localhost:8080/processes/DeploymentService");
+        return _client.send(msg, "http://localhost:8888/processes/DeploymentService");
     }
 
 }
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java Fri Oct 10 13:36:51 2008
@@ -191,7 +191,7 @@
         _deployedName = res.getFirstChildWithName(new QName(null, "name")).getText();
 
         // Execute
-        URL svcUrl = new URL("http://localhost:8080/processes/DynMainService");
+        URL svcUrl = new URL("http://localhost:8888/processes/DynMainService");
         InputStream sis = this.getClass().getClassLoader().getResourceAsStream("testDynPartnerRequest.soap");
         System.out.println(HttpSoapSender.doSend(svcUrl, sis, null, 0, null, null, null));
         // Just making sure the instance starts
@@ -218,15 +218,15 @@
     }
 
     private OMElement sendToPM(OMElement msg) throws AxisFault {
-        return _client.send(msg, "http://localhost:8080/processes/ProcessManagement");
+        return _client.send(msg, "http://localhost:8888/processes/ProcessManagement");
     }
 
     private OMElement sendToIM(OMElement msg) throws AxisFault {
-        return _client.send(msg, "http://localhost:8080/processes/InstanceManagement");
+        return _client.send(msg, "http://localhost:8888/processes/InstanceManagement");
     }
 
     private OMElement sendToDeployment(OMElement msg) throws AxisFault {
-        return _client.send(msg, "http://localhost:8080/processes/DeploymentService");
+        return _client.send(msg, "http://localhost:8888/processes/DeploymentService");
     }
 
     public static void main(String[] args) {

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java Fri Oct 10 13:36:51 2008
@@ -18,13 +18,13 @@
         
         QName deployedQName = server.deployProcess(bundleName + "/1").iterator().next();
 
-        server.sendRequestFile("http://localhost:8080/processes/testretire",
+        server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest1.soap");
 
         server.getODEServer().getProcessManagement().setRetired(deployedQName, true);
         server.deployProcess(bundleName + "/2");
         
-        String response = server.sendRequestFile("http://localhost:8080/processes/testretire",
+        String response = server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest2.soap");
 
         System.out.println("###############################################");

Modified: ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl Fri Oct 10 13:36:51 2008
@@ -94,7 +94,7 @@
    
 	<wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-			<soap:address location="http://localhost:8080/ode/processes/attrNSWorld"/>
+			<soap:address location="http://localhost:8888/ode/processes/attrNSWorld"/>
 		</wsdl:port>
 	</wsdl:service>   
 	

Modified: ode/trunk/axis2-war/src/test/resources/TestDynPartner/DynPartnerMain.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestDynPartner/DynPartnerMain.bpel?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestDynPartner/DynPartnerMain.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestDynPartner/DynPartnerMain.bpel Fri Oct 10 13:36:51 2008
@@ -89,7 +89,7 @@
     <assign>
       <copy>
         <from>
-          <literal>http://localhost:8080/ode/processes/DynResponderService</literal>
+          <literal>http://localhost:8888/ode/processes/DynResponderService</literal>
         </from>
         <to partnerLink="responderPartnerLink"/>
       </copy>
@@ -97,7 +97,7 @@
         <from>
           <literal>
             <sref:service-ref>
-              <soap:address location="http://localhost:8080/ode/processes/DynResponderService"/>
+              <soap:address location="http://localhost:8888/ode/processes/DynResponderService"/>
             </sref:service-ref>
           </literal>
         </from>

Modified: ode/trunk/axis2-war/src/test/resources/TestDynPartner/Main.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestDynPartner/Main.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestDynPartner/Main.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestDynPartner/Main.wsdl Fri Oct 10 13:36:51 2008
@@ -63,7 +63,7 @@
 
   <wsdl:service name="DynMainService">
     <wsdl:port name="DynMainPort" binding="tns:DynMainBinding">
-      <soap:address location="http://localhost:8080/ode/processes/DynMainService"/>
+      <soap:address location="http://localhost:8888/ode/processes/DynMainService"/>
     </wsdl:port>
   </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestDynPartner/Responder.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestDynPartner/Responder.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestDynPartner/Responder.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestDynPartner/Responder.wsdl Fri Oct 10 13:36:51 2008
@@ -95,7 +95,7 @@
 
   <wsdl:service name="DynResponderService">
     <wsdl:port name="DynResponderPort" binding="tns:DynResponderBinding">
-      <soap:address location="http://localhost:8080/ode/processes/DynResponderService"/>
+      <soap:address location="http://localhost:8888/ode/processes/DynResponderService"/>
     </wsdl:port>
   </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestHelloWorld2/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHelloWorld2/HelloWorld2.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHelloWorld2/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHelloWorld2/HelloWorld2.wsdl Fri Oct 10 13:36:51 2008
@@ -56,7 +56,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+     		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
     

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl Fri Oct 10 13:36:51 2008
@@ -221,9 +221,9 @@
 
     <!--
         8 urls to handle:
-        (GET)       http://localhost:8080/HttpBindingTestService/OlaElMundo-GET/plus/(left):(right)
+        (GET)       http://localhost:8888/HttpBindingTestService/OlaElMundo-GET/plus/(left):(right)
         (GET)       http://         ........                    /OlaElMundo-GET/minus?left=&right=
-        (DELETE)    http://localhost:8080/HttpBindingTestService/OlaElMundo-DELETE/plus/(left):(right)
+        (DELETE)    http://localhost:8888/HttpBindingTestService/OlaElMundo-DELETE/plus/(left):(right)
         (DELETE)    http://         ........                    /OlaElMundo-DELETE/minus?left=&right=
         (POST)      http://         ........                    /OlaElMundo-POST/plus
         (POST)      http://         ........                    /OlaElMundo-POST/minus

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+     		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
     

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl Fri Oct 10 13:36:51 2008
@@ -60,7 +60,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl Fri Oct 10 13:36:51 2008
@@ -59,7 +59,7 @@
     </wsdl:binding>
     <wsdl:service name="TestRetireService">
 		<wsdl:port name="TestRetirePort" binding="tns:TestRetireSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/testretire"/>
+     		<soap:address location="http://localhost:8888/ode/processes/testretire"/>
 		</wsdl:port>
     </wsdl:service>
     

Modified: ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl Fri Oct 10 13:36:51 2008
@@ -59,7 +59,7 @@
     </wsdl:binding>
     <wsdl:service name="TestRetireService">
 		<wsdl:port name="TestRetirePort" binding="tns:TestRetireSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/testretire"/>
+     		<soap:address location="http://localhost:8888/ode/processes/testretire"/>
 		</wsdl:port>
     </wsdl:service>
     

Modified: ode/trunk/axis2-war/src/test/resources/TestMagicSession/Main.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestMagicSession/Main.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestMagicSession/Main.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestMagicSession/Main.wsdl Fri Oct 10 13:36:51 2008
@@ -160,21 +160,21 @@
     <!-- This service should be used to start the example. -->
     <wsdl:service name="MSMainExecuteService">
         <wsdl:port name="MSExecutePort" binding="tns:MSExecuteBinding">
-            <soap:address location="http://localhost:8080/ode/processes/MSMainExecuteService"/>
+            <soap:address location="http://localhost:8888/ode/processes/MSMainExecuteService"/>
         </wsdl:port>
     </wsdl:service>
 
     <!-- This service is internal, only used by the responder. -->
     <wsdl:service name="MSMainService">
         <wsdl:port name="MSMainPort" binding="tns:MSMainBinding">
-            <soap:address location="http://localhost:8080/ode/processes/MSMainService"/>
+            <soap:address location="http://localhost:8888/ode/processes/MSMainService"/>
         </wsdl:port>
     </wsdl:service>
 
     <!-- Service responding to the main service requests. -->
     <wsdl:service name="MSResponderService">
         <wsdl:port name="MSResponderPort" binding="tns:MSResponderBinding">
-            <soap:address location="http://localhost:8080/ode/processes/MSResponderService"/>
+            <soap:address location="http://localhost:8888/ode/processes/MSResponderService"/>
         </wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl Fri Oct 10 13:36:51 2008
@@ -74,12 +74,12 @@
     </wsdl:binding>
     <wsdl:service name="HeaderTestService">
         <wsdl:port name="HeaderTestPort" binding="tns:HeaderTestSoapBinding">
-            <soap:address location="http://localhost:8080/ode/processes/headerTest"/>
+            <soap:address location="http://localhost:8888/ode/processes/headerTest"/>
         </wsdl:port>
     </wsdl:service>
     <wsdl:service name="HeaderTestFacticeService">
         <wsdl:port name="HeaderTestFacticePort" binding="tns:HeaderTestFacticeSoapBinding">
-            <soap:address location="http://localhost:8080/ode/processes/facticeHeaderTest"/>
+            <soap:address location="http://localhost:8888/ode/processes/facticeHeaderTest"/>
         </wsdl:port>
     </wsdl:service>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl Fri Oct 10 13:36:51 2008
@@ -148,13 +148,13 @@
    </wsdl:binding>
    <wsdl:service name="DummyService">
       <wsdl:port name="DummyServiceSOAP11port_http" binding="ns1:DummyServiceSOAP11Binding">
-         <soap:address location="http://localhost:8080/processes/DummyService"/>
+         <soap:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
       <wsdl:port name="DummyServiceSOAP12port_http" binding="ns1:DummyServiceSOAP12Binding">
-         <soap12:address location="http://localhost:8080/processes/DummyService"/>
+         <soap12:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
       <wsdl:port name="DummyServiceHttpport" binding="ns1:DummyServiceHttpBinding">
-         <http:address location="http://localhost:8080/processes/DummyService"/>
+         <http:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
    </wsdl:service>
 </wsdl:definitions>
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl Fri Oct 10 13:36:51 2008
@@ -59,7 +59,7 @@
     </wsdl:binding>
     <wsdl:service name="HelloService">
 		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>
+     		<soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
 		</wsdl:port>
     </wsdl:service>
     

Modified: ode/trunk/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl Fri Oct 10 13:36:51 2008
@@ -148,13 +148,13 @@
    </wsdl:binding>
    <wsdl:service name="DummyService">
       <wsdl:port name="DummyServiceSOAP11port_http" binding="ns1:DummyServiceSOAP11Binding">
-         <soap:address location="http://localhost:8080/processes/DummyService"/>
+         <soap:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
       <wsdl:port name="DummyServiceSOAP12port_http" binding="ns1:DummyServiceSOAP12Binding">
-         <soap12:address location="http://localhost:8080/processes/DummyService"/>
+         <soap12:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
       <wsdl:port name="DummyServiceHttpport" binding="ns1:DummyServiceHttpBinding">
-         <http:address location="http://localhost:8080/processes/DummyService"/>
+         <http:address location="http://localhost:8888/processes/DummyService"/>
       </wsdl:port>
    </wsdl:service>
 </wsdl:definitions>
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl?rev=703572&r1=703571&r2=703572&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl Fri Oct 10 13:36:51 2008
@@ -34,7 +34,7 @@
     </wsdl:binding>
     <wsdl:service name="CanonicServiceForPooldo">
         <wsdl:port name="canonicPort" binding="this:CanonicBindingForPooldo">
-            <soap:address location="http://localhost:8080/ode/processes/testXSDko/BPMN/NewDiagram2/Pool0/Pooldo"/>
+            <soap:address location="http://localhost:8888/ode/processes/testXSDko/BPMN/NewDiagram2/Pool0/Pooldo"/>
         </wsdl:port>
     </wsdl:service>
 </wsdl:definitions>
\ No newline at end of file