Author: midon
Date: Thu Oct 9 18:07:37 2008
New Revision: 703305
URL: http://svn.apache.org/viewvc?rev=703305&view=rev
Log:
ODE-384: use port 8888 for the test server
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/FailureInvokeTest.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/dummy-service.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml
Thu Oct 9 18:07:37 2008
@@ -108,7 +108,7 @@
<!-- ================================================= -->
<transportReceiver name="http"
class="org.apache.axis2.transport.http.SimpleHTTPServer">
- <parameter name="port" locked="false">8080</parameter>
+ <parameter name="port" locked="false">8888</parameter>
<!-- Here is the complete list of supported parameters (see example
settings further below):
port: the port to listen on (default 6060)
hostname: if non-null, url prefix used in reply-to endpoint
references (default null)
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java
Thu Oct 9 18:07:37 2008
@@ -22,7 +22,7 @@
try {
new Thread(new Killer(this)).start();
try {
- String response =
server.sendRequestFile("http://localhost:8080/processes/invokeFailureTest",
+ String response =
server.sendRequestFile("http://localhost:8888/processes/invokeFailureTest",
bundleName, "testRequest.soap");
System.out.println("=> " + response);
} catch (Exception e) {
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
Thu Oct 9 18:07:37 2008
@@ -139,9 +139,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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
Thu Oct 9 18:07:37 2008
@@ -15,7 +15,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("Something went wrong. Fortunately, it was meant to be."));
} finally {
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
Thu Oct 9 18:07:37 2008
@@ -50,7 +50,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");
System.out.println(response);
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
Thu Oct 9 18:07:37 2008
@@ -55,7 +55,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;
@@ -96,7 +96,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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestEndpointProperties/test-endpoint-properties.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/FailureInvokeTest.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/FailureInvokeTest.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/FailureInvokeTest.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/FailureInvokeTest.wsdl
Thu Oct 9 18:07:37 2008
@@ -55,7 +55,7 @@
</wsdl:binding>
<wsdl:service name="HeaderTestService">
<wsdl:port name="HeaderTestPort" binding="tns:HeaderTestSoapBinding">
- <soap:address
location="http://localhost:8080/ode/processes/invokeFailureTest"/>
+ <soap:address
location="http://localhost:8888/ode/processes/invokeFailureTest"/>
</wsdl:port>
</wsdl:service>
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/dummy-service.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/dummy-service.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/dummy-service.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestFailureInInvoke/dummy-service.wsdl
Thu Oct 9 18:07:37 2008
@@ -199,13 +199,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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBinding/http-binding-test.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_DELETE/http-binding-ext-DELETE.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_GET/http-binding-ext-GET.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_POST/http-binding-ext-POST.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestHttpBindingExt_PUT/http-binding-ext-PUT.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/1/TestRetire.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestInstanceRetire/2/TestRetire.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/HeaderTest.wsdl
Thu Oct 9 18:07:37 2008
@@ -55,7 +55,7 @@
</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>
Modified:
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestSoapHeader/dummy-service.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/HelloWorld2.wsdl
Thu Oct 9 18:07:37 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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestStructuredFault/dummy-service.wsdl
Thu Oct 9 18:07:37 2008
@@ -172,13 +172,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/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl?rev=703305&r1=703304&r2=703305&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/XSDReferences/BPMN/NewDiagram2-Pool0.wsdl
Thu Oct 9 18:07:37 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