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 ...
Monday, October 22, 2018
Saturday, October 13, 2018
WINDOWS POWERSHELL COMMANDS
Posted on
1:18 AM
by
Sachin Kalia
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...
Categories:
Azure Cloud
Wednesday, October 10, 2018
Deep Dive into Azure PaaS,Application Insights ,Enterprise Integration ,Azure Session in Noida,India
Posted on
3:25 AM
by
Sachin Kalia
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...
Categories:
Azure Cloud
Sunday, October 7, 2018
POWER SHELL COMMANDS
Posted on
1:34 AM
by
Sachin Kalia
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...
Categories:
Azure Cloud
Thursday, September 20, 2018
Install httprepl in DotnetCore 2.2 Preview
Posted on
5:43 PM
by
Sachin Kalia
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...
Categories:
.Net Core
Tuesday, August 28, 2018
Difference between Cloud Service and PaaS App Service
Posted on
9:01 PM
by
Sachin Kalia
Difference between Cloud Service and PaaS App Service
In Cloud service you can take control of remote machine.
...
Categories:
#Azure
,
Azure Cloud
Thursday, July 26, 2018
Python TypeError must be str not int
Posted on
7:03 PM
by
Sachin Kalia
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...
Categories:
Python
Monday, June 11, 2018
[Fiddler] The connection to com failed.
Posted on
3:03 AM
by
Sachin Kalia
[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...
Categories:
Bug & Error Resolution
,
WCF and WebAPI
Thursday, May 3, 2018
Session about .Net Core 2.0 with Angular in Noida
Posted on
2:38 AM
by
Sachin Kalia

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
Posted on
6:37 AM
by
Sachin Kalia

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...
Categories:
Azure Cloud
Monday, March 26, 2018
Abstract Factory Pattern Using C# - Real World Example
Posted on
5:57 AM
by
Sachin Kalia

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...
Categories:
.Net Core
,
Design Pattern & OOPS
Monday, February 19, 2018
Workshop on #Microsoft #Azure
Posted on
11:09 PM
by
Sachin Kalia

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...
Categories:
Azure Cloud
Thursday, January 4, 2018
Custom Service Dependency Injection In .Net Core 1.1
Posted on
11:21 PM
by
Sachin Kalia
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...
Categories:
.Net Core
Wednesday, January 3, 2018
Register A Chat Bot Using MS Bot Framework
Posted on
10:42 PM
by
Sachin Kalia
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...
Categories:
.Net Core
,
Azure Cloud
,
Bot Framework

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...
Subscribe to:
Posts
(
Atom
)