vote up 0 vote down star

I'm attempting to create a PDF file from an HTML file. After looking around a little I've found: wkhtmltopdf to be perfect. I need to call this .exe from the ASP.NET server. I've attempted:

    Process p = new Process();
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.FileName = HttpContext.Current.Server.MapPath("wkhtmltopdf.exe");
    p.StartInfo.Arguments = "TestPDF.htm TestPDF.pdf";
    p.Start();
    p.WaitForExit();

With no success of any files being created on the server. Can anyone give me a pointer in the right direction? I put the wkhtmltopdf.exe file at the top level directory of the site. Is there anywhere else it should be held?

Thanks.


Edit: If anyone has better solutions to dynamically create pdf files from html, please let me know.

flag

79% accept rate
Is your application producing any exceptions as a result of this operation? Is the command line operation producing any exceptions or errors? – Nathan Taylor Aug 26 at 1:48
No it is not producing any exceptions. I actually see the command prompt come up really fast. If I don't put the: HttpContext.Current.Server.MapPath(), I do get a file not found exception. – Sean Aug 26 at 1:55
You may be able to use FileMon or other sysinternals tool to see what file was not found. Have you tried specifying absolute paths too? – BrianLy Aug 26 at 2:01
See stackoverflow.com/questions/tagged/…. – John Saunders Sep 10 at 16:29

3 Answers

vote up 3 vote down

There are many reason why this is generally a bad idea. How are you going to control the executables that get spawned off but end up living on in memory if there is a crash? What about denial-of-service attacks, or if something malicious gets into TestPDF.htm?

My understanding is that the ASP.NET user account will not have the rights to logon locally. It also needs to have the correct file permissions to access the executable and to write to the file system. You need to edit the local security policy and let the ASP.NET user account (maybe ASPNET) logon locally (it may be in the deny list by default). Then you need to edit the permissions on the NTFS filesystem for the other files. If you are in a shared hosting environment it may be impossible to apply the configuration you need.

The best way to use an external executable like this is to queue jobs from the ASP.NET code and have some sort of service monitor the queue. If you do this you will protect yourself from all sorts of bad things happening. The maintenance issues with changing the user account are not worth the effort in my opinion, and whilst setting up a service or scheduled job is a pain, its just a better design. The ASP.NET page should poll a result queue for the output and you can present the user with a wait page. This is acceptable in most cases.

link|flag
Hi, understood. Can you suggest a better way? – Sean Aug 26 at 1:52
1  
MSMQ + Windows Services is the general approach. – silky Aug 26 at 1:58
To follow up on that, either search around, or I've described it briefly here: stackoverflow.com/questions/1317641/… – silky Aug 26 at 2:02
MSMQ + Windows Services is a specific approach. You can often implement something with SQL Server if you don't know how to use MSMQ or don't want to take a dependency on it. The general thing to look for is queuing systems, of which MSMQ is just one. – BrianLy Aug 26 at 2:13
You probably shouldn't give the ASP.NET user account any extra rights, it could be a security issue. If possible you should impersonate for just this action, creating a special account with very limited permissions. – Yuriy Faktorovich Aug 26 at 3:39
vote up 0 vote down

The ASP .Net process probably doesn't have write access to the directory.

Try telling it to write to %TEMP%, and see if it works.

Also, make your ASP .Net page echo the process's stdout and stderr, and check for error messages.

link|flag
Not sure, wasn't me. Thanks for the info though, will test it out. Seems I should go about a different way to create pdf files from html though. – Sean Aug 26 at 1:53
there are .NET wrappers for it, csharp-source.net/open-source/pdf-libraries/… came from a quick google search – Yuriy Faktorovich Aug 26 at 3:41
vote up 0 vote down

Make sure you've specified an output path for the PDF that is writeable by the ASP.NET process of IIS running on your server (usually NETWORK_SERVICE I think).

Mine looks like this (and it works):

/// <summary>
/// Convert Html page at a given URL to a PDF file using open-source tool wkhtml2pdf
/// </summary>
/// <param name="Url"></param>
/// <param name="outputFilename"></param>
/// <returns></returns>
public static bool HtmlToPdf(string Url, string outputFilename)
{
	// assemble destination PDF file name
	string filename = ConfigurationManager.AppSettings["ExportFilePath"] + "\\" + outputFilename + ".pdf";

	// get proj no for header
	Project project = new Project(int.Parse(outputFilename));

	var p = new System.Diagnostics.Process();
	p.StartInfo.FileName = ConfigurationManager.AppSettings["HtmlToPdfExePath"];

	string switches = "--print-media-type ";
	switches += "--margin-top 4mm --margin-bottom 4mm --margin-right 0mm --margin-left 0mm ";
	switches += "--page-size A4 ";
	switches += "--no-background ";
	switches += "--redirect-delay 100";

	p.StartInfo.Arguments = switches + " " + Url + " " + filename;

	p.StartInfo.UseShellExecute = false; // needs to be false in order to redirect output
	p.StartInfo.RedirectStandardOutput = true;
	p.StartInfo.RedirectStandardError = true;
	p.StartInfo.RedirectStandardInput = true; // redirect all 3, as it should be all 3 or none
	p.StartInfo.WorkingDirectory = StripFilenameFromFullPath(p.StartInfo.FileName);

	p.Start();

	// read the output here...
	string output = p.StandardOutput.ReadToEnd(); 

	// ...then wait n milliseconds for exit (as after exit, it can't read the output)
	p.WaitForExit(60000); 

	// read the exit code, close process
	int returnCode = p.ExitCode;
	p.Close(); 

	// if 0 or 2, it worked (not sure about other values, I want a better way to confirm this)
	return (returnCode <= 2);
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.