Storing application secrets in Azure key vault
Most of the time we need to keep certain secrets (like passwords ) and encryption keys configurable as part of applications.Usually this stuff goes in an application configuration file (e.g.…
Read moreMost of the time we need to keep certain secrets (like passwords ) and encryption keys configurable as part of applications.Usually this stuff goes in an application configuration file (e.g.…
Read moreAzure active directory (AD) provides cloud based directory and identity management services.You can use azure AD to manage users of your application and authenticate access to your applications using azure…
Read moreAzure has multiple offerings in its App services category which can help you leverage Azure’s Platform as a Service (PaaS) capabilities. Web Apps – For web applications Mobile Apps –…
Read moreA while back I was working on a small Proof of concept where I needed to use console based client to connect to a server and use it to send…
Read morePipes are a mechanism for inter process communication in windows.Pipes come in two varieties viz. Anonymous pipes and Named pipes.Anonymous pipes as name suggest do not have a name and…
Read moreAnybody who has worked on couple of software projects with layered architecture knows how over a period of time all the projects get into the problem of excessive coupling across…
Read moreIn almost all .NET applications you encounter lot of boilerplate code which although has pretty standard implementation but is quite important from implementation point of view. Some common examples are…
Read moreLets consider two situations mentioned below which define the problem.I guess lot of you would be familiar with the first one. Problem Situation 1 : You start with a project…
Read moreNoSql databases like Mongo give us advantage of storing our classes directly in data store without worrying too much about schemas.Thus saving us from object-relational impedance mismatch.Common scenario that arises…
Read moreWhen using official C# mongo driver any field with name ‘Id’ and type “ObjectId” is mapped to _Id field in mongo db.What that means is that If you don’t supply…
Read more