You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2008/11/05 10:32:02 UTC

svn commit: r711542 - in /webservices/axis2/trunk/java/modules/mtompolicy-mar: pom.xml src/META-INF/module.xml

Author: nandana
Date: Wed Nov  5 01:32:01 2008
New Revision: 711542

URL: http://svn.apache.org/viewvc?rev=711542&view=rev
Log:
Adding a handler in the out flow

Modified:
    webservices/axis2/trunk/java/modules/mtompolicy-mar/pom.xml
    webservices/axis2/trunk/java/modules/mtompolicy-mar/src/META-INF/module.xml

Modified: webservices/axis2/trunk/java/modules/mtompolicy-mar/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/mtompolicy-mar/pom.xml?rev=711542&r1=711541&r2=711542&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/mtompolicy-mar/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/mtompolicy-mar/pom.xml Wed Nov  5 01:32:01 2008
@@ -28,7 +28,7 @@
         <version>SNAPSHOT</version>
         <relativePath>../parent/pom.xml</relativePath>
     </parent>
-    <artifactId>axis2-mtompolicy-mar</artifactId>
+    <artifactId>mtompolicy</artifactId>
     <name>Apache Axis2 - MTOM Policy module</name>
     <description>Axis2 : MTOM Policy module</description>
     <packaging>mar</packaging>

Modified: webservices/axis2/trunk/java/modules/mtompolicy-mar/src/META-INF/module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/mtompolicy-mar/src/META-INF/module.xml?rev=711542&r1=711541&r2=711542&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/mtompolicy-mar/src/META-INF/module.xml (original)
+++ webservices/axis2/trunk/java/modules/mtompolicy-mar/src/META-INF/module.xml Wed Nov  5 01:32:01 2008
@@ -1,7 +1,11 @@
 <module name="mtompolicy" class="org.apache.axis2.mtompolicy.MTOMPolicy">
     <Description>
-      fill in the description
+      This is the MTOM policy module. It is engaged when we have MTOM policy assertion.
     </Description>
     <supported-policy-namespaces namespaces="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization http://www.w3.org/2007/08/soap12-mtom-policy"/>
-</module>
-
+    <OutFlow>
+        <handler name="MTOMOutHandler" class="org.apache.axis2.mtompolicy.MTOMOutHandler">
+            <order phase="MessageOut"/>
+        </handler>
+    </OutFlow>    
+</module>
\ No newline at end of file