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/07/02 02:03:03 UTC

svn commit: r673234 - in /ode/trunk/axis2-war/src/test: java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java resources/TestHttpBinding/Arithmetics.wsdl resources/TestHttpBinding/deploy.xml

Author: midon
Date: Tue Jul  1 17:03:02 2008
New Revision: 673234

URL: http://svn.apache.org/viewvc?rev=673234&view=rev
Log:
make service name more specific

Modified:
    ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java
    ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl
    ode/trunk/axis2-war/src/test/resources/TestHttpBinding/deploy.xml

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java?rev=673234&r1=673233&r2=673234&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/ArithmeticsJettyWrapper.java Tue Jul  1 17:03:02 2008
@@ -53,7 +53,7 @@
         server = new Server(port);
         // Adding the buildr handler to control our server lifecycle
         ContextHandler context = new ContextHandler();
-        context.setContextPath("/HttpBindingTestService");
+        context.setContextPath("/HttpBindingTest/ArithmeticsService");
         Handler handler = new ArithmeticsServiceHandler();
         context.setHandler(handler);
 

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=673234&r1=673233&r2=673234&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBinding/Arithmetics.wsdl Tue Jul  1 17:03:02 2008
@@ -232,21 +232,21 @@
         (POST)      http://         ........                    /SalutLaTerre/addition
         (POST)      http://         ........                    /SalutLaTerre/sumOfIntegers
     -->
-    <wsdl:service name="HttpBindingTestService">
+    <wsdl:service name="ArithmeticsService">
         <wsdl:port name="OlaElMundo-GET_httpport" binding="tns:OlaElMundoHttpBinding-GET">
-            <http:address location="http://localhost:7070/HttpBindingTestService/OlaElMundo-GET"/>
+            <http:address location="http://localhost:7070/HttpBindingTest/ArithmeticsService/OlaElMundo-GET"/>
         </wsdl:port>
         <wsdl:port name="OlaElMundo-POST_httpport" binding="tns:OlaElMundoHttpBinding-POST">
-            <http:address location="http://localhost:7070/HttpBindingTestService/OlaElMundo-POST"/>
+            <http:address location="http://localhost:7070/HttpBindingTest/ArithmeticsService/OlaElMundo-POST"/>
         </wsdl:port>
         <wsdl:port name="OlaElMundo-PUT_httpport" binding="tns:OlaElMundoHttpBinding-PUT">
-            <http:address location="http://localhost:7070/HttpBindingTestService/OlaElMundo-PUT"/>
+            <http:address location="http://localhost:7070/HttpBindingTest/ArithmeticsService/OlaElMundo-PUT"/>
         </wsdl:port>
         <wsdl:port name="OlaElMundo-DELETE_httpport" binding="tns:OlaElMundoHttpBinding-DELETE">
-            <http:address location="http://localhost:7070/HttpBindingTestService/OlaElMundo-DELETE"/>
+            <http:address location="http://localhost:7070/HttpBindingTest/ArithmeticsService/OlaElMundo-DELETE"/>
         </wsdl:port>
         <wsdl:port name="SalutLaTerre_httpport" binding="tns:SalutLaTerreHttpBinding">
-            <http:address location="http://localhost:7070/HttpBindingTestService/SalutLaTerre"/>
+            <http:address location="http://localhost:7070/HttpBindingTest/ArithmeticsService/SalutLaTerre"/>
         </wsdl:port>
     </wsdl:service>
 </wsdl:definitions>

Modified: ode/trunk/axis2-war/src/test/resources/TestHttpBinding/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestHttpBinding/deploy.xml?rev=673234&r1=673233&r2=673234&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestHttpBinding/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestHttpBinding/deploy.xml Tue Jul  1 17:03:02 2008
@@ -28,19 +28,19 @@
 			<service name="wns:HelloService" port="HelloPort"/>
 		</provide>
         <invoke partnerLink="salutPartnerLink">
-            <service name="dns:HttpBindingTestService" port="SalutLaTerre_httpport"/>
+            <service name="dns:ArithmeticsService" port="SalutLaTerre_httpport"/>
         </invoke>
         <invoke partnerLink="olaGetPartnerLink">
-            <service name="dns:HttpBindingTestService" port="OlaElMundo-GET_httpport"/>
+            <service name="dns:ArithmeticsService" port="OlaElMundo-GET_httpport"/>
         </invoke>
         <invoke partnerLink="olaPostPartnerLink">
-            <service name="dns:HttpBindingTestService" port="OlaElMundo-POST_httpport"/>
+            <service name="dns:ArithmeticsService" port="OlaElMundo-POST_httpport"/>
         </invoke>
         <invoke partnerLink="olaPutPartnerLink">
-            <service name="dns:HttpBindingTestService" port="OlaElMundo-PUT_httpport"/>
+            <service name="dns:ArithmeticsService" port="OlaElMundo-PUT_httpport"/>
         </invoke>
         <invoke partnerLink="olaDeletePartnerLink">
-            <service name="dns:HttpBindingTestService" port="OlaElMundo-DELETE_httpport"/>
+            <service name="dns:ArithmeticsService" port="OlaElMundo-DELETE_httpport"/>
         </invoke>
     </process>
 </deploy>