-
Continuous Integration/ Continuous Deployment VSTS
Following the below steps you can build and deploy your ASP.NET app to Azure from either Visual Studio Team Services Upload your code Upload your latest code to Visual Studio Team Services repository. Create the definition Login to your VSTS account https://xxxxxxxx.visualstudio.com/ Open your team project in your web browser. https://xxxxxxxx.visualstudio.com/MyFirstProject Verify that the VSTS…
-
How to Sync On-premise AD with Windows Azure AD using Azure AD Connect tool
Azure AD is a service that provides identity and access management capabilities in the cloud. Azure AD can be integrated with existing on-premise AD for providing single sign-on functionality for their users to access the cloud applications. So it is essential for organizations to keep the credentials in both on-premise AD and Azure AD…
-
Parallel Execution using Selenium Webdriver and TestNG
While testing a web application it is very important to test the application on different browsers. We can achieve this by using Selenium Web driver and TestNG. If there are more number of scripts to be executed and executing them on each and every browsers sequentially is time consuming. This can be avoided using a…
-
Creating a Point-to-Site Connectivity using Azure Resource Manager
Configure a Point-to-Site connectivity to a VNet using PowerShell (ARM Mode) Task 1: Create a Self-Signed certificate 1. Login to your Visual Studio Virtual Machine using your credentials. Create a folder C:P2S Certificates. 2. Navigate to C:ProgramDataMicrosoftWindowsStart MenuProgramsMicrosoft Visual Studio 2012Visual Studio Tools and Run VS2012 x64 Cross Tools Command Prompt…
-
How to Create an Azure Virtual Network by using a Deployment Template
Hello Folks! In this Blog post, we will try to learn how to create an Azure V-Net using an ARM template. I have divided the post into two tasks. Please follow the steps to complete the deployment. Task 1: Download the Template from GitHub 1. Open the internet explorer and type https://github.com/Azure/azure-quickstart-templates/tree/master/101-vnet-two-subnets 2. Click azuredeploy.json, and…
-
Coded UI automation for web applications using Record and Playback approach.
First, What is Coded UI? Coded UI (also called CUIT) is an automation testing tool provided by Microsoft technologies which helps in creating automated tests. The Coded UI tests help us verify the whole application such as User Interface and their functioning properties. Coded UI tests are more helpful when there are validations and logical…
-
Creating Simple App Using Ionic Framework
Introduction: Ionic framework is a simple, beautiful and structured Software Development Kit by using this we can create mobile apps. We can create both Android and iOS apps using ionic framework. You will find many docs and example for creating the apps using Ionic framework. Creating the Setup Environment: Follow the below steps to create…
-
ASP.NET: Audit Trail Implementation using Entity Framework
When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records. Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps…
-
Create Restful service using Web API
What is Asp.Net Web API? Asp.Net Web API is a framework for building HTTP services that can be consumed by a broad range of clients including browsers, mobiles, iphone and tablets. It is very similar to ASP.NET MVC since it contains the MVC features such as routing, controllers, action results, filter, model binders, IOC container…
-
Locking VMs and Resources Groups with Azure Resource Manager using Azure PowerShell
Hello Folks! In this blog post we will be talking about locking down your Azure Resources with Azure Resource Manager. This tutorial might come handy to you when you want your resources to be safe from getting accidentally deleted. You can lock almost any type of resource using this method be it Virtual Machines, Web…