<?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 It seems to me this isn't a… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84108#M35295</link>
    <description>It seems to me this isn't a BP problem. Different .NET runtimes uses different SecurityProtocol&amp;nbsp; leves. (see here &lt;A href="https://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5)" target="test_blank"&gt;https://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5)&lt;/A&gt;
My work around: Browse and save the WSDL with a browser of your choice and import the WSDL from that file. So you didn't have to use TLS in the wizard.
Before you call the webservice insert a code stage with the following statement (VB):
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls Or System.Net.SecurityProtocolType.Tls11 Or System.Net.SecurityProtocolType.Tls12
This enables Tls1.0, Tls1.1 and Tls1.2
Hope it&amp;nbsp;helps
Tobias</description>
    <pubDate>Fri, 29 Jun 2018 10:39:00 GMT</pubDate>
    <dc:creator>TobiasArnold</dc:creator>
    <dc:date>2018-06-29T10:39:00Z</dc:date>
    <item>
      <title>Web Service TLS version 1.1</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84105#M35292</link>
      <description>In my process, I€™m consuming one web service which was working fine till last week. Suddenly I€™m getting one error related to TLS /SSL version.

When I spoke to Web service provider, they are saying they are not supporting TLS version 1.0 anymore. And all of their web services are upgraded to support only 1.1 or 1.2 or higher versions.

Would like to know whether Blue prism supports only TLS 1.0 web services?

If Blue prism supports 1.1 or higher versions, do I need to change any settings in Blue prism ? If so where should I change the versions.

I have attached the screenshot of the error below for your reference.

Please let me know if you need any more information to resolve the issue.&amp;nbsp;

Regards.

Adi</description>
      <pubDate>Sat, 26 May 2018 23:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84105#M35292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-26T23:25:00Z</dc:date>
    </item>
    <item>
      <title>Hi,
 
Had a similar issue,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84106#M35293</link>
      <description>Hi,
&amp;nbsp;
Had a similar issue, it was resolved by adding SchUseStrongCrypto of the value dword ""1"" in the registry. As I understand it forces .NET Framework to use newer TLS versions as default. Maybe Blue Prism egineers can provide more detail if needed.
&amp;nbsp;
Good luck!
&amp;nbsp;
Best Regards,
&amp;nbsp;
Joakim</description>
      <pubDate>Mon, 04 Jun 2018 22:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84106#M35293</guid>
      <dc:creator>joakimeklund</dc:creator>
      <dc:date>2018-06-04T22:51:00Z</dc:date>
    </item>
    <item>
      <title>Any update on this as we are…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84107#M35294</link>
      <description>Any update on this as we are having the same issue?</description>
      <pubDate>Thu, 28 Jun 2018 17:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84107#M35294</guid>
      <dc:creator>MikeHiggs</dc:creator>
      <dc:date>2018-06-28T17:07:00Z</dc:date>
    </item>
    <item>
      <title>It seems to me this isn't a…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84108#M35295</link>
      <description>It seems to me this isn't a BP problem. Different .NET runtimes uses different SecurityProtocol&amp;nbsp; leves. (see here &lt;A href="https://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5)" target="test_blank"&gt;https://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5)&lt;/A&gt;
My work around: Browse and save the WSDL with a browser of your choice and import the WSDL from that file. So you didn't have to use TLS in the wizard.
Before you call the webservice insert a code stage with the following statement (VB):
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls Or System.Net.SecurityProtocolType.Tls11 Or System.Net.SecurityProtocolType.Tls12
This enables Tls1.0, Tls1.1 and Tls1.2
Hope it&amp;nbsp;helps
Tobias</description>
      <pubDate>Fri, 29 Jun 2018 10:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84108#M35295</guid>
      <dc:creator>TobiasArnold</dc:creator>
      <dc:date>2018-06-29T10:39:00Z</dc:date>
    </item>
    <item>
      <title>Tobias, that's perfect... I…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84109#M35296</link>
      <description>Tobias, that's perfect... I found the same but using C# instead
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
using system.net
thank you,
&amp;nbsp;</description>
      <pubDate>Fri, 29 Jun 2018 14:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Web-Service-TLS-version-1-1/m-p/84109#M35296</guid>
      <dc:creator>MikeHiggs</dc:creator>
      <dc:date>2018-06-29T14:27:00Z</dc:date>
    </item>
  </channel>
</rss>

