sharepointcafe
A Deep Dive into MicroService Architecture: Key Considerations
.
Microservice architecture is a self-contain process which offers unique business capabilities. Micro Services makes complex and large application deployment process easier. But, before describing Microservice architecture in details we should first understand distributed technologies we already have in the industry. Prior to Microservices, we have already Web Services, WCF Service and latest one from Microsoft…
Microsoft SharePoint 2019, Office 2019 Release Date and related things to know
.
Hello Everyone, Microsoft’s another big release of office is Comming Soon i.e. Office 2019 with SharePoint 2019. Microsoft’s current Office version is 2016 and now they are releasing Office 2019. As per Microsoft, Office 2019 will be released in second half of 2018 and this could be a Preview version. Office 2019 will include Apps for…
SharePoint 2013 Server Object Model (SOM) Programming – SharePoint 2013 Tutorial
.
SharePoint Server Object Model Programming allows you to write code and communicates with SharePoint objects if you are inside the SharePoint context. It provides a set of classes which is executed at the server-side. Server Object Model Programming is the same in SharePoint 2010 and SharePoint 2013. SharePoint 2013 Server Object Model In this blog,…
How to debug Production Apps in Azure ?
.
Hello Everyone, This is my another blog related to Microsoft Azure. Before reading this blog, I would request you to explore my earlier blogs on Cloud Computing and Microsoft Azure. In this blog, I will write about how to debug production Apps in Azure. Debugging code in production Writing code and debugging to find an…
What’s new in C# 6.0 language?
.
C# 6.0 is an another version of C# programming language released in the year 2015. C# 6 provides numerous new features which helps developer to write C# code in more clean and optimized way. Here are top 8 features of C# 6.0 language No major concepts introduced in C# 6.0. Mainly small features have been added…
ASP.Net Web API Routing
.
In this blog, we will see about the Routing system in ASP.Net Web API. Routing is one of the important sections in ASP.Net Web API. What is Routing? Routing is the process which decides which action and which controller should be called. .NET Web API supports 2 types of routing. Convention-based Routing in ASP.NET Web…
How to create WCF RESTful Service.
.
In my earlier blog, I have explained about REST and SOAP.In this blog, I will continue WCF tutorial sections. See a list of topic in WCF tutorial here.REST is the short form of Representational State Transfer. REST says each resource should be accessed by URI. How to create a RESTful WCF service. First, create a…
What is SharePoint Online ? Let’s Explore
.
Hello, everyone, this is my very first interaction with the Online version of SharePoint.SharePoint Online is a cloud-based SharePoint given by Microsoft. With SharePoint Online one can access sites, documents and other data from anywhere, any device. You may also like SharePoint 2019 Release Date SharePoint Online can be purchased along with Office 365 where you…
What is Azure Cognitive Service? Complete understanding with Face API example.
.
In an earlier blog, you have read about Microsoft Azure. In this blog, you will come to know about Azure Cognitive Service in details. Introduction to Microsoft Azure Cognitive Service Microsoft Cognitive Services (earlier known as Project Oxford) provides us the ability to build intelligent applications, just by writing a few lines of code. These…
How to deploy your Web Application to Microsoft Azure using Visual Studio 2017?
.
Hello everyone, in my earlier blog I have already explained about “Create and Deploy WebApp in Azure App service“. That deployment was done using Visual Studio 2015. Now as you all know that Microsoft has released .Net Core 2.0 and Visual Studio 2017. So, I downloaded Visual Studio 2017 Community Edition to deploy my ASP.Net…
How to Create and Deploy WebApp in Microsoft Azure App Service?
.
If you are new to Cloud Computing, please read my earlier blogs on Cloud Computing, What is Azure and Explore Microsoft Azure Service. This is my 4th blog on Cloud Computing series along with Microsoft Azure. Let’s move ahead, in this blog I will explain – How you can deploy a Web Application in Microsoft…
Getting started with Microsoft Azure
.
If you are new to Microsoft Azure, then please read my earlier blog on Cloud Computing and Microsoft Azure introduction. In this blog, I will explain how to create resources in Azure Dashboard and will show you screenshots. This will be a totally new experience for me as well because I am also new to…
What is DevOps? – A Software Delivery Approach
.
In my previous blog, I have explained about Microsoft Azure and Amazon Web Service (AWS). If you want to know about AWS then read my another blog – What is AWS? What is DevOps? DevOps is a buzzword today in Cloud Computing. DevOps – A short form of Development and Operations is a software delivery process that…
What is Azure? – Microsoft Cloud Service
.
Azure is a Cloud Computing Service given by Microsoft. Azure was announced in the year 2008 and released in the year 2010. Earlier it was called Windows Azure now it is Microsoft Azure. What is Azure? According to Microsoft “Microsoft Azure is a growing collection of integrated cloud services which developers and IT…
What is AWS? A Beginner guide to learn AWS
.
As you know this is the era of Cloud Computing. There are 2 big names in Cloud Computing which have covered the market, one is Microsoft and another one is Amazon. If you are new to Cloud Computing then first read my previous blog on Cloud Computing So in Cloud Computing, Microsoft has offered their services…
What is Cloud Computing – A guide for beginners
.
In the last few years, we all have come across the word Cloud Computing. Nowadays Cloud Computing (also called “Cloud”) is one of the emerging technologies in the IT industry. You must be eager to know “What is Cloud Computing ?”. Cloud Computing simply called “The Cloud” is the way to deliver resources over the…
Facade Design Pattern in C#.Net
.
Design patterns provide efficient and re-usable solutions in software development. If you are new to Design Pattern, please read my earlier blog – Design Pattern in ASP.NetFacade Design Pattern comes under Structural Design Pattern. In short, Facade means the exterior appearance. It means in Facade design pattern we hide something and show only what actually client…
Thread Safety Singleton
.
If you are new to design pattern please read my blog on Design Pattern then read about Singleton Design Pattern.So let’s continue about Thread Safety Singleton.There are various ways to implement Singleton Design Pattern. No Thread Safe Thread Safety Thread Safety using Double Check Locking Lazy Instantiation I will write about Thread Safety Singleton here, No…
How to create dynamic HTML tags
.
How to create HTML tags dynamically? In some cases, there might be a requirement to create HTML tags dynamically. For eg, I will create below HTML structure with C# code. <ul id=”pagelist” runat=”server” class=”pages”> <li class=”active” rel=”page1″>My Page Title1</li> <li rel=”page2″>My Page Title2</li> </ul> <div class=”container” id=”container” runat=”server”> <h3 rel=”page1″></h3> <div id=”page1″> </div> <h3…
Singleton Design Pattern vs Static Class in C#
.
If you are new to design pattern, then read my earlier blog on Design Pattern.We have explored ASP.Net Singleton Design Pattern in earlier blog.This blog will help us to know the differences between Singleton Design Pattern and Static Class in C#. The most common questions asked related to Singleton Design Pattern is difference between static class and…
