-
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…
-
Why responsive design become the backbone of web and mobile application?
One site for every screen. Day by day there are various of new Smartphones models are coming the market, so designing a website for any specific phone will not work on all devices. Here we are really need to understand what is the use of flexible lay out design means, Responsive design. Before start talking…
-
Exception Management in .Net
You know Exception management is one of the key areas and secure for all kinds of application development. What is Exception Management? Exception management involves managing exceptions that occur in runtime, because exceptions are expensive What are the advantages of exception management? Performance and Scalability: By knowing the causes of exceptions, and by writing code…