Automating Your Build Process Using FinalBuilder Craig Murphy

Size: px
Start display at page:

Download "Automating Your Build Process Using FinalBuilder. 2008 Craig Murphy"

Transcription

1 Automating Your Build Process Using FinalBuilder 2008 Craig Murphy

2 Session Overview Automated Builds and Continuous Integration are facets of extreme Programming (XP) Very much part of the agile approach to software delivery Traditional waterfall development approaches can still benefit Automated Builds encompass Continuous Integration An automated build is considered end to end, including precompile and post-compile activities This session will cover: An introduction to automating your build, the activities that should be automated, the benefits of automated builds, etc. An overview of how FinalBuilder can help you with your automated build Automating the Build Process Using FinalBuilder 2

3 Disclaimer I have no association with VSoft, the authors of FinalBuilder It is a great product, I have been using it since version 2.x Its primary reason for being is to automate the build process Automating the Build Process Using FinalBuilder 3

4 Housekeeping Mobile phones Fire Exits Toilets Automating the Build Process Using FinalBuilder 4

5 About Me 50+ presentations delivered: NRW06, NRW07 DeveloperDeveloperDeveloper (UK Community Events) Scottish Developers Agile Scotland British Computer Society (BCS) UK Borland User Group (DDG) Visual Basic User Group (VBUG) VBUG.net Winter 2001 conference XML One articles published: The Delphi Magazine developers magazine (Dotnet Developers Group - DDG) ASPToday.com (now Wiley, previously Wrox) ASP.NET Pro, International Developer CSharpCorner, DeveloperFusion XML XSLT XQuery XML Schema SOAP WML IntraWeb Web Services C# InterOp with Delphi RUP UML TDD in C#, VB.net and Delphi 8 Scrum Automating the Build Process Using FinalBuilder 5

6 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info Automating the Build Process Using FinalBuilder 6

7 Automating the Build What? Continuous Integration Checking in source code (version control) Running tests (test-driven development) Focus on not breaking the build Plenty of opinions: integrate ever 2 hours is fairly common Pre & Post CI activities Sending , stopping databases Burning CDs/DVDs, FTP, flicking switches McConnell, Code Complete 2 literal continuous integration is too much of a bad thing Promotes the Daily Build and Smoke Test Automating the Build Process Using FinalBuilder 7

8 Automating the Build Why? Manual Builds Error prone Difficult to repeat, easy to miss steps Laborious, boring, dull one team member understands the whole process Unlikely to be run frequently There is more onus / reliance on deployment testing Catch-22! Lack of quality / low quality are big problems Automating the Build Process Using FinalBuilder 8

9 Automating the Build Why? Automated Builds Repeatable and reliable processes one or two clicks, no series of [manual] steps more likely to be run frequently ultimately improve overall quality less chance of human error (after testing, the build) Easier transfer of knowledge No one team member knows the build In XP terms: Under the bus count > 1 Automating the Build Process Using FinalBuilder 9

10 Automating the Build How? Entirely manual process Once all development and testing is complete, package up the product... Use a mix of tools (partial automation) : DIY approach; can be very successful CruiseControl NAnt MSBuild Custom scripting DOS batch files Purchase off the shelf software, designed specifically to automate the build process VSoft s FinalBuilder AutomatedQA s Automated Build Studio etc. Automating the Build Process Using FinalBuilder 10

11 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info Automating the Build Process Using FinalBuilder 11

12 FinalBuilder FinalBuilder is an automated build and release management solution for Windows software developers and Software Configuration Management professionals It goes beyond continuous integration Provides an end-to-end means of automating every stage of your build process

13 FinalBuilder Standard, Professional and Server

14 FinalBuilder The Cost Not a developer? Automise provides the power of FinalBuilder, for the SysAdmin

15 Actions

16 Compilers Configurable, uses packages to manage actions

17 Version Control

18 Installers

19 Test Tools NUnit support is provided

20 Toolset Microsoft Windows XP SP2 FinalBuilder NUnit Visual Studio 2005 SP1 ZoomIt 1.72 Inno Setup Previously delivered this session using Windows Vista Recently paved this laptop with XP2 SP2 for corporate reasons

21 FinalBuilder REPLICATING F5 (OR F9)......AND BEYOND

22 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info

23 Customising FinalBuilder Writing your own Actions Integrate your build process into FinalBuilder ActionStudio VBScript, JavaScript COM-based languages e.g. Delphi, VB6.NET-based languages e.g. C#, Chrome, Visual Basic.NET

24 How do actions work? onvalidate() Valid parameter s? onexecute() Success / Failure? Valid Invalid Failure FINALBUILDER BUILD PROCESS Success

25 DIY NUnit integration Demonstrate, inside FinalBuilder: Invoking NUnit via the command-line Loading TestResult.xml (created by NUnit) Using XPath to select attributes from TestResult.xml Make decisions based on the attribute value Common activities for any integration Over time, VSoft usually get around to adding third party tools

26 Using FinalBuilder s Features INTEGRATING NUNIT

27 Customising FinalBuilder WRITING YOUR OWN ACTIONS USING C#

28 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info

29 Build Reporting Builds by day, by day of week, by time of day Print and Export to Excel

30 Build Reports Tuesdays and Thursdays bad days at the office!

31 Build Reports Demonstrate a downward trend in failed builds

32 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info

33 FinalBuilder Server Team development solution Centralises build projects through a web interface Manage multiple build projects All the underlying power of FinalBuilder Pro Builds can be started and stopped by authorised users Build logs and performance statistics viewable in a browser wide reach

34 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info

35 Build Failure Simple Red Screen Dr. Neil Roodyn promotes the use of an integration machine for the build Green screen (successful) Red screen (failed)

36 Build Failure More complex!

37 Agenda Automating the Build What, Why and How? FinalBuilder Introduction & Demo Customising FinalBuilder Using VBScript Using C# Replicating the NUnit Action Build Reporting FinalBuilder Server Light-hearted look at Build Failure Wrap Up Resources, Links Contact Info

38 Conclusions Automating the build process entirely, is worth the effort For large projects, I have spent 4-5 hours inside FinalBuilder, but made up that time many times over Quality increase If used correctly, automated build products, such as FinalBuilder are to the build process what test-driven development (TDD) is to the test/code sub-process Reduces integration headaches (integrate often) An automated build tool goes beyond F5 (or F9)

39 Resources FinalBuilder

40 Links Using FinalBuilder, compiler, etc. inside a Virtual Machine (VM) Excellent approach if you need to maintain a whole build environment, including third party components Sinjin Joseph ZoomIt

41 Contact Information Craig Murphy Updated slides, notes and source code:

42 Questions? Test Driven Development and Code Coverage 42

How To Develop A System For A Car Dealership

How To Develop A System For A Car Dealership Curriculum Vitae Personal Details Name: Nationality: German Year of birth: 1980 Computer experience since: 2000 Core Competencies Senior Software Developer.Net Software architecture and design (OOA/OOD)

More information

Copyright Notice. 2013 SmartBear Software. All rights reserved.

Copyright Notice. 2013 SmartBear Software. All rights reserved. USER MANUAL Copyright Notice Automated Build Studio, as described in this on-line help system, is licensed under the software license agreement distributed with the product. The software may be used or

More information

Two-Way Data Binding with WinJS By Marcin Kawalerowicz and Craig Berntson, authors of Continuous Integration in.net

Two-Way Data Binding with WinJS By Marcin Kawalerowicz and Craig Berntson, authors of Continuous Integration in.net 1 Two-Way Data Binding with WinJS By Marcin Kawalerowicz and Craig Berntson, authors of Continuous Integration in.net One of the keys to improving applications and productivity is to automate some of the

More information

Continuous Integration Processes and SCM To Support Test Automation

Continuous Integration Processes and SCM To Support Test Automation Continuous Integration Processes and SCM To Support Test Automation SIGIST Conference, July 2013 Gal Fatal Gal.fatal@ATT.com 054-342-3864 AT&T Israel Center of Excellence AT&T Worldwide One of the largest

More information

Effective Team Development Using Microsoft Visual Studio Team System

Effective Team Development Using Microsoft Visual Studio Team System Effective Team Development Using Microsoft Visual Studio Team System Course 6214A: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with the knowledge and

More information

Agile Techniques and Tools. White Paper

Agile Techniques and Tools. White Paper Agile Techniques and Tools White Paper Agile Techniques and Tools Synopsis This section provides an overview of a number of techniques and tools that are commonly used by agile development teams. These

More information

Moft Certified Professional Transcript

Moft Certified Professional Transcript Moft Certified Professional Transcript Last Activity Recorded September 26, 2013 Microsoft Certification ID 5644114 JAMES ELFRED F1 Computing Systems Ltd 3 Kelso Place Upper Bristol Road Bath BA1 3AU jamese@f1comp.co.uk

More information

Download and Installation of MS SQL Server

Download and Installation of MS SQL Server Download and Installation of MS SQL Server To use MS SQL Server and its database, one needs to download the server software and server management software. Fortunately, Microsoft provides a free version

More information

Improving software quality with an automated build process

Improving software quality with an automated build process Software architecture for developers What is software architecture? What is the role of a software architect? How do you define software architecture? How do you share software architecture? How do you

More information

We (http://www.newagesolution.net) have extensive experience in enterprise and system architectures, system engineering, project management, and

We (http://www.newagesolution.net) have extensive experience in enterprise and system architectures, system engineering, project management, and We (http://www.newagesolution.net) have extensive experience in enterprise and system architectures, system engineering, project management, and software design and development. We will be presenting a

More information

Essential Visual Studio Team System

Essential Visual Studio Team System Essential Visual Studio Team System Introduction This course helps software development teams successfully deliver complex software solutions with Microsoft Visual Studio Team System (VSTS). Discover how

More information

Leveraging Rational Team Concert's build capabilities for Continuous Integration

Leveraging Rational Team Concert's build capabilities for Continuous Integration Leveraging Rational Team Concert's build capabilities for Continuous Integration Krishna Kishore Senior Engineer, RTC IBM Krishna.kishore@in.ibm.com August 9-11, Bangalore August 11, Delhi Agenda What

More information

Symplified I: Windows User Identity. Matthew McNew and Lex Hubbard

Symplified I: Windows User Identity. Matthew McNew and Lex Hubbard Symplified I: Windows User Identity Matthew McNew and Lex Hubbard Table of Contents Abstract 1 Introduction to the Project 2 Project Description 2 Requirements Specification 2 Functional Requirements 2

More information

Check Point and Security Best Practices. December 2013 Presented by David Rawle

Check Point and Security Best Practices. December 2013 Presented by David Rawle Check Point and Security Best Practices December 2013 Presented by David Rawle Housekeeping o Mobiles on Silent o No File Alarms planned o Fire exits are in front and behind and down the stairs o Downstairs

More information

Test Driven Development with Continuous Integration: A Literature Review

Test Driven Development with Continuous Integration: A Literature Review Test Driven Development with Continuous Integration: A Literature Review Sheikh Fahad Ahmad Deptt. of Computer Science & Engg. Mohd. Rizwan Beg Deptt. of Computer Science & Engg. Mohd. Haleem Deptt. of

More information

Testing Tools using Visual Studio. Randy Pagels Sr. Developer Technology Specialist Microsoft Corporation

Testing Tools using Visual Studio. Randy Pagels Sr. Developer Technology Specialist Microsoft Corporation Testing Tools using Visual Studio Randy Pagels Sr. Developer Technology Specialist Microsoft Corporation Plan REQUIREMENTS BACKLOG Monitor + Learn Development Collaboration Production Develop + Test Release

More information

Continuous integration for databases using Red Gate tools

Continuous integration for databases using Red Gate tools Whitepaper Continuous integration for databases using Red Gate tools A technical overview Continuous Integration source control develop Dev Dev Dev build test Automated Deployment Deployment package Testing

More information

Continuous Delivery. Ariel Alonso, IPC

Continuous Delivery. Ariel Alonso, IPC Continuous Delivery Ariel Alonso, IPC About Me Ariel Alonso Systems Architect Independent Purchasing Cooperative, Inc. Software Engineer for 15 years Interests Agile & XP Test Driven Development Automation

More information

Quick Start Guide. User Manual. 1 March 2012

Quick Start Guide. User Manual. 1 March 2012 Quick Start Guide User Manual 1 March 2012 This document outlines the steps to install SAMLite system into a single box of server and configure it to run for passive collection (domain login script). This

More information

Developing Database Business Applications using VB.NET

Developing Database Business Applications using VB.NET Developing Database Business Applications using VB.NET Curriculum class designed and written by Ernest Bonat, Ph.D., President Visual WWW, Inc. Visual WWW is a Microsoft Visual Studio Industry Partner

More information

Test Driven Development Part III: Continuous Integration Venkat Subramaniam venkats@agiledeveloper.com http://www.agiledeveloper.com/download.

Test Driven Development Part III: Continuous Integration Venkat Subramaniam venkats@agiledeveloper.com http://www.agiledeveloper.com/download. Test Driven Development Part III: Continuous Integration Venkat Subramaniam venkats@agiledeveloper.com http://www.agiledeveloper.com/download.aspx Abstract In this final part of the three part series on

More information

This document is provided to you by ABC E BUSINESS, Microsoft Dynamics Preferred partner. System Requirements NAV 2016

This document is provided to you by ABC E BUSINESS, Microsoft Dynamics Preferred partner. System Requirements NAV 2016 This document is provided to you by ABC E BUSINESS, Microsoft Dynamics Preferred partner. System Requirements NAV 2016 Page 1 System Requirements NAV 2016 Microsoft Dynamics NAV Windows Client Requirements

More information

My DevOps Journey by Billy Foss, Engineering Services Architect, CA Technologies

My DevOps Journey by Billy Foss, Engineering Services Architect, CA Technologies About the author My DevOps Journey by Billy Foss, Engineering Services Architect, CA Technologies I am going to take you through the journey that my team embarked on as we looked for ways to automate processes,

More information

Continuous Integration & Automated Testing in a multisite.net/cloud Project

Continuous Integration & Automated Testing in a multisite.net/cloud Project Continuous Integration Automated Testing in a multisite.net/cloud Project Entwicklertag 2013 Karlsruhe 5-Jun-2013 Vladislav Kublanov 1 Speaker Vladislav Kublanov Tata Consultancy Services (TCS) Studied

More information

Accelerate Software Delivery with Continuous Integration and Testing. JaSST 08 Tokyo. Jeffrey Fredrick jtf@agitar.com. Agitar Software, 2009 1

Accelerate Software Delivery with Continuous Integration and Testing. JaSST 08 Tokyo. Jeffrey Fredrick jtf@agitar.com. Agitar Software, 2009 1 Accelerate Software Delivery with Continuous Integration and Testing JaSST 08 Tokyo Jeffrey Fredrick jtf@agitar.com Agitar Software, 2009 1 Agenda What is Continuous Integration Continuous Integration

More information

Database Build and Release will get started soon

Database Build and Release will get started soon #sqlinthecity Database Build and Release will get started soon Ernest Hwang Principal Software Engineer, Practice Fusion http://practicefusion.com/careers/ While you re waiting, check out SQL Prompt #sqlinthecity

More information

Engine: Using MSBuild and Team Foundation

Engine: Using MSBuild and Team Foundation Microsoft Inside the Microsoft* Build Engine: Using MSBuild and Team Foundation Build, Second Edition Sayed Hashimi William Bartholomew Table of Contents Foreword x'x Introduction x*1 Part I Overview 1

More information

Continuous Integration with CruiseControl.Net

Continuous Integration with CruiseControl.Net Continuous Integration with CruiseControl.Net Part 2 Paul Grenyer CruiseControl.Net Web Dashboard In part 1 of Continuous Integration with CruiseControl.Net [Part1] I described creating a simple, but effective,

More information

Inmagic Content Server Workgroup Configuration Technical Guidelines

Inmagic Content Server Workgroup Configuration Technical Guidelines Inmagic Content Server Workgroup Configuration Technical Guidelines 6/2005 Page 1 of 12 Inmagic Content Server Workgroup Configuration Technical Guidelines Last Updated: June, 2005 Inmagic, Inc. All rights

More information

Qualifying Microsoft Training for Software Assurance Training Vouchers (SATVs)

Qualifying Microsoft Training for Software Assurance Training Vouchers (SATVs) Qualifying Microsoft Training for Software Assurance Training Vouchers (SATVs) Product Technology Product Number Title License Management, License Management 55071 Course 55071 : Microsoft Software Asset

More information

Modern practices 2.3.2015 02.03.2015 TIE-21100/21106 1

Modern practices 2.3.2015 02.03.2015 TIE-21100/21106 1 Modern practices 2.3.2015 1 Today s lecture Learn what some modern SW engineering topics are about A peek to some research topic of our department 2 3 4 5 6 How the lectures continue? 02.03 Modern practices

More information

ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010

ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010 ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010 QA2010 3 Days INTRODUCTION This three-day, instructor-led course provides students with the knowledge and skills to prevent, detect, manage and avoid

More information

AEGISoft bvba. 0486.402.117 03/257.14.09 Dorpstraat 9, 9190 Stekene. http://www.aegisoft.be

AEGISoft bvba. 0486.402.117 03/257.14.09 Dorpstraat 9, 9190 Stekene. http://www.aegisoft.be AEGISoft bvba Olivier Costa 0486.402.117 03/257.14.09 Dorpstraat 9, 9190 Stekene http://www.aegisoft.be Objective Efficiently growing quality software with a motivated team. Who am i Olivier Costa, born

More information

Business On Line Payments Plus Customer Support Guide

Business On Line Payments Plus Customer Support Guide Business On Line Payments Plus Customer Support Guide This document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. This document may not be reproduced

More information

Hardwarekrav. 30 MB. Memory: 1 GB. Additional software Microsoft.NET Framework 4.0.

Hardwarekrav. 30 MB. Memory: 1 GB. Additional software Microsoft.NET Framework 4.0. Hardwarekrav Bemærk især afsnittet System Requirements for Microsoft Dynamics NAV Server samt System Requirements for Microsoft Dynamics NAV 2013 Database Components for SQL Server. System Requirements

More information

Unit Testing webmethods Integrations using JUnit Practicing TDD for EAI projects

Unit Testing webmethods Integrations using JUnit Practicing TDD for EAI projects TORRY HARRIS BUSINESS SOLUTIONS Unit Testing webmethods Integrations using JUnit Practicing TDD for EAI projects Ganapathi Nanjappa 4/28/2010 2010 Torry Harris Business Solutions. All rights reserved Page

More information

Test What You ve Built

Test What You ve Built Test What You ve Built About Your Presenter IBM i Professional for 16 Years. Primary Focus is IBM i Engineering / Programming Well Versed in 2E. Well Versed in RPG (All Flavors) Well Versed in CM Products

More information

Agility via Software Engineering Practices

Agility via Software Engineering Practices Agility via Software Engineering Practices Agile Tour Montréal - November 2015 Steve Mercier Who am I? I participated in multiple software development projects: from very small (

More information

System Requirements for Microsoft Dynamics NAV 2016

System Requirements for Microsoft Dynamics NAV 2016 System Requirements for Microsoft Dynamics NAV 2016 Microsoft Dynamics NAV 2016 The following sections list the minimum hardware and software requirements to install and run Microsoft Dynamics NAV 2016.

More information

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB)

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Course Number: 4995 Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview

More information

Deploying Web Applications in Enterprise Scenarios

Deploying Web Applications in Enterprise Scenarios Deploying Web Applications in Enterprise Scenarios Note: This PDF was created from a series of web-based tutorials, the first of which is located at the following URL: http://www.asp.net/webforms/tutorials/deployment/deployin

More information

Accelerate Software Delivery

Accelerate Software Delivery Accelerate Software Delivery with Continuous Integration and Testing Kevin Lawrence kevin@agitar.com Agitar Software, 2009 1 Agenda What is Continuous Integration Continuous Integration Practices Impact

More information

SQL Server 2005 Express Installation guide

SQL Server 2005 Express Installation guide SQL Server 2005 Express Installation guide SQL Server 2005 Express Installation guide Page 2 Table of Content Table of Content... 2 Revision History... 2 Introduction... 3 Windows XP / Windows Vista /

More information

Your Technology Partner Offshore and Onsite. Services Portfolio

Your Technology Partner Offshore and Onsite. Services Portfolio Services Portfolio OFFSHORE SOFTWARE DEVELOPMENT SERVICES Product Development for ISVs Custom Application Development for End-clients Application Development Application Maintenance & Support Application

More information

Microsoft Certified Applications Developer (MCAD) exams

Microsoft Certified Applications Developer (MCAD) exams Microsoft Certified Applications Developer (MCAD) exams Numer Egzaminu 72-229 Designing and Implementing Databases with Microsoft SQL Server 2000 Enterprise Edition 72-230 Designing and Implementing Solutions

More information

Upgrades and the Cloud

Upgrades and the Cloud Upgrades and the Cloud Jacob Khan & Bill Murray Solution Architects The Choice for Leaders in Digital The EPiServer Difference Simplicity for complex needs Experience is the new differentiator Insight

More information

System Requirements for Microsoft Dynamics NAV 2016

System Requirements for Microsoft Dynamics NAV 2016 1 of 13 19.01.2016 17:52 System Requirements for Microsoft Dynamics NAV 2016 Microsoft Dynamics NAV 2016 The following sections list the minimum hardware and software requirements to install and run Microsoft

More information

Windows Server8 2008. R2 Hyper-V. Microsoft's Hypervisor. Insiders Guide to. Wiley Publishing, Inc. John Kelbley. Mike Sterling WILEY

Windows Server8 2008. R2 Hyper-V. Microsoft's Hypervisor. Insiders Guide to. Wiley Publishing, Inc. John Kelbley. Mike Sterling WILEY Windows Server8 2008 R2 Hyper-V Insiders Guide to Microsoft's Hypervisor John Kelbley Mike Sterling WILEY Wiley Publishing, Inc. Contents Introduction xix Chapter l Introducing Hyper-V l Scenarios for

More information

System Requirements for Microsoft Dynamics NAV 2016

System Requirements for Microsoft Dynamics NAV 2016 System Requirements for Microsoft Dynamics NAV 2016 Contents System Requirements for Microsoft Dynamics NAV 2016...3 Microsoft Dynamics NAV 2016 Windows Client Requirements...4 Microsoft Dynamics NAV Development

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Realizing Continuous Performance Management

Realizing Continuous Performance Management Your logo here Realizing Continuous Performance Management Steven Haines Quest Software Java Domain Expert February 14, 2008 Agenda State of the Market Cost of Mistakes Test-Driven Development Continuous

More information

MS Reporting Services. Sheldon Wai

MS Reporting Services. Sheldon Wai MS Reporting Services Sheldon Wai Little bit about myself Sheldon Wai Was PowerSchool Administrator at Hong Kong International School Now Senior Systems Manager (PowerSchool) at Yew Chung Education Foundation

More information

Continuous Integration

Continuous Integration Continuous Integration Collaborative development issues Checkout of a shared version of software ( mainline ) Creation of personal working copies of developers Software development: modification of personal

More information

System Requirements for Microsoft Dynamics NAV 2016

System Requirements for Microsoft Dynamics NAV 2016 Page 1 of 7 System Requirements for Microsoft Dynamics NAV 2016 Microsoft Dynamics NAV 2016 The following sections list the minimum hardware and software requirements to install and run Microsoft Dynamics

More information

1Y0-A09. Implementing Citrix XenServer Enterprise Edition 5.0. http://www.examskey.com/1y0-a09.html

1Y0-A09. Implementing Citrix XenServer Enterprise Edition 5.0. http://www.examskey.com/1y0-a09.html Citrix 1Y0-A09 Implementing Citrix XenServer Enterprise Edition 5.0 TYPE: DEMO http://www.examskey.com/1y0-a09.html Examskey Citrix 1Y0-A09 exam demo product is here for you to test the quality of the

More information

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing Installation Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License

More information

Bridging the Gap Between Acceptance Criteria and Definition of Done

Bridging the Gap Between Acceptance Criteria and Definition of Done Bridging the Gap Between Acceptance Criteria and Definition of Done Sowmya Purushotham, Amith Pulla sowmya.sudha@gmail.com, amith.pulla@intel.com Abstract With the onset of Scrum and as many organizations

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

Using Agile with Large, Geographically Dispersed Development Teams

Using Agile with Large, Geographically Dispersed Development Teams Using Agile with Large, Geographically Dispersed Development Teams Ade Miller Development Manager, patterns & practices group (Development Lead, Visual Studio Tools for Office) Microsoft Corporation 2010

More information

Microsoft Dynamics NAV 2015 Hardware and Server Requirements. Microsoft Dynamics NAV Windows Client Requirements

Microsoft Dynamics NAV 2015 Hardware and Server Requirements. Microsoft Dynamics NAV Windows Client Requirements Microsoft Dynamics NAV 2015 Hardware and Server Requirements Microsoft Dynamics NAV Windows Client Requirements Windows client. operating systems Hardware resources Reports Windows 8.1 Professional or

More information

This Deployment Guide is intended for administrators in charge of planning, implementing and

This Deployment Guide is intended for administrators in charge of planning, implementing and YOUR AUTOMATED EMPLOYEE Foxtrot Deployment Guide Enterprise Edition Introduction This Deployment Guide is intended for administrators in charge of planning, implementing and maintaining the deployment

More information

Selecting Automated Testing Tools

Selecting Automated Testing Tools Ensuring Software Success SM Selecting Automated Testing Tools A SmartBear White Paper Selecting the right automated software testing tool involves having a list of requirements to review during your evaluation.

More information

Document Management. Document Management for the Agile Enterprise. AuraTech Pte Ltd

Document Management. Document Management for the Agile Enterprise. AuraTech Pte Ltd Document Management Document Management for the Agile Enterprise AuraTech Pte Ltd 30 Robinson Road, #04-01B Robinson Towers, Singapore 048546 http://www.consultaura.com PH: 6224 9238 Try it! Call AuraTech

More information

ALM: Continuous Integration. José Almeida, Microsoft

ALM: Continuous Integration. José Almeida, Microsoft ALM: Continuous Integration José Almeida, Microsoft Agenda Issues Addressed Getting Started What is CI? CI Practices About Continuous Integration What is Continuous Integration? CI is the thread that ties

More information

Business On Line Payments Plus Guide

Business On Line Payments Plus Guide Business On Line Payments Plus Guide This document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. This document may not be reproduced or further distributed,

More information

VB.NET - WEB PROGRAMMING

VB.NET - WEB PROGRAMMING VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of

More information

Inmagic Content Server v9 Standard Configuration Technical Guidelines

Inmagic Content Server v9 Standard Configuration Technical Guidelines Inmagic Content Server v9.0 Standard Configuration Technical Guidelines 5/2006 Page 1 of 15 Inmagic Content Server v9 Standard Configuration Technical Guidelines Last Updated: May, 2006 Inmagic, Inc. All

More information

Implementing Continuous Integration Testing Prepared by:

Implementing Continuous Integration Testing Prepared by: Implementing Continuous Integration Testing Prepared by: Mr Sandeep M Table of Contents 1. ABSTRACT... 2 2. INTRODUCTION TO CONTINUOUS INTEGRATION (CI)... 3 3. CI FOR AGILE METHODOLOGY... 4 4. WORK FLOW...

More information

Continuous. Integration. in.net MARGIN KAWALEROWICZ CRAIG BERNTSON MANNING. Greenwich. (74 w. long.)

Continuous. Integration. in.net MARGIN KAWALEROWICZ CRAIG BERNTSON MANNING. Greenwich. (74 w. long.) Continuous Integration in.net MARGIN KAWALEROWICZ CRAIG BERNTSON M MANNING Greenwich (74 w. long.) contents preface xv acknowledgments xvii about this book xix about the authors xxii about the cover illustration

More information

JOB DESCRIPTION APPLICATION LEAD

JOB DESCRIPTION APPLICATION LEAD JOB DESCRIPTION APPLICATION LEAD The Application Lead will provide functional support and to expand capabilities in the area of systems configuration. This function provides the initial step in the process

More information

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training Tony Wong 1 Copyright Copyright 2012 2012 Hewlett-Packard Development Development Company, Company, L.P. The L.P. information

More information

DotNet Web Developer Training Program

DotNet Web Developer Training Program DotNet Web Developer Training Program Introduction/Summary: This 5-day course focuses on understanding and developing various skills required by Microsoft technologies based.net Web Developer. Theoretical

More information

Your Technology Partner Offshore and Onsite. Outsourced Software Development Services at

Your Technology Partner Offshore and Onsite. Outsourced Software Development Services at Outsourced Software Development Services at OFFSHORE SOFTWARE DEVELOPMENT SERVICES Product Development for ISVs Custom Application Development for End-clients Application Development Application Maintenance

More information

<Insert Picture Here> Oracle Policy Automation 10.3.1 System Requirements

<Insert Picture Here> Oracle Policy Automation 10.3.1 System Requirements Oracle Policy Automation 10.3.1 System Requirements December 2011 Version 1.01 Oracle Policy Automation Products Version 10.3.1 Overview Product Oracle Policy Modeling Oracle Policy

More information

Dimension Technology Solutions Team 2

Dimension Technology Solutions Team 2 Dimension Technology Solutions Team 2 emesa Web Service Extension and iphone Interface 6 weeks, 3 phases, 2 products, 1 client, design, implement - Presentation Date: Thursday June 18 - Authors: Mark Barkmeier

More information

JetBrains ReSharper 2.0 Overview Introduction ReSharper is undoubtedly the most intelligent add-in to Visual Studio.NET 2003 and 2005. It greatly increases the productivity of C# and ASP.NET developers,

More information

Asta Powerproject Enterprise

Asta Powerproject Enterprise Asta Powerproject Enterprise Overview and System Requirements Guide Asta Development plc Kingston House Goodsons Mews Wellington Street Thame Oxfordshire OX9 3BX United Kingdom Tel: +44 (0)1844 261700

More information

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers NOTE: You can use these instructions to configure instructor and student machines. Software Required Microsoft Access 2007, 2010 MicroStrategy 9.3 Microsoft SQL Server Express 2008 R2 (free from Microsoft)

More information

Version 1.0 Revision 1.01. MODBUS/TCP Ethernet Communication Interface API for the Intelligent Instrumentation WinCE Platform SETUP MANUAL

Version 1.0 Revision 1.01. MODBUS/TCP Ethernet Communication Interface API for the Intelligent Instrumentation WinCE Platform SETUP MANUAL Version 1.0 Revision 1.01 SETUP MANUAL MODBUS/TCP Ethernet Communication Interface API for the DASTEC Corporation 457A Carlisle Drive Herndon, VA USA 20170 Tel: 1-703-709-0515 Fax: 1-703-709-0515 Web Site:

More information

UBS Training Course Catalog

UBS Training Course Catalog 2014 COURSE CATALOG SECURITY COURSES Advanced Ethical Hacking Secure Android Development Secure ios Development C/C++ Programming Security Complete Windows Security Cryptography Overview Designing Secure

More information

Enterprise Deployment

Enterprise Deployment Enterprise Deployment Deployment Overview Version 1.1 Contents 1. Deployment Overview... 3 1.1 System Requirements... 3 2. ES1 Email Invite... 3 3. Web Based Method... 4 4. USB or Network Drive... 4 5.

More information

Course Syllabus. Configuring and Troubleshooting Internet Information Services in Windows Server 2008. Key Data. Audience. At Course Completion

Course Syllabus. Configuring and Troubleshooting Internet Information Services in Windows Server 2008. Key Data. Audience. At Course Completion Key Data Product #: 3728 Course #: 6427A Number of Days: 3 Format: Instructor-Led Certification Exams: 70-643 This course syllabus should be used to determine whether the course is appropriate for the

More information

System Requirements for Microsoft Dynamics NAV 2015

System Requirements for Microsoft Dynamics NAV 2015 System Requirements for Microsoft Dynamics September 2014 Contents... 3 Microsoft Dynamics NAV Windows Client Requirements... 4 Microsoft Dynamics NAV Development Environment Requirements... 5 Microsoft

More information

Installation Guide. Release Management for Visual Studio 2013

Installation Guide. Release Management for Visual Studio 2013 1 Installation Guide Release Management for Visual Studio 2013 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may

More information

Composite C1 Load Balancing - Setup Guide

Composite C1 Load Balancing - Setup Guide Composite C1 Load Balancing - Setup Guide Composite 2014-08-20 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 3 1.1 Who should read this

More information

Image Credit: http://www.flickr.com/photos/warquel/3397541204/

Image Credit: http://www.flickr.com/photos/warquel/3397541204/ 1 2 3 4 Image Credit: http://www.flickr.com/photos/warquel/3397541204/ 5 Fully manual hit build in your IDE of choice and then manually copy files from the developers machine Easy and simple But never

More information

Network installation guide. Version 2.1 24 th February 2015

Network installation guide. Version 2.1 24 th February 2015 Network installation guide. Version 2.1 24 th February 2015 1 Installing Claro software on a network Customers owning a site licence or multi-user licence version of a Claro product are able to distribute

More information

How To Install Vembu Onlinebackup On Windows 7.1.1 (Windows) (Windows 7) (For Windows) (Powerbook) (Winstone) (Vembu) (Program) (Procedure) (

How To Install Vembu Onlinebackup On Windows 7.1.1 (Windows) (Windows 7) (For Windows) (Powerbook) (Winstone) (Vembu) (Program) (Procedure) ( Vembu OnlineBackup Windows client installation user guide Copyright 2014 Vembu Technologies Inc. All Rights Reserved Vembu OnlineBackup in windows machines is currently supported for below versions (Please

More information

Continuous Delivery: implementation considerations. Léon Hagenaars-Keus lhagenaars@sogyo.nl Edwin van Dillen evdillen@sogyo.nl

Continuous Delivery: implementation considerations. Léon Hagenaars-Keus lhagenaars@sogyo.nl Edwin van Dillen evdillen@sogyo.nl Continuous Delivery: implementation considerations Léon Hagenaars-Keus lhagenaars@sogyo.nl Edwin van Dillen evdillen@sogyo.nl SOFTWARE INNOVATORS Done = Released What is Continuous Delivery all about?

More information

Orchestrating Document and Media Management using CMIS

Orchestrating Document and Media Management using CMIS Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark

More information

Which Enterprise Architect Edition Should I Purchase?

Which Enterprise Architect Edition Should I Purchase? Which Enterprise Architect Edition Should I Purchase? Enterprise Architect is available in six editions -,, and Software, Corporate, Professional and Desktop. Functionality for each edition is as follows:.eap

More information

Continuous Integration and Bamboo. Ryan Cutter CSCI 5828 2012 Spring Semester

Continuous Integration and Bamboo. Ryan Cutter CSCI 5828 2012 Spring Semester Continuous Integration and Bamboo Ryan Cutter CSCI 5828 2012 Spring Semester Agenda What is CI and how can it help me? Fundamentals of CI Fundamentals of Bamboo Configuration / Price Quick example Features

More information

System Requirements. Microsoft Dynamics NAV 2016

System Requirements. Microsoft Dynamics NAV 2016 System Requirements Microsoft Dynamics NAV 2016 Contents System Requirements for Microsoft Dynamics NAV 2016... 4 Microsoft Dynamics NAV Windows Client Requirements... 5 Microsoft Dynamics NAV Development

More information

Como configurar o IIS Server para ACTi NVR Enterprise

Como configurar o IIS Server para ACTi NVR Enterprise Como configurar o IIS Server para 20101/1/26 NVR is a Windows based video surveillance software that requires Microsoft IIS (Internet Information Services) 6 or above to operate properly. If you already

More information

Neuron ESB 3.5 introduces Long Running Workflow capabilities!

Neuron ESB 3.5 introduces Long Running Workflow capabilities! Neuron ESB 3.5 introduces Long Running Workflow capabilities! Neuron ESB 3.5 introduces several new features and enhancements, most significant of which is long running, fault tolerant Workflow. Neuron

More information

Automation using Selenium

Automation using Selenium Table of Contents 1. A view on Automation Testing... 3 2. Automation Testing Tools... 3 2.1 Licensed Tools... 3 2.1.1 Market Growth & Productivity... 4 2.1.2 Current Scenario... 4 2.2 Open Source Tools...

More information

Inmagic Content Server Standard and Enterprise Configurations Technical Guidelines

Inmagic Content Server Standard and Enterprise Configurations Technical Guidelines Inmagic Content Server v1.3 Technical Guidelines 6/2005 Page 1 of 15 Inmagic Content Server Standard and Enterprise Configurations Technical Guidelines Last Updated: June, 2005 Inmagic, Inc. All rights

More information

Application Development at Congruent

Application Development at Congruent Application Services are the flagship of Congruent's service offerings. Our expertise in application development is signified by its completeness and excellence in delivery. Congruent covers the complete

More information

Application Development. Application Integration. Application Management

Application Development. Application Integration. Application Management Development Integration Management Core Services AMDARIS are one of Europe's Premier software development companies. With offices in the UK, Romania and Moldova. Development We combine deep technology

More information

I'M MICHAL I'M JANKOWSKI

I'M MICHAL I'M JANKOWSKI I'M MICHAL I'M JANKOWSKI.NET Enthusiast & Professional Developer.NET Enthusiast & Professional Developer ABOUT ME A small introduction about myself Michal Jankowski C# Desktop Developer With Passion Determined

More information