Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 95033 invoked from network); 13 Jun 2007 21:08:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Jun 2007 21:08:57 -0000 Received: (qmail 43104 invoked by uid 500); 13 Jun 2007 21:08:59 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 42967 invoked by uid 500); 13 Jun 2007 21:08:59 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 42956 invoked by uid 500); 13 Jun 2007 21:08:59 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 42953 invoked by uid 99); 13 Jun 2007 21:08:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Jun 2007 14:08:59 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Jun 2007 14:08:55 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 33B6F1A981F; Wed, 13 Jun 2007 14:08:35 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r547033 - /webservices/axis2/trunk/java/xdocs/@axis2_version_dir@/modules.html Date: Wed, 13 Jun 2007 21:08:34 -0000 To: axis2-cvs@ws.apache.org From: chinthaka@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070613210835.33B6F1A981F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chinthaka Date: Wed Jun 13 14:08:34 2007 New Revision: 547033 URL: http://svn.apache.org/viewvc?view=rev&rev=547033 Log: Fixing the spelling issues mentioned in AXIS2-2727. Modified: webservices/axis2/trunk/java/xdocs/@axis2_version_dir@/modules.html Modified: webservices/axis2/trunk/java/xdocs/@axis2_version_dir@/modules.html URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/xdocs/%40axis2_version_dir%40/modules.html?view=diff&rev=547033&r1=547032&r2=547033 ============================================================================== --- webservices/axis2/trunk/java/xdocs/@axis2_version_dir@/modules.html (original) +++ webservices/axis2/trunk/java/xdocs/@axis2_version_dir@/modules.html Wed Jun 13 14:08:34 2007 @@ -145,43 +145,43 @@ (in this example it is the "LoggingModule" class and various handlers that will run in different phases). The "module.xml" for the logging module will be as follows:

-
<module name="logging" class="userguide.loggingmodule.LoggingModule ">
-   <inflow>
+
<module name="logging" class="userguide.loggingmodule.LoggingModule">
+   <InFlow>
         <handler name="InFlowLogHandler" class="userguide.loggingmodule.LogHandler">
         <order phase="loggingPhase" />
         </handler>
-   </inflow>
+   </InFlow>
 
-   <outflow>
+   <OutFlow>
         <handler name="OutFlowLogHandler" class="userguide.loggingmodule.LogHandler">
         <order phase="loggingPhase"/>
         </handler>
-   </outflow>
+   </OutFlow>
 
-   <Outfaultflow>
+   <OutFaultFlow>
         <handler name="FaultOutFlowLogHandler" class="userguide.loggingmodule.LogHandler">
         <order phase="loggingPhase"/>
         </handler>
-   </Outfaultflow>
+   </OutFaultFlow>
 
-   <INfaultflow>
+   <InFaultFlow>
         <handler name="FaultInFlowLogHandler" class="userguide.loggingmodule.LogHandler">
         <order phase="loggingPhase"/>
         </handler>
-   </INfaultflow>
+   </InFaultFlow>
 </module>

As you can see, there are four flows defined in the "module.xml"

    -
  1. inflow - Represents the handler chain that will run when a message is +
  2. InFlow Represents the handler chain that will run when a message is coming in.
  3. -
  4. outflow - Represents the handler chain +

  5. OutFlow Represents the handler chain that will run when the message is going out.

  6. -
  7. Outfaultflow - Represents the handler +

  8. OutFaultFlow - Represents the handler chain that will run when there is a fault, and the fault is going out.

  9. -
  10. INfaultflow - Represents the handler chain that will run when there +

  11. InFaultFlow - Represents the handler chain that will run when there is a fault, and the fault is coming in.

--------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org