I have a .NET web app that uses CR 2008 for reports. The server it's deployed on is saddled with McAfee, and we want to tell CR to use a temp directory other than the Windows temp dir.
Google found me the following registry key:
SOFTWARE\Business Objects\Suite 12.0\Report Application Server\InprocServer\TempDir.
Adding this key does result in CR creating a bunch of temp files in the directory I specified. However, at the end of the report run I get an "Operation not yet implemented" exception.
I'm trying to return a PDF to the browser via ExportToHttpRequest(), which works just fine if I don't change the In-process server's tempdir.
Has anyone run into this before? I've already given the local ASPNET account full control of the new tempdir.
Thanks.