Pronto OpenNet Download and Release History
ProntoOpenNet Tuesday, May 19 2009
Version 3.9.3.0 – Posted December 16, 2011
- Added functionality for SignBehaviors, CancelBehaviors and ErrorBehaviors for signatures.
Version 3.8.0.7 – Posted April 6, 2011
- Fixed userfilenametype bug that was passing in the string enum instead of the integer value or the enum.
- Added extra error details in error emails and added code defining of Pronto_AcctDataDirectory setting instead of web.config.
- Added in backwards compatibility that checks for nulls on userfilenametype and userfilename.
- Added the "to be posted" XML information into the Error Message.
- Added Transaction.RequestTimeout - Gets or sets the time-out value in milliseconds for the GetResponse and GetRequestStream methods.
Version 3.8.0.3 – Posted October 4, 2010
- Backwards compatibility bug fix.
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. (This basically allows the developer to determine how big/small the document displays to the user when signing)
- Added IPAddress as a type of Text1/Text2/Text3 signature block information. This functionality is normally used for adding a Date/Time or Signer Printed Name in the signature block. Now you can also add the IP Address in the signature block as well.
Version 3.7.5.1 – Posted June 29, 2010
- Added "IsTest" boolean property to Transaction object to allow for test transactions to be launched so you are not charged for the transaction even though you are on a production license.
- Left Trimmed the Document Source data in case the inline HTML starts with a space so that the CDATA will autowrap around the HTML code.
Version 3.7.0.5 – Posted February 22, 2010
- Enabled Base64 version of HTML Inline document data source which was previously omitted.
- Added Signature AccessToken readonly property to the Signature object. AccessToken gets populated with the rest of the Signature's readonly properties after Transaction.Commit() is called.
- Fix for an issue that was preventing Authentication.Type and Authentication.Data from passing to all signatures for a particular signer.
Version 3.7.0.0 – Posted August 21, 2009
- Added the ability to define server-related configs programmatically
- Added .Replace("&", "&").Replace("&", "&") for ClientReturn URL when there is no HttpContext and error messages aren't in HTML when there is no HttpContext.
- Added logic to check if the Source data is too large for debug display and swapped it out with a message stating this fact.
- Closed an open bold tag in the Debug.FormattedReturn
Version 3.6.0.8 – Posted July 8, 2009
- Added a checked in the Debug that keeps the ConfigurationManager.Appsettings("Pronto_TestEmail") from replacing empty Document.Return.Data and Signer Email Addresses so that when in debug mode the developer knows that the email address is missing. Previously, if they were empty, the ConfigurationManager.Appsettings("Pronto_TestEmail") would replace it letting the developer believe that their code is valid and working when it really isn't.
Version 3.6.0.7 – Posted June 25, 2009
- Switched & to & when automatically adding the "ps_loop" in the ClientReturnUrl since it is later HTMLEncoding the string. This was causing it to encode it twice like this &
Version 3.6.0.6 – Posted June 23, 2009
- Fixed the Transaction.Debug.AutoRedirect = True functionality that was previously disabled.
- There is now a check for a trailing "/" character in the Pronto_HttpHost and adds it if it's missing.
- Added the ability to define the Pronto_HttpHost at runtime through the Transaction.HttpHost property. It will check the Transaction.HttpHost property first, then the Web.Config, then it will error if it’s not defined in either spot.
- Added Signer.EmaiNotifications functionality that works with the Pronto 3.6 functionality (please see latest v3.6 Developer’s Guide for description of use).
Version 3.6.0.0 – Posted May 19, 2009
- Removed the ToLower for ClientReturnURL when replacing the ps_loop=0 on last sig. ps_loop is now CASE SENSITIVE and must be lower case!
- Added which index the signer, signature, action etc was throwing the error in the error handling.
- Removed checks for non-essential Web.Config appsettings: Pronto_ProntoDirectory and Pronto_MailPickupPath
- Removed error handling for Pdf_Form vs Pdf_File since they now act the same in regards to FormFiller
- Allow for AdHoc without transaction errors.
- DLL is now signed for Strong Naming.
Version 3.5.0.2 – Posted March 30, 2009
- Although this is Primarily setup for Web use, you can now also use this DLL with WinApps as well.
- Removed validation that forced you to have SMTP installed on your Pronto Server
- Added a new Web.config appsetting: <add key="Pronto_SendErrorEmails" value="false"/> that allows you to not use SMTP (default is true for backwards compatibility reasons)
- You can now also use the System.Net.Mail reads SMTP configuration instead of the default IIS Pickup Path by adding the following into your web.config:
<system.net>
<mailSettings>
<smtp from="test@foo.com">
<network host="smtpserver1" port="25" userName="username" password="secret" defaultCredentials="true" />
</smtp>
</mailSettings>
</system.net>
Version 1.0.0.44 – Posted March 02 2009
- Bug fixes with Signer Query changes in Title and Org when there are multiple signatures
- Excluded HttpContext dependency if using the DLL in a non-web environment. System.Web reference is still required but it now checks to see if it's null and if so, bypasses the appropriate methods.
Version 1.0.0.41- Posted Jan 9 2009
Updates are pretty minor. We "Friend"-ed a few properties that should not have been Public in the first place just to clean things up a little but nothing that should break any code.
Version 1.0.0.39 – Posted December 12 2008
IMPORTANT NOTE: If you update to this version, you will need to add a namespace reference in your Web.config file (see code below). We appended the AlphaTrust namespace to the current namespace. Also, the DLL itself has been renamed as well so please delete the previous dll in your Bin directory as this will not overwrite a previous version.
Previous namespace: Pronto
Updated namespace: AlphaTrust.Pronto
<configuration>
<system.web>
<pages>
<namespaces>
<add namespace="AlphaTrust" />
</namespaces>
</pages>
</system.web>
</configuration>
Added an extra method to the Pronto.Signature.Action class that lets you specify just a URL for standard data collection for use in the new Pronto Server 3.5
- Added additional backwards compatibility features for Pronto Server version 2.9