.Net Core 2.0 deployment on AWS

In my previous post, I have explained how to setup your .Net Core 2.0 which you can find here. In this post, I will explain how to deploy your .Net Core 2.0 application into AWS Elastic Beanstalk. First of all, let us see what is AWS Elastic Beanstalk? AWS Elastic Beanstalk is an orchestration service … Continue reading .Net Core 2.0 deployment on AWS

Logging in Asp .Net Core 2.0

Logging is very important part of any application as almost all application requires proper logging. .Net Core 2.0 has some simplified way of implementing logging. Let us see what are the changes required to enable logging in .Net Core 2.0 application. First of all, we need to make changes in appsettings.json file as below: { … Continue reading Logging in Asp .Net Core 2.0

SPA templates(Angular, React etc) with ASP .NET Core 2.0

In my last post, I have explained about the setup required for .Net Core 2.0 which you can find here. Along with Core 2.0, there are some newly added default templates has been added by Microsoft team. The major attraction is the SPA templates that are shipped with Core 2.0. SPA templates like Angular, React.js, … Continue reading SPA templates(Angular, React etc) with ASP .NET Core 2.0

Setup for Asp .Net Core 2.0

Microsoft has announced Core 2.0 and it has some awesome features which I will explain in future blog posts. For now, let us see how to converts your Core 1.0 application into Core 2.0 First of all, we will change the .Net core version in global.json file as shown below: {    "sdk": {   … Continue reading Setup for Asp .Net Core 2.0

Amplitude 2017: A MasterCard Hackathon

MasterCard is going to conduct one of the biggest hackathons of India on November. Name of the hackathon is Amplitude 2017. The theme of this Hackathon is #CashLessBanoIndia. Name of the theme is self-explanatory, the main focus of this hackathon is to come up with the ideas which will encourage people to use digital payments instead … Continue reading Amplitude 2017: A MasterCard Hackathon

Basic information for Ready API (SoapUI): API Testing

What is SoapUI? SoapUI is an open-source web service testing application for service-oriented architectures (SOA) and representational state transfers (REST). Its functionality covers web service inspection, invoking, development, simulation and mocking, functional testing, load and compliance testing. Basic kick off with SoapUI: Once you get SoapUI installed, it will have the dashboard as shown below: To … Continue reading Basic information for Ready API (SoapUI): API Testing

Infosys interview questions for experienced .Net developers

Below are some of the most important questions which were asked during Infosys interview recently. Tell me about yourself This is the best place where you can showcase yourself. Tell as much as you can about yourself which should highlight all your achievements but that too in very short words. Do not stretch it for so … Continue reading Infosys interview questions for experienced .Net developers

Query string in .Net core and MVC 6

As you all know that from MVC6 we are seeing some changes in our regular coding techniques. We were using below lines in MVC5 for getting values from query string: var myQueryString = Request.QueryString[“myQueryString”] But in MVC6, above lines will throw errors in your code. So, you might be wondering how can we achieve this … Continue reading Query string in .Net core and MVC 6

Visual studio 2015 exception: Connected to the…. but could not verify the server’s certificate. If you trust the server, connect again and allow untrusted certificates

Since last some days, I have observed that some people are seeing some errors while publishing the MVC6 project from Visual Studio 2015 so, I decided to write a post with the solution. So generally people get below error while publishing: ERROR_CERTIFICATE_VALIDATION_FAILED Connected to the remote computer ("XXXXXXXXX") using the specified process ("Web Management Service"), but … Continue reading Visual studio 2015 exception: Connected to the…. but could not verify the server’s certificate. If you trust the server, connect again and allow untrusted certificates

Best tools for S3 : Amazon Web Service(AWS)

All those who are using AWS might have a requirement to download\sync\upload etc with your S3 bucket. There are several ways to achieve that which includes some third party tool and even there are some ways via Visual Studio. Let us check them one by one, we will take the example of downloading entire S3 bucket … Continue reading Best tools for S3 : Amazon Web Service(AWS)