I am trying to open and edit (add annotation) and save the PDF to an IISWebDAV repository. I am using Acrobat Pro 9.0 and IIS 5.0 on XP SP2.
- I need to be able to open the Acrobat programmatically from a Winform Application. I tried using Process.Start(url), but it opens the PDF in the browser document. Tried the following setting in Acrobat, but in vain. http://www.mydigitallife.info/2007/06/17/disable-pdf-from-opening-in-web-browser-ie-firefox-opera-safari/
Tried the following code, but it opens the command prompt and doesn't open Acrobat. string url = "http://localhost/SampleWebDAV/Root/TestDoc100.doc"; Process p = new Process(); p.StartInfo.FileName = Environment.GetEnvironmentVariable("COMSPEC"); p.StartInfo.Arguments = "/c \"start \"" + url + "\""; p.Start();
- Acrobat doesn't issue a LOCK/UNLOCK WebDAV command. Acrobat 9.0 release notes say that it supports WebDAV, but if I intercept the request with fiddler, I can see that only GET, PROPFIND and PUT commands are happening. I can't see LOCK and UNLOCK commands.
Thanks.!