Hi Team,
I am using below code for login
Jira jiraConn = Jira.CreateRestClient(Settings.Default.JiraURL, Settings.Default.JiraUser, Settings.Default.JiraPassword,null);
var issues = (from i in jiraConn.Issues.Queryable
orderby i.Created
select i).ToList();
Inner Exception :
InvalidOperationException: Error Message: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
Can I disable the certificate check during login.
Could you please help me resolve this issue ..
Thanks in Advance !
Hi, I also started getting the same error yesterday. My first run still passed. Then the next one started to fail with that error and hasn't been successful since.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.