Author: chatra Date: Mon Nov 6 22:23:04 2006 New Revision: 472001 URL: http://svn.apache.org/viewvc?view=rev&rev=472001 Log: reviewed and committing Jira AXIS2-1551. Thanks Evanthika
Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html?view=diff&rev=472001&r1=472000&r2=472001 ============================================================================== --- webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html (original) +++ webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html Mon Nov 6 22:23:04 2006 @@ -101,7 +101,7 @@ <p>The specifying order of phases in execution chain has to be done using phase order element and it will look like below:</p> -<pre><phaseOrder type="inflow"> +<pre><phaseOrder type="InFlow"> <phase name="TransportIn"/> . . @@ -113,7 +113,7 @@ hard coding work for the handler chain anywhere in Axis2 (at any Axis*). So all those configurations are also done in the phase order element. The complete configurations will look as follows: <source></p> -<pre><phaseOrder type="inflow"> +<pre><phaseOrder type="InFlow"> <!-- Global phases --> <phase name="Transport"> <handler name="RequestURIBasedDispatcher" @@ -148,7 +148,7 @@ <!-- After the Dispatch phase module author or service author can add any phase he wants --> <phase name="OperationInPhase"/> </phaseOrder> - <phaseOrder type="outflow"> + <phaseOrder type="OutFlow"> <!-- user can add his own phases to this area --> <phase name="OperationOutPhase"/> <!-- Global phases --> @@ -156,7 +156,7 @@ <phase name="MessageOut"/> <phase name="PolicyDetermination"/> </phaseOrder> - <phaseOrder type="INfaultflow"> + <phaseOrder type="InFaultFlow"> <phase name="PreDispatch"/> <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase"> <handler name="RequestURIBasedDispatcher" @@ -186,7 +186,7 @@ <!-- user can add his own phases to this area --> <phase name="OperationInFaultPhase"/> </phaseOrder> - <phaseOrder type="Outfaultflow"> + <phaseOrder type="OutFaultFlow"> <!-- user can add his own phases to this area --> <phase name="OperationOutFaultPhase"/> <phase name="PolicyDetermination"/> @@ -196,10 +196,10 @@ <p><strong>type:</strong> the attribute represents the type of the flow and which can only be one of the following:</p> <ul> - <li>inflow</li> - <li>outflow</li> - <li>INfaultflow</li> - <li>Outfaultflow</li> + <li>InFlow</li> + <li>OutFlow</li> + <li>InFaultFlow</li> + <li>OutFaultFlow</li> </ul> <p>In addition to that, the only child element is allowed inside "phaseOrder" @@ -213,8 +213,8 @@ <p>There are a number of things that one has to keep in mind when changing a phaseOrder:</p> -<p>For the phaseOrder types <strong>"inflow"</strong> and -<strong>"INfaultflow"</strong></p> +<p>For the phaseOrder types <strong>"InFlow"</strong> and +<strong>"InFaultFlow"</strong></p> <ul> <li>All the phases which are above the "Dispatch" phase including the "Dispatch" phase are known as "Global phases" and one can add any number @@ -223,8 +223,8 @@ phase are known as "Operation phases".</li> </ul> -<p>For the phaseOrder types <strong>"outflow"</strong> and -<strong>"Outfaultflow"</strong></p> +<p>For the phaseOrder types <strong>"OutFlow"</strong> and +<strong>"OutFaultFlow"</strong></p> <ul> <li>All the phases which are below the "MessageOut" phase, including the "MessageOut" phase are known as "Global phases", and you can add new @@ -363,24 +363,24 @@ <p>A very simple module.xml is shown below:</p> <pre><module class="org.apache.module.Module1Impl"> - <inflow> + <InFlow> . . - </inflow> - <outflow> + </InFlow> + <OutFlow> . . - </outflow> + </OutFlow> - <Outfaultflow> + <OutFaultFlow> . . - </Outfaultflow> + </OutFaultFlow> - <INfaultflow> + <InFaultFlow> . . - </INfaultflow> + </InFaultFlow> <operation name="creatSeq" mep="MEP_URI_IN_OUT"> <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/> @@ -406,10 +406,10 @@ handlers will be available in corresponding chains at the runtime when they are engaged .</p> <ul> - <li>inflow</li> - <li>outflow</li> - <li>INfaultflow</li> - <li>Outfaultflow</li> + <li>InFlow</li> + <li>OutFlow</li> + <li>InFaultFlow</li> + <li>OutFaultFlow</li> </ul> <p><b>operations: </b> If a module wants to add an operation when it is --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]