0

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

1 Answers1

0

The URL returned via DocuSign API in response to a "Request Recipient View" request is simply a URL like any other -- so this isn't really a DocuSign-specific question, but rather, a question related to how to accomplish opening a URL in a new browser window within the context of the dev technology that you're using. You might want to add more tags to your question (other than just DocuSign API) to have better odds of getting your question answered.

That being said -- if your goal is simply to launch a new window (with the target URL you specify) from an ASP.NET page, you might consider one of the following approaches:

Community
  • 1
  • 1
Kim Brandl
  • 13,125
  • 2
  • 16
  • 21