Skip to content

Instantly share code, notes, and snippets.

@Wesley-Lomax
Last active August 29, 2015 14:22
Show Gist options
  • Save Wesley-Lomax/89a79cf3c2d28db43a3e to your computer and use it in GitHub Desktop.
Save Wesley-Lomax/89a79cf3c2d28db43a3e to your computer and use it in GitHub Desktop.
Sitecore patch include Pipeline processors
<?xml version="1.0"?>
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<httpRequestBegin>
<processor type="FullyQualifiedName, AssemblyName" patch:after="*[@type='Sitecore.Pipelines.HttpRequest.ItemResolver, Sitecore.Kernel']" />
<processor type="Sitecore.Pipelines.HttpRequest.ExecuteRequest, Sitecore.Kernel">
<patch:attribute name="type">FullyQualifiedName, AssemblyName</patch:attribute>
</processor>
</httpRequestBegin>
</pipelines>
</sitecore>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment