- OutSystems.com
-
My Platform
- Community
Log in
Sign Up
私奔的酱牛肉 · 再谈异常——谈 C++ 与 Object ...· 1 周前 · |
善良的钥匙扣 · Troubleshooting: ...· 2 月前 · |
卖萌的滑板 · wkhtmltopdf如何设置字体 - ...· 3 月前 · |
害羞的毛豆 · 麦富迪母公司上市在即,但高端产品能否提升利润 ...· 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;