Convert Word-Documents to PDF on an ASP.NET Server
Introduction This PDFConverter converts Microsoft Word documents ( *.doc ) into PDF-files on a Webserver. There is a simple Webform, where you can upload your Word-Document, which will be converted and sent back as a PDF-File. Prerequisites Microsoft Word 2007 2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS A User, who has the rights to execute Word, must be logged in on the Server The PDFconverter.exe must be running (part of this project) Background There are a lot of people trying to do this Word => PDF conversion using Com Interop directly from their ASP.NET code. As Microsoft reports , Word or any other Office products are not recommended to be automated on a server. The Office products are optimized for running as client applications using a Desktop for interaction. This is why, if you want to use an Office-product in any kind on a server, there must be a User logged in. But then, there is the next problem: Using COM Interop directly from ASP.NE...