Author: charith
Date: Thu May 14 22:58:54 2009
New Revision: 35827
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=35827

Log:
due to the change in the axis2 branch


Modified:
   
branches/synapse/1.3-wso2v1/modules/core/src/main/java/org/apache/synapse/core/axis2/ProxyService.java

Modified: 
branches/synapse/1.3-wso2v1/modules/core/src/main/java/org/apache/synapse/core/axis2/ProxyService.java
URL: 
http://wso2.org/svn/browse/wso2/branches/synapse/1.3-wso2v1/modules/core/src/main/java/org/apache/synapse/core/axis2/ProxyService.java?rev=35827&r1=35826&r2=35827&view=diff
==============================================================================
--- 
branches/synapse/1.3-wso2v1/modules/core/src/main/java/org/apache/synapse/core/axis2/ProxyService.java
      (original)
+++ 
branches/synapse/1.3-wso2v1/modules/core/src/main/java/org/apache/synapse/core/axis2/ProxyService.java
      Thu May 14 22:58:54 2009
@@ -615,7 +615,7 @@
 
             AxisService as = 
axisConfig.getServiceForActivation(this.getName());
             as.setActive(true);
-            axisConfig.notifyObservers(AxisEvent.SERVICE_START, as);
+            axisConfig.notifyObservers(new AxisEvent(AxisEvent.SERVICE_START , 
as), as);
             this.setRunning(true);
             auditInfo("Started the proxy service : " + name);
         } else {
@@ -646,7 +646,7 @@
                 AxisService as = axisConfig.getService(this.getName());
                 if (as != null) {
                     as.setActive(false);
-                    axisConfig.notifyObservers(AxisEvent.SERVICE_STOP, as);
+                    axisConfig.notifyObservers(new 
AxisEvent(AxisEvent.SERVICE_STOP ,as), as);
                 }
                 this.setRunning(false);
                 auditInfo("Stopped the proxy service : " + name);

_______________________________________________
Esb-java-dev mailing list
[email protected]
https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev

Reply via email to