Category: Canarys

  • Dependency Injection on SignalR

                                                           Dependency Injection on SignalR ​ This article shows how to perform dependency injection on SignalR hubs. Dependency injection is a way to remove hard-coded dependencies between objects, making it easier to replace an object’s dependencies, either for testing (using mock objects) or to change run-time behaviour. What is Dependency Injection?                                                                                                  If you are already familiar…

  • Azure C1

  • Microsoft Azure : Running Linux Virtual Machine

    Creating an Azure VM that runs Linux is easy to do. We will use ssh public key file to secure our SSH connection to VM. We can also create Linux VM’s using our own images as templates. NOTE: We will create an Azure VM which is managed by Azure resource group. Pre-requisite We need Azure subscription. Steps…

  • Create custom project templates in Visual Studio

    Visual studio installation comes with the various predefined project templates, and we can use one of these templates (like console application, class library, ASP.NET web application, etc) to create a new project. We can create custom project templates and have they appear in create new project dialog under the project selection templates. Here I would…

  • Microsoft Azure : Running Windows Virtual Machine

    How easy it is to create an Azure VM in just a few minutes. We’ll use Windows Server 2012 r2 Datacentre image but that’s just one of many images Azure offers. We can also create VM’s using our own images, with Resource Manager Templates or with automation tools. We will use the Resource Manager Deployment…

  • Dynamics c1

  • Azure Consulting Service

    We are Microsoft Cloud Solution Providers (CSP)  Canarys helps you achieve higher productivity, with cost effective solutions, reduced maintenance and better information flow leveraging Microsoft Azure Platform. Microsoft Azure offers wide spectrum of Services under Infrastructure, Platform & Software which are commonly known as IaaS, PaaS & SaaS. Sudden and compelling demands of Infrastructure is…

  • Identify and stop idle Dynamics NAV sessions using User Session Control Addon

    Since the advent of RTC clients and 3-tier architecture of Dynamics NAV, it’s been a question in the minds of thousands of NAV developers as well as end-users, that how to find out the idle time of the users connected to the service tier. There were some add-on solutions available in the market prior to…

  • WScript Sleep- Exercise Desktop Remainder

    Introduction – WScript.Sleep   WScript.Sleep Suspend the execution of the current script for the specified number of milliseconds. Syntax: WScript.Sleep Time Arguments: Time is the delay in milliseconds. Example:                                               WScript.Sleep (10000) WScript.Echo (“10 Seconds have passed”) A script can force itself to pause by calling the WScript Sleep method. The Sleep method accepts a single…

  • Setup Jenkins for VSO with TFVC

    Jenkins provides an easy-to-use Continuous Integration method, making it easier for developers to integrate changes to the project. We can use Visual Studio Online (VSO) to store code and use Jenkins for Continuous Integration builds.  A Jenkins build can be triggered when code is checked into TFS with TFVC as the code repository. In this…