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 ...
I have a script that's gonna check a zipfile containing a number of matching PDF+textfiles. I want to unpack or somehow read the textfiles from the zipfile and just pick out some information from the textfile to see that the file version is correct.
I was looking at the tempnam function to find an equivalent to make an tempdir, but mayb...
I have a ASP.NET + some .NET web-services running on IIS 6 (win 2003 server). The issue is that IIS is generating a lot (!) of files in "c:\WINDOWS\Temp" directory. a lot of files means thousands of files, which get to more than 3G of size so far.
The files are generated by this command:
C:\WINDOWS\SysWOW64\inetsrv> "C:\WINDOWS\Micros...
I have some dynamically generated jsp content I'd like to (jstl) c:import into another jsp page. Currently I have the dynamically generated jsp written to a file in the servlet temp directory (javax.servlet.context.tempdir) but can't work out how I can import it since it is outside the servlet context.
Is there a way to import a jsp from...