Author: asankaa Date: Thu Nov 27 23:16:23 2008 New Revision: 25168 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=25168
Log: Change the service path from 'soap' to 'services' Modified: branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSender.java branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSubscriber.java branches/synapse/1.2.wso2v1/repository/conf/axis2.xml branches/synapse/1.2.wso2v1/repository/conf/sample/resources/misc/server/axis2.xml Modified: branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSender.java URL: http://wso2.org/svn/browse/wso2/branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSender.java?rev=25168&r1=25167&r2=25168&view=diff ============================================================================== --- branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSender.java (original) +++ branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSender.java Thu Nov 27 23:16:23 2008 @@ -56,7 +56,7 @@ ServiceClient serviceClient; ConfigurationContext configContext = null; - String addUrl = getProperty("addurl", "http://localhost:8280/soap/eventing"); + String addUrl = getProperty("addurl", "http://localhost:8280/services/eventing"); String trpUrl = getProperty("trpurl", null); String prxUrl = getProperty("prxurl", null); String repo = getProperty("repository", "client_repo"); Modified: branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSubscriber.java URL: http://wso2.org/svn/browse/wso2/branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSubscriber.java?rev=25168&r1=25167&r2=25168&view=diff ============================================================================== --- branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSubscriber.java (original) +++ branches/synapse/1.2.wso2v1/modules/samples/src/main/java/samples/userguide/EventSubscriber.java Thu Nov 27 23:16:23 2008 @@ -55,12 +55,12 @@ ServiceClient serviceClient; ConfigurationContext configContext = null; - String addUrl = getProperty("addurl", "http://localhost:8280/soap/eventing"); + String addUrl = getProperty("addurl", "http://localhost:8280/services/eventing"); String trpUrl = getProperty("trpurl", null); String prxUrl = getProperty("prxurl", null); String repo = getProperty("repository", "client_repo"); String topic = getProperty("topic", "wso2/event/test"); - String address = getProperty("address", "http://localhost:9000/soap/SimpleStockQuoteService"); + String address = getProperty("address", "http://localhost:9000/services/SimpleStockQuoteService"); String mode = getProperty("mode", "subscribe"); String identifier = getProperty("identifier", "90000"); String expires = getProperty("expires", "2008-12-31T21:07:00.000-08:00"); Modified: branches/synapse/1.2.wso2v1/repository/conf/axis2.xml URL: http://wso2.org/svn/browse/wso2/branches/synapse/1.2.wso2v1/repository/conf/axis2.xml?rev=25168&r1=25167&r2=25168&view=diff ============================================================================== --- branches/synapse/1.2.wso2v1/repository/conf/axis2.xml (original) +++ branches/synapse/1.2.wso2v1/repository/conf/axis2.xml Thu Nov 27 23:16:23 2008 @@ -67,7 +67,7 @@ <!--Our HTTP endpoints can handle both REST and SOAP. Following parameters can be used to distinguiush those endpoints--> <!--In case of a servlet, if you change this you have to manually change the settings of your servlet container to map this --> <!--context path to proper Axis2 servlets--> - <parameter name="servicePath">soap</parameter> + <parameter name="servicePath">services</parameter> <parameter name="restPath">rest</parameter> <!-- Following parameter will completely disable REST handling in Axis2--> Modified: branches/synapse/1.2.wso2v1/repository/conf/sample/resources/misc/server/axis2.xml URL: http://wso2.org/svn/browse/wso2/branches/synapse/1.2.wso2v1/repository/conf/sample/resources/misc/server/axis2.xml?rev=25168&r1=25167&r2=25168&view=diff ============================================================================== --- branches/synapse/1.2.wso2v1/repository/conf/sample/resources/misc/server/axis2.xml (original) +++ branches/synapse/1.2.wso2v1/repository/conf/sample/resources/misc/server/axis2.xml Thu Nov 27 23:16:23 2008 @@ -67,7 +67,7 @@ <!--Our HTTP endpoints can handle both REST and SOAP. Following parameters can be used to distinguiush those endpoints--> <!--In case of a servlet, if you change this you have to manually change the settings of your servlet container to map this --> <!--context path to proper Axis2 servlets--> - <parameter name="servicePath">soap</parameter> + <parameter name="servicePath">services</parameter> <parameter name="restPath">rest</parameter> <!-- Following parameter will completely disable REST handling in Axis2--> _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
