@mozila11 wrote:
Hi There,
I've an application which requires users to upload a document in .doc or .docx format and I have to convert it to PDF.
In my code - I'm calling an exe which will call pdfcreator.exe with command line arguments.
Code :
var psi = new ProcessStartInfo(System.Configuration.ConfigurationManager.AppSettings["pdfcreator"])
{
Arguments = "/PrintFile=\"" + path + key + ext + "\" /PrinterName=\"PDFCreator3\"",
UseShellExecute = false}; var p=Process.Start(psi); p.WaitForExit();
It runs very well on local muchine. But after deploying to server it stucks at some point.
I'm using Open Office as word application.
I'm running this under Administrator account.
Any ideas to help?
thnx
Posts: 1
Participants: 1