Category: Canarys

  • DevOps with Visual Studio Team Services for Java

    Java DevOps is simply applying DevOps practices and philosophies to Java app development. That means that compartmentalized teams are no longer needed when creating Java applications. Benefits of Java DevOps DevOps take a people-first approach. Apart from bringing together your development, operations and other teams, DevOps require team members to understand the perspective of other members…

  • Implementing Security to your DevOps Pipeline

    Hi all, today in this post I'm gonna talk about "Implementing Security to your DevOps Pipeline using VSTS and White Source Bolt (DevSecOps)". As we all know the trends that we are seeing out in the market, lot of buzz words are being heard and DevOps being 1 of them . People are adopting the…

  • VSTS Rollup Service – Setup

    Hi All, if you are worrying how to calculate sum of the effort fields in VSTS, here is the solution. I’m going to explain you how our VSTS Rollup Service works. Here is the entire thing you need to know. VSTS Rollup is a Web Service which provides summed values of select fields for all child…

  • VSTS Rollup Service – How to use

              Hi All, Here i'm going to explain How VSTS RollUp Service works and how to use RollUp service in your Team Project. Once the VSTS Rollup service is created and enabled for your team project, go to the same Team Project and create the work items like Epic, Feature, PBI, Tasks, Bugs. When you Task/Bug…

  • VSTS RollUp

    Hi All, In this post, I’d show you show you the few Pre-requisites to get your VSTS Team Project registered for the RollUp web service, and Steps to create service hooks. Please search for VSTS Rollup on VSTS Marketplace and click on Get Started. Before you start : Below few Pre-requisites to get your VSTS Team Project registered…

  • VSTS Area Uploader

    Hi All, In this post, I’d show you the VSTS Area Uploader tool, which helps you to upload the Areas with multiple level from a .csv file to your team project/ multiple team projects. To start this, browse to VSTS MarketPlace and search for VSTS Area Uploader. You should see the screen as below. Click on 'Get Started' button to…

  • VSTS Copy Dashboard Tool

    In this blog I’m gonna show how to use VSTS Copy Dashboard  tool that replicates/copies the existing dashboard from one team to either single or multiple teams and reduces time & effort of recreating widgets and charts. To access the tool, browse to the VSTS MarketPlace and search for the Dashboard Migrator. You should see as shown below to get…

  • Implementing Google account authentication in ASP.NET MVC

    Implementation of Google OAuth in MVC application:   Step 1: Create a Google OAuth application           To create it please follow the steps below: Go to https://console.developers.google.com, login with your Gmail id. Click on ‘Select a Project’ dropdown at left top of the page. Click on ‘Create project’ button, Enter project name and create project.…

  • Sending Test reports by Email using Office 365, Gmail

    Wouldn’t it be great if Test Report are sent automatically across team as soon the Test Execution is complete?? Now, let’s see how to achieve this using Office 365.com, Outlook.com and Gmail.com account as the SMTP host. Include the below code in your OneTImeTearDown (NUnit) or AfterClass (TestNG) method: we attain this feature using library…

  • Token Based Authentication for Web API’s

    Securing ASP.NET Web API using Custom Token Based Authentication Providing a security to the Web API’s is important so that we can restrict the users to access to it. We can provide the security in two different ways: Basic authentication. Token based authentication. In this blog, we will discuss how we can implement token based…