globalsign

Citrix SSL Error 61 – “GlobalSign Root CA”

拟墨画扇 提交于 2020-02-22 20:31:20
When using VDI from NetScaler server html, after open a ica file(Citrix ICA Setting file for icaclient) by Citrix Workspace, an error dialog popup: You have not chosen to trust “GlobalSign Root CA”, the issuer of the server;s security certificate (SSL error 61) The problem is that the cert is not in the plugin directory that ICAClient uses. So the solution is to get it and put it in the correct place. Firefox Preferences > Advanced > Certificates > View Certificates Scroll down and click on “GlobalSign Root CA” (under GlobalSign nv-sa), and then press Export. Save it somewhere. Then copy it

Android 2.3.x javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found

匿名 (未验证) 提交于 2019-12-03 01:57:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am receiving this error only on (maybe some) 2.3.x devices. it works for any other devices running an Android version above that. Here is my HTTPRequestController: public class HttpRequestController { private final static String TAG = "HttpRequestController"; private static HttpRequestController instance; public enum Method { PUT, POST, DELETE, GET } private HttpRequestController() { } public static HttpRequestController getInstance() { if (instance == null) instance = new HttpRequestController(); return instance; } public String doRequest