Category: Technical

See the technology related blogs

Technical

TLS v1.0 and TLS v1.1 Support will be Stopped

TLS v1.0 and TLS v1.1 protocol will be removed from all the browsers very soon. This will be expected to remove at the beginning of 2020. Find the deadline provided by each browser for disabling TLS v1.0 and TLS v1.1. The percentage of connections made using protocol TLS v1.0 and TLS v1.1 on each popular […]

Technical

Basic of Transport Layer Security (TLS)/Secure Sockets Layer (SSL)

Transport Layer Security (TLS) is a protocol which used to communicate between client and server over internet. This protocol ensures the data integrity, security, privacy and data encryption between the connections. So, the HTTPS requests and responses are communicated securely using this TLS protocol. Transport Layer Security (TLS) is next generation of SSL protocol. SSL […]

Technical

How to Create CloudFront Distribution in Amazon Web Services (AWS)

What is CloudFront? CloudFront is amazons web services which stores the content such as html, CSS, scripts, images etc. in worldwide network of data centers called edge locations, this will serve the static and dynamic web content very fast and quickly. Contents will be served to your browser from nearby edge locations to your region. […]

Technical

How to create access keys in AWS

Step 1: You should have AWS account to create new Security Access Keys. Login to AWS console using your credential, https://console.aws.amazon.com/console/home You can find all the Services. Under Security, Identity & Compliance tab you find IAM. https://console.aws.amazon.com/iam Or You can search the service using the name, Step 2: Click on IAM to open it, Then […]

Technical

How to Upload SSL certificate to Amazon Web Service(AWS) IAM using command line interface

Here I will explain the steps to upload the custom SSL certificate to Amazon Web Service (AWS) Identity and Access Management (IAM) using Amazon Command Line interface. Step 1: First use should install the command line interface to your machine. Below the URL, you can get the setup for Windows both 64 and 32 bits. […]

Technical

Visual Studio 2019 Updates

Microsoft has released Visual Studio 2019 version 16.3 recently. Key updates available in this version, .NET Core 3.0 Support C++ improvements Updates for Python TypeScript 3.6 support Download Link: You can download version 16.3 on visualstudio.com or update from the Visual Studio installer. Note: Microsoft have also released the first preview of Visual Studio 2019 […]

Technical

Migration to ASP.NET Core application from older versions

Refer the below article to migrate ASP.NET Core 2.2 to 3.0 https://docs.microsoft.com/en-us/aspnet/core/migration/22-to-30 Refer the below article to migrate ASP.NET Core 2.1 to 2.2 https://docs.microsoft.com/en-us/aspnet/core/migration/21-to-22 Refer the below article to migrate ASP.NET Core 2.0 to 2.1 https://docs.microsoft.com/en-us/aspnet/core/migration/20_21 Refer the below article to migrate ASP.NET Core 1.x to 2.0 https://docs.microsoft.com/en-us/aspnet/core/migration/1x-to-2x Refer the below article to migrate ASP.NET […]

Technical

Obsolete package references in ASP.NET Core 3.0

In Earlier versions of ASP.NET Core till v2.2, we used large number of NuGet packages to use some features. From ASP.NET v3.0 version, we don’t need to refer these NuGet references, instead these packages are available as a part of Microsoft.AspNetCore.App shared framework. No additional references are required. The shared framework is the set of […]

Back To Top