Category: Canarys

  • How to Build an Online Help Page in Microsoft Dynamics NAV 2013 R2

    Online help page is a web page which displays information in a web browser when user presses the key F1 for the selected field or page in MS Dynamics NAV 2013 R2. In this blog I will try to document the process of creating online help page for Microsoft Dynamics NAV 2013 R2 version, from…

  • Overview of Microsoft Dynamics CRM 2013

    What is CRM Today’s world is fast changing and full of challenges, which fundamentally changed the way people do business. Every organization has different teams of people who put their efforts to make strategies and execute them to build a successful business by focusing on three fundamental areas known as Marketing-Sales-Services. Through Customer Relationship Management…

  • Rapid Start Services in Microsoft Dynamics NAV 2013

    RapidStart Services is an integrated tool that helps you to speed up the implementation process and facilitates better control of whole processes in NAV implementation. It includes Project Overview, Master Data Import and Export, Configuration Packages, etc. You can set up a new company in Microsoft Dynamics NAV with RapidStart Services for Microsoft Dynamics NAV.…

  • Uses of MS Dynamics NAV Query Object

    Query is a new object in Microsoft Dynamics NAV 2013 that a programmer can use to define a set of data from the Microsoft Dynamics NAV database. Users can query the database to retrieve field’s information stored in the database from a single table or multiple tables using table relation. You can specify how to…

  • Sonar Integration with TFS for Java Projects

    Sonar Integration with JAVA. 1.Download sonar-3.7 and sonar-runner-2.3*** unzip folders and copy the contents in c drive. http://docs.codehaus.org/display/SONAR/Installing+and+Configuring+SonarQube+Runner                           2.Run InstallNTService, StartNTService and StartSonar bat files. from :-> sonar-3.7                          3.Create “SONAR_RUNNER_HOME”…

  • Building a RESTful API using python and Django

    What you Need? Python 2.6+ Django 1.5+ django-tastypie  Sqllite3 Django is Free and Open Source web application framework written in Python. Which works on MVT(model view template) Framework .   Step 1: Create a model    As it is MVT architecture we have to define a model.It inludes what are all field required in your…

  • Performing Sonar Analysis for .NET projects

    Sonar Integration with TFS build for .net projects This document provides details about TFS and Sonar integration for .Net projects. The .net projects can be analyzed using solution properties or adding invoke process in the build process template. Pre-requisites: Sonar media download link. http://docs.codehaus.org/display/SONAR/Installing+and+Configuring+SonarQube+Ant+Task Installing Sonar. 1.Download sonar-3.7 and sonar-runner-2.3*** unzip folders and copy the…

  • Conducting interviews effectively.

       Interviewing candidates for an open position in my company has never been an easy task for me. I have always tried to keep a close vigil on what specifics I need to understand. I have never hesitated to put the candidates on the spot and test them. I don’t believe in embarrassing anyone, but it…

  • SQL injection attack and prevention using stored procedure

    What is SQL Injection Attack? SQL Injection is one of the many web attack mechanisms (hacking technique) used by hackers to steal data from organizations. It is perhaps one of the most common application layer attack techniques. Improper coding of your web applications that allows hacker to inject SQL commands into say a login form…

  • How to implement multiple service contract in a single WCF service.

    First lets us create one service by using “class library project”. STEP1: Create class library project Step2: Delete class1.cs file which is auto generated. Step3: Add wcf service for this project. Right click on right click on class library project->Add->new Item(click)->select wcf service from installed templates and rename is as ” Multipleservicecontrats.cs” Click add button…