Update v3.8.0.2 for Pronto OpenNet released... Please see the main post for details: http://blog.alphatrust.com/prontodevelopment/prontoopennet/pronto-opennet-download-and-release-history/...
<% option explicit Response.Buffer = true Dim oTrans, sPDF, sReturn, bIsSuccessful, oProntoServer sPDF = Server.MapPath("Eula.pdf") 'ADD PDF document to sPDF - this is the source document Set oTrans = Server.CreateObject("ProntoOpen25.ProntoTransaction37") 'The object reference...
Update v3.7.0.5 for Pronto OpenNet released... Please see the main post for details: http://blog.alphatrust.com/prontodevelopment/prontoopennet/pronto-opennet-download-and-release-history/...
Q. Why do I get the error, "Cannot process a stream object."
Pronto Development / ProntoOpenNet FAQs No CommentsA. If you are using IIS, you need to change two IIS Metabase values. Steps: 1) Using IIS Manager check the "Enable Direct MetaBase Edit" in the properties of the local computer node. 2) Restart the IIS Admin Service. 3) Carefully edit the "c:\windows\system32\inetsvr\MetaBase.xml"...
Custom Email Notification Information per Signer Functionality in v3.6
Pronto Development / ProntoOpenNet No CommentsWe have new functionality for customizing email notifications on a “per Signer” basis. This functionality will be available in Pronto Server version 3.6 with the AlphaTrust.Pronto.OpenNet.dll version 3.6 (file version 3.6.0.3). Here is a code example: ... Dim en As New Pronto.Signer.EmailNotification...
DOWNLOAD: Pronto OpenNet v3.8.0.2 Version 3.8.0.2 – Posted August 12, 2010 Added Document MetaData for Centera functionality Added Document Watermarking functionality Added the PageImageRenderDPI functionality to allow for custom DPI for the signing PNG image when using the PDF_File_PageImage UI...
Custom Signer Action Example (for Pronto version 3.5+ and ASP.NET)
Pronto Development / ProntoOpenNet No CommentsThis is an example of how collect data from the signer just before they sign and merge the data into the document all while still inside the Pronto automated signature request process. This example is written in .NET. (For Classic ASP see this post ) This is the create transaction page ...
Q. Why don’t I get redirected to my signing page when I’m developing?
Pronto Development / ProntoOpenNet FAQs No CommentsA. If you want your users to be automatically redirected to the signing page you have to set this: signer.Link = Pronto.Signer.LinkTypes.Url If you are in debug mode ( Transaction.Debug.Active = True ) then it blocks the automatic-redirect for debugging/developing purposes and gives you links to click...
Q. After I Transaction.Commit(), what read-only properties get populated in the response from Pronto?
Pronto Development / ProntoOpenNet FAQs No CommentsA. Transaction.Error Transaction.ErrorFriendlyMessage Transaction.OriginalReturnString Transaction.ID NOTE: Document will always be an index of zero since there can currently only be one document per transaction Transaction.Document(0).ID Transaction.Document(0).URL Transaction.Document(0).AccessToken...
Customer Signer Action Example (for Pronto version 3.5+ and Classic ASP)
Pronto Development / ProntoOpenNet No CommentsDOWNLOAD: Custom Signer Action Example This is an example of how collect data from the signer just before they sign and merge the data into the document all while still inside the Pronto automated signature request process. This example is written in classic ASP. This is the create transaction...