I was just recently deploying a ASP.NET Core 3.1 web API project to IIS and decided to write a post on issues faced. Before that let’s understand the difference between Kestrel and IIS briefly. The Kestrel web server is a new web server as part of ASP.NET Core. It is now the preferred web server […]
Introduction to Common Data Service
Whether you are building a canvas app or a model-driven app, Common Data Service is the ideal data source because it is the foundational data source of Power Platform. As a result, you will experience the most functionality, the deepest integrations, the most features, and the best ease-of-use of any available data sources. From simple […]
Introduction to Power Apps
Power Apps is a suite of apps, services, connectors, and a data platform that provides you with an opportunity to build custom apps for your business needs. Power Apps also provides an extensible platform that lets pro developers programmatically interact with data and metadata, apply business logic, create custom connectors, and integrate with external data. […]
Help Desk – Power Virtual Agents
Let us create a demo chat bot for Help Desk For example: Organization handle help desk tickets using Service now, Sales force, IBM Maximo & many more ways including custom applications or intranet portals. Let us create a chat bot to get generate a ticketing system. To create the new Chat Bot, click on bot […]
Introduction to Power Virtual Agents
Power Virtual Agents empowers teams to easily create powerful bots using a guided, no-code graphical interface without the need for data scientists or developers. We can create a chat bot without a knowledge of coding. We can connect to Power Virtual Agents with work domain account for free till 60 days validity. Microsoft announce the […]
Updating “HTTP Error 500.30 – ANCM In-Process Start Failure” when running ASP.NET Core 3.1 in Azure App Service or IIS
I was just recently deploying a ASP.NET Core 3.1 web project to Azure that I was working on my spare time and realized It would not start, instead I got the following error: “HTTP Error 500.30 – ANCM In-Process Start Failure My setup was ASP.NET Core 3.1 targeting netcoreapp3.1 and running the in-process hosting model […]
Deploy SPFx Solution Package using Azure CDN
Configure MS Azure Storage Account Loginto MS Azure Portal (https://portal.azure.com) Click “Create a resource” Click “Storage account – blob, file, table, queue” Click Create The storage account endpoint can be referred by URI – http://<StorageAccountName>.blob.core.windows.net Configure BLOB Container Select storage account from dashboard Click “Blobs” Add New Container Click Access keys and note down any of […]
Deploy SPFx Solution Package Using Office 365 CDN
This CDN location, being public, can be accessed easily. Follow below steps: Configure CDN in Office 365 Tenant Download and install the latest version of SharePoint Online Management Shell Open the SharePoint Online Management Shell Connect to SharePoint Online tenant using below cmdlet Connect-SPOService – Url https://[YourTenant]-admin.sharepoint.com (Replace [YourTenant] with actual tenant name) Run below […]
Deploy SPFx Solution Package excluding Assets
To deploy our webpart, we first need to create a deployable package that can be added to the App Catalog. You may follow the steps below after creating your SPFx webpart. Open project using visual studio code. Verify package-solution.json for includeClientSideAssets property to false & then set CDN details in write-manifest.json as below Bundle your […]
Deploy SPFx Solution Package including Assets
To deploy our webpart, we first need to create a deployable package that can be added to the App Catalog. You may follow the steps below after creating your SPFx webpart. Open project using visual studio code. Verify package-solution.json for includeClientSideAssets property to true & write-manifest.json for cdnBasePath to “<!—PATH TO CDN–>” as below Bundle […]