Monday, October 22, 2018

Azure Blob Storage Tiers

Azure Blob Storage Tiers There are few points which you should remember while developing or managing Azure Storage pertinent to Tier for data access. Azure Hot Storage  Tier ----> It uses for fast retrieval of data or lowest data retrieval cost and lowest data access cost though higher data storage cost involve. Azure Cool Storage ...

Saturday, October 13, 2018

WINDOWS POWERSHELL COMMANDS

WINDOWS POWERSHELL COMMANDSOpen your power shell from command prompt as a administrator.Point to remember : Declare any variable with $y in PowerShell C:\WINDOWS\system32>$array ="India","Japan","Aus","US","UK"C:\WINDOWS\system32> $arrayIt will list an array PS C:\WINDOWS\system32> $array[2]It gives value on index 2 , which is AUS in our...

Wednesday, October 10, 2018

Conducted and Executed Azure session in Noida today Some Glimpse Conversation following topics AzureARM Portal (Azure Resource Manager)Azure Service ModelARM Portal Deep Dive Platform As A Service(PaaS)Hosting .Net WEBAPI ApplicationApplication Insights Application Insights Telemetry Live Streaming of execution Logic Apps as WebHookLogic apps integration...

Sunday, October 7, 2018

POWER SHELL COMMANDS

POwer SHELL COMMANDS get-help workerrole get-help webrole get-help *content* get-help storage get-command *event get-eventlog system get-eventlog system -newest 10 // to get latest 10 log  get-eventlog system -newest 10 | where {$_.instanceid -eq 129} // To get the specific event  get-eventlog system -newest 10 | where {$_.instanceid -lt 1219} // to get all events less than event id...

Thursday, September 20, 2018

Install httprepl in DotnetCore 2.2 Preview

Install httprepl in DotnetCore 2.2 PreviewWhile you are working on the .Net Core Preview 2.2 than you may required to  install httprepl, so while Installing dotnet-httprepl from the command prompt using the following command:dotnet tool install -g --version 2.2.0-* --add-source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json dotnet-httpreplYou...

Tuesday, August 28, 2018

Difference between Cloud Service and PaaS App Service   In Cloud service you can take control of remote machine.                                                                    ...

Thursday, July 26, 2018

Python TypeError must be str not int

Python TypeError must be str not int While working on Modules using python using an IDE PyCharm i confronted an issue while printing int value using Print function of python.I’ve created a python module which i require to import prior to use.Now question strikes in mind what actually Module is in Python.I’ve craeted a fle named as Functions and having...

Monday, June 11, 2018

[Fiddler] The connection to com failed.

[Fiddler] The connection to '<the site>.com' failed. System.Security.SecurityException Failed to negotiate HTTPS connection with server.fiddler.network.https> HTTPS handshake to <the site>.com (for #3) failed. System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the...

Thursday, May 3, 2018

Session about .Net Core 2.0 with Angular in Noida

Session about .Net Core 2.0 with Angular in Noida Shared session about .Net Core 2.0 with Angular using Visual studio 2017 with it's inbuilt template and many more in Noida .Mitigation of Challenges faced with earlier version of .NetSome glimpse of the day#dotnetcore2.0#Angular #mvpbuzz #asp.net #dotnetcore #Angular ...

Monday, April 30, 2018

Missing Registration For Location Error while Publishing the API on Azure. Introduction: Missing Registration For Location Error Can come when we are trying to publish the web application on azure from Visual studio. Solution: I’ve tried various way to resolve this and various website advised to me to update  visual studio or Upgrading Azure...

Monday, March 26, 2018

Abstract Factory Pattern Using C# - Real World ExampleWhile learning about design patterns, I came to understand the most frequently used term, Factory Pattern as well as Abstract factory pattern. I searched the internet and came across numerous learning points. After a lot of search and study, I endeavored to find an actual need for the abstract...

Monday, February 19, 2018

Workshop on #Microsoft #Azure

Workshop on #Microsoft #Azure for the students of IIMT College of Engineering, Greater Noida by Sachin Kalia at C# Corner office, Noida. cc Mani Gautam Dinesh Kumar Beniwal Atul Gupta@dotnetpiperWarm RegardsSachin Kal...

Thursday, January 4, 2018

Custom Service Dependency Injection In .Net Core 1.1

INTRODUCTIONCustom Service Dependency Injection In .Net Core 1.1There are various ways to inject dependency in MVC. Dependency injection is a technique to pass the required Dependency so that the desired action can be performed.In this article we will go through with one of the key features of .Net Core, Custom Service dependency injection in .Net...

Wednesday, January 3, 2018

Register A Chat Bot Using MS Bot Framework

Recently, I created a Chabot for a purpose which I wanted to register within. After an implementation of Bot using MS Bot framework, it should be registered with https://dev.botframework.com/bots. These are a few steps which may help you to register and ready to use. Step 1 Go to https://dev.botframework.com/bots. You will have the following...

Short circuiting and branching in .NET Core are key concepts to make an application sequential and provide more control over the response. The term middleware is used in a .NET Core application either to delegate a request to the next component in the pipeline or short circuit it. Middleware has some important aspects as shown below: It delegates...