<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic &amp;quot;The request was aborted: Could not create SSL/TLS secure channel.&amp;quot; in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76179#M28720</link>
    <description>​Hi,&lt;BR /&gt;&lt;BR /&gt;I'm trying to read items from a Sharepoint List using CSOM (Client Side Object Model, Microsoft.Sharepoint.Client.dll).&lt;BR /&gt;The Sharepoint requires ssl authentication (https), but the call works fine even without passing any credentials or X509 certificate when I invoke it from my Visual Studio environment.&lt;BR /&gt;If I use the same code however in a code stage in Blue Prism (on the same virtual machine), I'm getting:&lt;BR /&gt;"The request was aborted: Could not create SSL/TLS secure channel."&lt;BR /&gt;&lt;BR /&gt;It's&amp;nbsp;a bit difficult to debug the issue in Blue Prism and as I cannot reproduce the error in Visual Studio I'm a bit stuck.&lt;BR /&gt;&lt;BR /&gt;Anyone any idea?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cheers Astrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 31 May 2019 11:21:00 GMT</pubDate>
    <dc:creator>astrid.stollberger</dc:creator>
    <dc:date>2019-05-31T11:21:00Z</dc:date>
    <item>
      <title>"The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76179#M28720</link>
      <description>​Hi,&lt;BR /&gt;&lt;BR /&gt;I'm trying to read items from a Sharepoint List using CSOM (Client Side Object Model, Microsoft.Sharepoint.Client.dll).&lt;BR /&gt;The Sharepoint requires ssl authentication (https), but the call works fine even without passing any credentials or X509 certificate when I invoke it from my Visual Studio environment.&lt;BR /&gt;If I use the same code however in a code stage in Blue Prism (on the same virtual machine), I'm getting:&lt;BR /&gt;"The request was aborted: Could not create SSL/TLS secure channel."&lt;BR /&gt;&lt;BR /&gt;It's&amp;nbsp;a bit difficult to debug the issue in Blue Prism and as I cannot reproduce the error in Visual Studio I'm a bit stuck.&lt;BR /&gt;&lt;BR /&gt;Anyone any idea?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cheers Astrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 31 May 2019 11:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76179#M28720</guid>
      <dc:creator>astrid.stollberger</dc:creator>
      <dc:date>2019-05-31T11:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76180#M28721</link>
      <description>Check out the current user in Visual Studio. Pretty sure you might've signed in to the&amp;nbsp; sharepoint site.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gopal Bhaire&lt;BR /&gt;Analyst&lt;BR /&gt;Accenture&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Jun 2019 04:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76180#M28721</guid>
      <dc:creator>GopalBhaire</dc:creator>
      <dc:date>2019-06-03T04:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76181#M28722</link>
      <description>Alright, I cannot really explain why but adding the following lines to my code (in Blue Prism) resolved the issue:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt; | SecurityProtocolType.Tls11&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt; | SecurityProtocolType.Tls12&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt; | SecurityProtocolType.Ssl3;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;In Visual Studio (which is installed on the same VM where I tested the Blue Prism code and uses .Net Framework V4.7 as well) it worked without explicitly defining the SecurityProtocol values....&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cheers Astrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Jun 2019 13:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76181#M28722</guid>
      <dc:creator>astrid.stollberger</dc:creator>
      <dc:date>2019-06-03T13:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76182#M28723</link>
      <description>&lt;P&gt;Hi Astrid,&lt;BR /&gt;&lt;BR /&gt;Blue Prism is configured to only use&amp;nbsp;TLS 1.2 protocol by default. In your scenario it appears SharePoint is not configured to utilise the TLS 1.2 protocol and when the TLS/SSL handshake takes place between Blue Prism and SharePoint they cannot find a mutual TLS version to use for the communication. This results in the error you are seeing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code you have placed into the code stage is forcing Blue Prism to allow older versions of TLS and SSL protocols, I wouldn't recommend enabling all protocol versions but the ones you need, you can see how to determine what TLS version is being used by following this stack overflow article: &lt;A href="https://security.stackexchange.com/questions/19096/how-to-determine-if-a-browser-is-using-an-ssl-or-tls-connection" target="test_blank"&gt;https://security.stackexchange.com/questions/19096/how-to-determine-if-a-browser-is-using-an-ssl-or-tls-connection&lt;/A&gt; e.g.&amp;nbsp;&lt;BR /&gt;ServicePointManager.SecurityProtocol =&amp;nbsp;SecurityProtocolType.Tls11&lt;BR /&gt;| SecurityProtocolType.Tls12&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Further information can be found here:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider gl b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;&lt;A aria-label="Link https://support.blueprism.com/en/support/solutions/articles/7000077946-does-blue-prism-enterprise-support-the-transport-layer-security-tls-protocol-" title="https://support.blueprism.com/en/support/solutions/articles/7000077946-does-blue-prism-enterprise-support-the-transport-layer-security-tls-protocol-" href="https://support.blueprism.com/en/support/solutions/articles/7000077946-does-blue-prism-enterprise-support-the-transport-layer-security-tls-protocol-" rel="noreferrer noopener" target="_blank" class="fui-Link ___1idfs5o f3rmtva f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1hu3pq6 f11qmguv f19f4twv f1tyq0we f1g0x7ka fhxju0i f1qch9an f1cnd47f fqv5qza f1vmzxwi f1o700av f13mvf36 f1cmlufx f9n3di6 f1ids18y f1tx3yz7 f1deo86v f1eh06m1 f1iescvh ftqa4ok f2hkw1w fhgqx19 f1olyrje f1p93eir f1h8hb77 f1x7u7e9 f10aw75t fsle3fq f17ae5zn"&gt;https://support.blueprism.com/en/support/solutions/articles/7000077946-does-blue-prism-enterprise-support-the-transport-layer-security-tls-protocol-&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;James Marsh&lt;BR /&gt;Technical Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 13:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76182#M28723</guid>
      <dc:creator>JamesMarsh</dc:creator>
      <dc:date>2019-06-04T13:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76183#M28724</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;Thanks a lot for the explanation, James!&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;Astrid &lt;/SPAN&gt;&lt;SPAN lang="DE-CH"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Hi Astrid,&lt;BR /&gt;&lt;BR /&gt;Blue Prism is configured to only use&amp;nbsp;TLS 1.2 protocol by default. In your scenario it appears SharePoint is not configured to utilise the TLS 1.2 protocol and when the TLS/SSL handshake takes place between Blue Prism and SharePoint they cannot find a mutual TLS version to use for the communication. This results in the error you are seeing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code you have placed into the code stage is forcing Blue Prism to allow older versions of TLS and SSL protocols, I wouldn't recommend enabling all protocol versions but the ones you need, you can see how to determine what TLS version is being used by following this stack overflow article: &lt;A href="https://security.stackexchange.com/questions/19096/how-to-determine-if-a-browser-is-using-an-ssl-or-tls-connection" target="test_blank"&gt;https://security.stackexchange.com/questions/19096/how-to-determine-if-a-browser-is-using-an-ssl-or-tls-connection&lt;/A&gt; e.g.&amp;nbsp;&lt;BR /&gt;ServicePointManager.SecurityProtocol =&amp;nbsp;SecurityProtocolType.Tls11&lt;BR /&gt;| SecurityProtocolType.Tls12&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Further information can be found here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://portal.blueprism.com/customer-support/support-center#/path/1150114562" target="test_blank"&gt;http://portal.blueprism.com/customer-support/support-center#/path/1150114562&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;James Marsh&lt;BR /&gt;Technical Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Jun 2019 14:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76183#M28724</guid>
      <dc:creator>astrid.stollberger</dc:creator>
      <dc:date>2019-06-04T14:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76184#M28725</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to make a Mutual SSL Webservice call where I am using a pem certificate to make the call. I am currently using Blueprism 6.4.3, can you please suggest how I can get this thing implemented.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sanjeev&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;sanjeev rout&lt;BR /&gt;Advanced App Engineering Specialist&lt;BR /&gt;Accenture UK&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76184#M28725</guid>
      <dc:creator>11235813sk</dc:creator>
      <dc:date>2019-11-25T14:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76185#M28726</link>
      <description>&lt;P&gt;Are you trying to communicate out of Blue Prism to a SOAP web service or are you communicating externally into a Blue Prism process or object?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;James Marsh&lt;BR /&gt;Technical Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76185#M28726</guid>
      <dc:creator>JamesMarsh</dc:creator>
      <dc:date>2019-11-25T14:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76186#M28727</link>
      <description>I want to make a call to third party API from Blueprism.&lt;BR /&gt;Currently I have implemented the call using CURL. From Blueprism I make a call to client server, I pass the .pem, .cer and .crt file as part of CURL call to client server and get the output as a JSON File.&lt;BR /&gt;&lt;BR /&gt;Now I want to get rid of CURL and implement everything in Blueprism VBO. Can you please help me?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;sanjeev rout&lt;BR /&gt;Advanced App Engineering Specialist&lt;BR /&gt;Accenture UK&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76186#M28727</guid>
      <dc:creator>11235813sk</dc:creator>
      <dc:date>2019-11-25T14:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76187#M28728</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm facing a similar issue, but the code throws the same error even after enabling all protocol versions.&lt;BR /&gt;&lt;BR /&gt;Here's my code:&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;resultData&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;""&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="token keyword"&gt;try&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt;

ServicePointManager&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;SecurityProtocol &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; SecurityProtocolType&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Tls
	&lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; SecurityProtocolType&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Tls11
	&lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; SecurityProtocolType&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Tls12
	&lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; SecurityProtocolType&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Ssl3&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
ServicePointManager&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;ServerCertificateValidationCallback &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt;        
&lt;SPAN class="token class-name"&gt;RemoteCertificateValidationCallback&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
   &lt;SPAN class="token keyword"&gt;delegate&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;return&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;true&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
WebClient client &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WebClient&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
client&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;UseDefaultCredentials &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;true&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
String htmlCode &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; client&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;DownloadString&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;addressURL&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
resultData &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; htmlCode&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;


	Success&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;true&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	Message&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;""&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;catch&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Exception e&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt;
	Success&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;false&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	Message&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;e&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;GetBaseException&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Message&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;​&lt;/PRE&gt;
I also tried removing&amp;nbsp;ServerCertificateValidationCallback, still no luck.&lt;BR /&gt;&lt;BR /&gt;Protocol version being used by server:&amp;nbsp;TLS 1.2, AES with 256 bit encryption (High); DH with 1024 bit exchange (looked up in IE)&lt;BR /&gt;&lt;BR /&gt;Any idea what might help??&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Amandeep Malhotra&lt;BR /&gt;Blue Prism Developer&lt;BR /&gt;Barclays Technology Centre India&lt;BR /&gt;Pune, Maharashtra&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Dec 2019 12:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76187#M28728</guid>
      <dc:creator>AmandeepMalhotr</dc:creator>
      <dc:date>2019-12-23T12:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: "The request was aborted: Could not create SSL/TLS secure channel."</title>
      <link>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76188#M28729</link>
      <description>The error is generic and there are many reasons why the SSL/TLS negotiation may fail. ServicePointManager.SecurityProtocol property selects the version of the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocol to use for new connections; existing &lt;A href="http://net-informations.com/faq/net/interview-questions.htm" target="_blank" rel="noopener"&gt;c#&lt;/A&gt; connections aren't changed. Make sure the ServicePointManager settings are made before the HttpWebRequest is created, else it will not work. Also, you have to enable other security protocol versions to resolve this issue:&lt;BR /&gt;&lt;BR /&gt;ServicePointManager.Expect100Continue = true;&lt;BR /&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12&lt;BR /&gt;SecurityProtocolType.Tls&lt;BR /&gt;SecurityProtocolType.Tls11&lt;BR /&gt;SecurityProtocolType.Ssl3;&lt;BR /&gt;&lt;BR /&gt;//createing HttpWebRequest after ServicePointManager settings&lt;BR /&gt;HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://google.com/api/")&lt;BR /&gt;&lt;BR /&gt;If you create HttpWebRequest before the ServicePointManager settings it will fail and shows the error message.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;creig atmi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Oct 2021 06:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/quot-The-request-was-aborted-Could-not-create-SSL-TLS-secure/m-p/76188#M28729</guid>
      <dc:creator>creigatmi</dc:creator>
      <dc:date>2021-10-18T06:00:00Z</dc:date>
    </item>
  </channel>
</rss>

