Dear Wiki user, You have subscribed to a wiki page or wiki category on "Turbine Wiki" for change notification.
The "Turbine4/Turbine4.0M1/Migrate233" page has been changed by ThomasVandahl: http://wiki.apache.org/turbine/Turbine4/Turbine4.0M1/Migrate233?action=diff&rev1=10&rev2=11 Comment: Add pipeline configuration Start with the [[http://turbine.apache.org/turbine/turbine-4.0-M1/howto/migrate-from-2_3-howto.html|migration guide]] and report about your experiences here. - == Contents == <<TableOfContents(3)>> == Migrating Turbine Services to Fulcrum Components == @@ -491, +490 @@ </parser> }}} + == Further Modifications == + + === Add Pipeline Configuration === + + Turbine 4.0 comes with the feature to modify the processing sequence of modules during a request using the so-called ''pipeline''. This can be configured in the file `turbine-classic-pipeline.xml`. The file actually used can be modified in `TurbineResources.properties`. The default content of `turbine-classic-pipeline.xml` as shown below models the way Turbine 2.3.3 used to handle requests. Place this file into `WEB-INF/conf`. + + {{{#!xml + <?xml version="1.0" encoding="UTF-8"?> + <org.apache.turbine.pipeline.TurbinePipeline> + <valves> + <org.apache.turbine.pipeline.DetermineActionValve/> + <org.apache.turbine.pipeline.DetermineTargetValve/> + <org.apache.turbine.pipeline.DefaultSessionTimeoutValve/> + <org.apache.turbine.pipeline.DefaultLoginValve/> + <org.apache.turbine.pipeline.DefaultSessionValidationValve/> + <org.apache.turbine.pipeline.DefaultACLCreationValve/> + <org.apache.turbine.pipeline.ExecutePageValve/> + <org.apache.turbine.pipeline.CleanUpValve/> + <org.apache.turbine.pipeline.DetermineRedirectRequestedValve/> + </valves> + </org.apache.turbine.pipeline.TurbinePipeline> + }}} + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
