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:</p> -<pre><module name="logging" class="userguide.loggingmodule.LoggingModule "> - <inflow> +<pre><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></pre> <p>As you can see, there are four flows defined in the "module.xml"</p> <ol> - <li>inflow - Represents the handler chain that will run when a message is + <li>InFlow Represents the handler chain that will run when a message is coming in. </li> - <li><p style="margin-bottom: 0in">outflow - Represents the handler chain + <li><p style="margin-bottom: 0in">OutFlow Represents the handler chain that will run when the message is going out. </p> </li> - <li><p style="margin-bottom: 0in">Outfaultflow - Represents the handler + <li><p style="margin-bottom: 0in">OutFaultFlow - Represents the handler chain that will run when there is a fault, and the fault is going out.</p> </li> - <li><p>INfaultflow - Represents the handler chain that will run when there + <li><p>InFaultFlow - Represents the handler chain that will run when there is a fault, and the fault is coming in. </p> </li> </ol> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]