Quando se usam webparts e solutions customizadas no SharePoint 2007 é comum aparecer no Event Viewer vários Event IDs 5785, conforme abaixo:
Event Type: ErrorEvent Source: Office SharePoint ServerEvent Category: Publishing Cache Event ID: 5785Date: 31/10/2008Time: 11:05:54User: N/AComputer: SERVERXXXDescription:Unable to connect publishing custom string handler for output caching. IIS Instance Id is '2136283412', Url is 'http://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>