I have created a webservice (.NET) which makes all the calls (gets the envelope info etc.) & gets the recipient view URL. I am trying to open this URL in a new browser window so that that signing process can start.
System.Diagnostics.Process.Start( url);
This works fine in VS2013 dev environment but when published to the IIS server(Win2008 server), the process start does not work. I was wondering if anyone has used the recipient view in web application(ASP.NET / webservice) - & how did they manage to get this working after publishing to the web server.
Thanks in advance.
JK