Community forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


Support
2015-10-06T08:11:27Z
Changes so far in this version:

[FEATURE] Client/Server: Connections->SFTP->Brute force connection test tool
[FEATURE] Client/Server: Connections->SFTP, Cloud, SSH->Now loading public key into connection object which lets you use the Explorer in the Client (remote connect)
[BUGFIX] Server: Archive - Compress->Fixed an issue producing file according to zip standard
[BUGFIX] Server: File Trigger (use polling)->Fixed a problem with a scenario that multiple threads could be created (when file trigger path failed)
[BUGFIX] Client/Server: Dynamics CRM Tasks->Various fixes
[BUGFIX] Server: HTTP Task->Handled error "Could not create SSL/TLS secure channel" that could occur on some servers
[BUGFIX] Server: Web service API->Fixed issue with serialization



Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Sponsor
Forum information
L. Atkinson
2015-10-06T17:33:49Z
Thank you Henrik.

Unfortunately, I'm not comfortable using a beta in a production environment, so my follow up question is do you know when this will become an official release rather than a beta release?

Thanks.
Luther
Support
2015-10-06T19:20:21Z
Originally Posted by: L. Atkinson 

Thank you Henrik.

Unfortunately, I'm not comfortable using a beta in a production environment, so my follow up question is do you know when this will become an official release rather than a beta release?

Thanks.
Luther



Probably on Monday.

Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Support
2015-10-07T10:28:45Z
New build, changes:

[BUGFIX] Client/Server: Dynamics CRM Tasks->Various fixes
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Support
2015-10-07T19:05:59Z
New build, changes:

[BUGFIX] Server: HTTP Task->Handled error "Could not create SSL/TLS secure channel" that could occur on some servers
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Support
2015-10-07T20:49:54Z
New build, changes:

[BUGFIX] Server: Web service API->Fixed issue with serialization
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
KJDavie
2015-10-07T23:49:38Z
Hi Henrik,

Thanks for the tweak to the HTTP Task.

I can confirm that the HTTP Task in 7.7.7. is now executing against TLS 1.2 Web Sites and returning consistent results with a Powershell check of a PCI Compliant website:

--- snip - Powershell Task Equivalent Check with Enforced TLS 1.2 ---
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
[System.Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest "https://**** Your PCI / TLS 1.2 Website Here ***" -UseBasicParsing
--- snip ---

Old Error Encountered in prior versions < VisualCron 7.7.7 :
<Error getting HTTP response: The underlying connection was closed: An unexpected error occurred on a send.>

Thanks !

K
Scroll to Top