[Ds-java-dev] svn commit r18922 - in trunk/solutions/data-services/java/modules/distribution: . conf

sameera at wso2.com sameera at wso2.com
Mon Jul 7 14:06:40 PDT 2008


Author: sameera
Date: Mon Jul  7 14:06:40 2008
New Revision: 18922
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=18922

Log:
use the statistics component to display number service level requests and reponses.

include the sevice level caching.



Modified:
   trunk/solutions/data-services/java/modules/distribution/bin.xml
   trunk/solutions/data-services/java/modules/distribution/conf/axis2.xml
   trunk/solutions/data-services/java/modules/distribution/conf/config.properties
   trunk/solutions/data-services/java/modules/distribution/pom.xml

Modified: trunk/solutions/data-services/java/modules/distribution/bin.xml
URL: http://wso2.org/svn/browse/wso2/trunk/solutions/data-services/java/modules/distribution/bin.xml?rev=18922&r1=18921&r2=18922&view=diff
==============================================================================
--- trunk/solutions/data-services/java/modules/distribution/bin.xml	(original)
+++ trunk/solutions/data-services/java/modules/distribution/bin.xml	Mon Jul  7 14:06:40 2008
@@ -41,17 +41,19 @@
                 <include>org.wso2.carbon:org.wso2.carbon.secmgt.ui:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.security:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.security.ui:jar</include>
-                <include>org.wso2.carbon:org.wso2.carbon.logging.core:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.logging.service:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.logging.admin.ui:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.logging.view.ui:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.logging.ext:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.throttle:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.throttle.ui:jar</include>
+                <include>org.wso2.carbon:org.wso2.carbon.caching:jar</include>
+                <include>org.wso2.carbon:org.wso2.carbon.caching.ui:jar</include>
                 <include>org.wso2.carbon:org.wso2.tracer:jar</include>
                 <include>org.wso2.carbon:org.wso2.tracer.ui:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.service.mgt:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.service.mgt.ui:jar</include>
+                <include>org.wso2.carbon:org.wso2.carbon.statistics:jar</include>                
                 <include>org.wso2.carbon:org.wso2.carbon.tryit:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.wsdlconverter:jar</include>
                 <include>org.wso2.carbon:org.wso2.carbon.xslt:jar</include>

Modified: trunk/solutions/data-services/java/modules/distribution/conf/axis2.xml
URL: http://wso2.org/svn/browse/wso2/trunk/solutions/data-services/java/modules/distribution/conf/axis2.xml?rev=18922&r1=18921&r2=18922&view=diff
==============================================================================
--- trunk/solutions/data-services/java/modules/distribution/conf/axis2.xml	(original)
+++ trunk/solutions/data-services/java/modules/distribution/conf/axis2.xml	Mon Jul  7 14:06:40 2008
@@ -20,6 +20,7 @@
     <!-- Globally engaged modules -->
     <!-- ================================================= -->
     <module ref="addressing"/>
+    <module ref="wso2statistics"/> <!-- TODO what if the statistics service is not available -->
 
     <!-- ================================================= -->
     <!-- Parameters -->

Modified: trunk/solutions/data-services/java/modules/distribution/conf/config.properties
URL: http://wso2.org/svn/browse/wso2/trunk/solutions/data-services/java/modules/distribution/conf/config.properties?rev=18922&r1=18921&r2=18922&view=diff
==============================================================================
--- trunk/solutions/data-services/java/modules/distribution/conf/config.properties	(original)
+++ trunk/solutions/data-services/java/modules/distribution/conf/config.properties	Mon Jul  7 14:06:40 2008
@@ -46,7 +46,6 @@
   org.wso2.carbon.secmgt.ui_SNAPSHOT at 49:start, \
   org.wso2.carbon.security_SNAPSHOT at 50:start, \
   org.wso2.carbon.security.ui_SNAPSHOT at 51:start, \
-  org.wso2.carbon.logging.core_SNAPSHOT at 52:start, \
   org.wso2.carbon.logging.service_SNAPSHOT at 53:start, \
   org.wso2.carbon.logging.admin.ui_SNAPSHOT at 54:start, \
   org.wso2.carbon.logging.view.ui_SNAPSHOT at 55:start, \
@@ -60,6 +59,9 @@
   org.wso2.carbon.wsdlconverter_SNAPSHOT at 63:start, \
   org.wso2.ws.dataservice_SNAPSHOT.jar at 64:start, \
   org.wso2.solutions.ds.ui_SNAPSHOT.jar at 65:start, \
+  org.wso2.carbon.statistics_SNAPSHOT at 66:start, \
+  org.wso2.carbon.caching_SNAPSHOT at 67:start, \
+  org.wso2.carbon.caching.ui_SNAPSHOT at 68:start, \
   org.wso2.carbon.core_SNAPSHOT at 70:start, \
   org.wso2.carbon.component_SNAPSHOT at 71:start
 

Modified: trunk/solutions/data-services/java/modules/distribution/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/solutions/data-services/java/modules/distribution/pom.xml?rev=18922&r1=18921&r2=18922&view=diff
==============================================================================
--- trunk/solutions/data-services/java/modules/distribution/pom.xml	(original)
+++ trunk/solutions/data-services/java/modules/distribution/pom.xml	Mon Jul  7 14:06:40 2008
@@ -136,6 +136,24 @@
 
         <dependency>
             <groupId>org.wso2.carbon</groupId>
+            <artifactId>org.wso2.carbon.caching</artifactId>
+            <version>SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.wso2.carbon</groupId>
+            <artifactId>org.wso2.carbon.caching.ui</artifactId>
+            <version>SNAPSHOT</version>
+        </dependency>
+
+         <dependency>
+            <groupId>org.wso2.carbon</groupId>
+            <artifactId>org.wso2.carbon.statistics</artifactId>
+            <version>SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.tryit</artifactId>
             <version>SNAPSHOT</version>
         </dependency>



More information about the Ds-java-dev mailing list