Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,
I made a web application in text file converts in pdf and then it will be convert in an image my code is running good at local host but when i upload it on host it is making pdfs but after pdf it is not responding.
i think problem is that line
C#
Process.Start(Server.MapPath("Bin\\ppmtojpg.exe") , "ppmtojpg.exe");

please help for resolve this problem.
Posted
Updated 5-Jan-12 2:09am
v3

1 solution

It is a most likely a security issue. This code may have worked on your local machine because you are an admin on that machine. The user account under which this code is running on the host is not. Nor would you want anything like this to be executed on a host server. ASP.NET, and IIS, is running within a security sandbox with limited rights on the server, the IIS_USR account doesn't have the rights to start a process like this.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900