Case 3669

This commit is contained in:
2019-02-13 23:18:06 +00:00
parent 46a3c83ae0
commit 6572dd0301
3 changed files with 9 additions and 3 deletions

View File

@@ -33,4 +33,4 @@ using System.Runtime.InteropServices;
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.5.0.0")] [assembly: AssemblyVersion("7.5.0.0")]
[assembly: AssemblyFileVersion("7.5.4.0")] [assembly: AssemblyFileVersion("7.5.5.0")]

View File

@@ -59,7 +59,7 @@ namespace AyaNova.PlugIn.QBOI
public string PluginVersion public string PluginVersion
{ {
get { return "7.5 (patch 4)"; }//if patch then 7.3 (patch 1) etc get { return "7.5 (patch 5)"; }//if patch then 7.3 (patch 1) etc
} }
public string About public string About
@@ -69,7 +69,7 @@ namespace AyaNova.PlugIn.QBOI
return return
"AyaNova QBOI plugin\r\n" + "AyaNova QBOI plugin\r\n" +
"Built " + AyaNova.PlugIn.QBOI.Timestamp.BuildAt.ToString() + "\r\n" + "Built " + AyaNova.PlugIn.QBOI.Timestamp.BuildAt.ToString() + "\r\n" +
"Copyright 2017-2018 Ground Zero Tech-Works Inc."; "Copyright 2017-2019 Ground Zero Tech-Works Inc.";
} }
} }

View File

@@ -307,6 +307,9 @@ namespace AyaNova.PlugIn.QBOI
static public void StartAuthorization() static public void StartAuthorization()
{ {
//case 3669
//https://help.developer.intuit.com/s/question/0D50f00005gFeqpCAC/how-do-i-suddenly-get-there-was-an-error-while-communicating-with-the-ids-server
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; //Add this just to be sure to use TLS1.2
//#if(DEBUG) //#if(DEBUG)
// string KEY_APP_TOKEN_ENCRYPTED = Ec(KEY_APP_TOKEN, "Invoice"); // string KEY_APP_TOKEN_ENCRYPTED = Ec(KEY_APP_TOKEN, "Invoice");
@@ -378,6 +381,9 @@ namespace AyaNova.PlugIn.QBOI
//test case 3515 //test case 3515
//System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; //Add this just to be sure to use TLS1.2 //System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; //Add this just to be sure to use TLS1.2
//var result = string.Empty; //var result = string.Empty;
//using (var webClient = new System.Net.WebClient()) //using (var webClient = new System.Net.WebClient())
//{ //{