Event ID 5785 no SharePoint 2007

Quando se usam webparts e solutions customizadas no SharePoint 2007 é comum aparecer no Event Viewer vários Event IDs 5785, conforme abaixo:

Event Type: Error
Event Source: Office SharePoint Server
Event Category: Publishing Cache
Event ID: 5785
Date: 31/10/2008
Time: 11:05:54
User: N/A
Computer: SERVERXXX
Description:
Unable to connect publishing custom string handler for output caching.  IIS Instance Id is '2136283412', Url is 'https://sharepoint.hunecke.com.br/Template/HomeAgenda.aspx?Idioma=EN'.

Para resolver o problema basta incluir a linha <remove name="PublishingHttpModule"/> na sessão httpModules do arquivo web.config da aplicação customizada (não no web.config do SharePoint), como segue:

 <httpModules>
         <remove name="PublishingHttpModule"/>
</httpModules>