0
kicks
Sitecore PublishItemProcessor and no current HttpContext
Hi there,
As some of you know Sitecore 6 has a new pipeline called the publishItem pipeline. A pipeline for publishing Sitecore items.
Christopher Wojciech already talked about it here.
As already descibed in the web.config all you have to do is the following:
<publishItem help=“Processors should derive from Sitecore.Publishing.Pipelines.PublishItem.PublishItemProcessor“>
First: Configure an entry in the web.config:
3 <sitecore>
4 <pipelines>
5 <publishItem>
6 <processor type="Hockblogs.Pipelines.MyOwnCoolPublisher, Hockblogs.Pipelines"/>
7 </publishItem>
Next: implement the custom processer. This is what you'll do when implementing it: