- OutSystems.com
-
My Platform
- Community
Log in
Sign Up
才高八斗的杯子 · C++ lambda表达式与函数对象 ...· 1 月前 · |
不拘小节的牛腩 · 一年狂卖2740万块!金士顿再夺2023年S ...· 2 月前 · |
打篮球的香烟 · sqlite3_bind_blob· 2 月前 · |
叛逆的花生 · 在 Linux 上安装 - SQL ...· 4 月前 · |
害羞的小熊猫 · 宁波爱发科真空技术有限公司· 5 月前 · |
wrote:
Hi,
I have a .net application that runs on Microsoft .net framework 3.5
I need to add TLS1.2 in my application. May i know how to add this package in my application.
Thanks
Mine is Outsystems application. So I downloaded this directly into my development environment. Published it. Then referenced the same in required eSpace. Added AddTLS1.2 action before each and every API call. Please check the attachment.
For .net application we need to add the below line before the API call.
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls12;
Hope this helps.
Hi Lakshmi,
Thanks for you reply. .net framework 3.5 doesn't support this code.
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls12;