Microsoft Dynamics AX Windows 8 App Starter Kit. App Development Guide Version 1.0

Size: px
Start display at page:

Download "Microsoft Dynamics AX Windows 8 App Starter Kit. App Development Guide Version 1.0"

Transcription

1 Microsoft Dynamics AX Windows 8 App Starter Kit App Development Guide Version 1.0

2 Table of Contents Microsoft Dynamics AX Windows 8 App Starter Kit... 1 App Development Guide Version Introduction Building your first Dynamics AX App for Windows Step 1 Decide what your app is great at Step 2 Decide what user activities to support Step 3 - Decide what features to include Development - Building a simple window 8 app that integrates with Dynamics AX 2012 R Step 1- Prepare an AIF service in Dynamics AX Step 2- Create a new Windows Store App Project in Visual Studio Step 3- Configure the Package.appxmanifest Step 4- Create a Service Reference to a Dynamics AX AIF Service Step 5- Consume data from Dynamics AX within a Windows 8 App Step 6- Present data from Dynamics AX within a Windows 8 App Using Blend to enhance the UX of your Windows 8 App Conclusion APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 2 OF 26

3 1. Introduction Before you get started on building your first Dynamics AX app for Windows 8, you will need to setup your development environment. Development environment requirements: Windows 8 Visual Studio Express 2012 and Blend for Visual Studio Dynamics AX 2012 In addition to development tools, a developer license is required to develop and test Windows Store apps. The license is free and Visual studio will walk you through the process of getting a license. More information about developer licenses can be found here. 2. Building your first Dynamics AX App for Windows 8 For this guide we will be following the plan and design steps provided in the Windows Store Apps Dev Center. Before we get started on developing our Dynamics AX app for Windows 8, we must first do some planning. For our first app we will build a companion app that allows Dynamics AX users to take action on Work list notifications Step 1 Decide what your app is great at First we must determine the scope of our app and define the experience goals that will guide us through the rest of the design process. What s your app about? To get started let s make a list of the functionality we want our app to provide to users: Get a list of Work list items from Dynamics AX 2012 Get notifications when new Work list items are created Let the user read the notification messages Let the user take action on items with a workflow What s your app great at? Now that we have an idea of what our app will do, we need to determine our app s great at statement. Examples: My Work list app is great at helping Dynamics AX users stay connected to their business My Work list app is great at helping Dynamics AX users quickly take action on items requiring their attention My Work list app is great at providing decision makers with timely information APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 3 OF 26

4 2.2. Step 2 Decide what user activities to support With our great at statement determined we must now create user flows. The flow represents a set of related interactions that users have with the app to achieve their goals. The flows should be easy to learn and require the fewest interactions possible. What should users be able to do? First we must create a list of the flows for our app. Our Work list app is great at helping Dynamics AX users take action on items requiring their attention. So some of the flows we will want to highlight are: View current Work list items Receive notification when a new Work list item is available to be read View a Work list item message Delete a Work list item Perform an Accept action on a Work list item Perform a Deny action on a Work list item Perform a Reject action on a Work list item 2.3. Step 3 - Decide what features to include Once we have determined what our app will do, we need to take a look at features available in the Windows 8 platform that we want to include. We also need to ensure that each feature implemented aligns with the Windows 8 user experience (UX) guidelines. App Contracts Our Dynamics AX app can participate in app contracts that enable broad, cross-app, cross-feature user flows. Features we will want to include with our Work list App are: Search Let users search through Work list items from anywhere in the system, including from within other apps. Share Let users share Work list item information via Background tasks (Extension) Let the app retrieve notifications from Dynamics AX even when the app is suspended Settings Provide quick in-context access to settings. For example the connection information required to synchronize with Dynamics AX. Detailed information on App contracts and extensions available may be found here APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 4 OF 26

5 Different views and form factors Windows 8 apps by be used on many different form factors with different inputs. In planning the design of the app it will be important to ensure that the user experience is good on both touch and non-touch devices. 3. Development - Building a simple window 8 app that integrates with Dynamics AX 2012 R2 Once you have completed the planning phase, it will be time to get started with development. In this guide we will walk through building a simple App to help you get started with building your own Windows 8 apps that integrate with Dynamics AX Step 1- Prepare an AIF service in Dynamics AX 2012 In order to access data in your Windows 8 App, an AIF service will need to be available to reference. In this example we will build a Windows 8 app that allows a user to view their worklist. First, we need to create a service that exposes the worklist. To begin we need a query which can be used to base the service. Luckily a query already exists in the AOT that will meet our needs. The query is: EventAlertForUser APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 5 OF 26

6 Now that we have a query we can use the AIF Document Service Wizard to create the required service classes. 1. Go to Tools -> Wizards ->AIF Document Service Wizard 2. Step through the wizard and select the query: EventAlertForUser APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 6 OF 26

7 3. Choose the service operations that are required, in this example we will only enable read and find. 4. Once your selections have been made, generate the service classes. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 7 OF 26

8 5. Under your private projects in the AX developer workspace a new project should now exist named: AxdEventAlertForUser 6. In the Dynamics AX 2012 client navigate to System administration->setup->services and Application Integration Framework->Inbound ports APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 8 OF 26

9 7. Create a New port and name it WorkListService. For the Adapter type choose either NetTcp or HTTP. In this example HTTP will be utilized. 8. Under the Service contract customizations tab select Service operations. Select the following service operations: EventAlertForUserService.find EventAlertForUserService.read APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 9 OF 26

10 9. Under the Service contract customizations tab select Data policies. Enable the following fields: Message NotificationSource NotificationType Subject TypeId UserId Visible APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 10 OF 26

11 The schema output should match the following: 10. Under the troubleshooting tab set the logging mode to: All document versions. This will help in case you need to investigate any issues with the service. 11. Once the service is configured activate it using the Activate button. (This may take a few minutes depending on the speed of your environment). APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 11 OF 26

12 12. Once complete an Infolog will pop up, scroll down and ensure that the WorkListService was started. 13. If you are developing with the Dynamics AX 2012 R2 Demo VM 1.5 image, the address generated for the web service is: By following the link the following webpage should display in your web browser: APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 12 OF 26

13 14. If you were able to see the page the new web service has been created and we re ready to proceed to the next step which takes us into Visual Studio Step 2- Create a new Windows Store App Project in Visual Studio 2012 Open up Microsoft Visual Studio 2012 and select the Split App (XAML) template under Visual C# -> Windows Store. Upon the initial creation of the project the solution structure should have the following items: APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 13 OF 26

14 The areas that we will focus on are: References this is where we will create a reference to the Dynamics AX web service that was created earlier. Assets Any images we want to use in our app will be stored here. DataModel In the example we will leverage the sample data model. App.xaml App resources such as the AppName can be found here. ItemsPage.xaml we ll update the look of this page in Blend. Package.appxmanifest This holds the properties of the apps deployment package. 3.3 Step 3- Configure the Package.appxmanifest Let s get started by making a couple changes to the appxmanifest. Right click on the appxmanifest and open it up. From the Application UI page we can set the name for are App, supported rotations, and logos. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 14 OF 26

15 If you chose to use a NetTCP service and plan to use Windows Authentication with your Windows 8 App and Dynamics AX some configuration will be required in the Capabilities tab. Enable the following if your app will use NetTCP: Enterprise Authentication Private Networks (Client & Server) APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 15 OF 26

16 3.4 Step 4- Create a Service Reference to a Dynamics AX AIF Service Let s get started with wiring up our new Windows 8 App to Dynamics AX. First we will need to create a service reference. Since Dynamics AX creates services based on WCF this is very straight forward within Visual Studio. 1. Right click on References from the Solution Explorer and select Add Service Reference. 2. Enter the following address into the form and hit the Go button: vc The two operations that were enabled earlier within Dynamics AX should be visible. Name the service WorkListService and hit OK. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 16 OF 26

17 Once the service has been referenced it should show up in the Solution Explorer under the Service References folder. 3.5 Step 5- Consume data from Dynamics AX within a Windows 8 App Now that are app is connected to the Dynamics AX AIF web service, we re ready to start consuming data. 1. First I am going to create a new class to work in called DynamicsAXConnector. To use the service we need to create an instance of the client object. We ll also need an instance of FindResponse object for the data we ll get back from the service. 2. For our method we need to use an asynchronous call. Windows 8 Apps are take full advantage of threading and asynchronous programming. You notice that this method was created as an async Task and it returns a List. The service call must be performed asynchronously so the method must be defined as async. If you are new to asynchronous programming I recommend reading the following article on MSDN: Asynchronous Programming with Async and Await (C# and Visual Basic). APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 17 OF 26

18 3. Creating the query criteria object is the next step. We must create a QueryCriteria object and a CriteriaElement object. 4. With the query objects created, we can now set the criteria values. It is important to set the DataSourceName correctly. This must be provided for the query to function. 5. Once the criteria has been set the find operation may be executed. Note that the find method was called with await. 6. Once data can come back from the service we will iterate through it and put it in a generic list collection. For the purposes of this example only the Alert worklist messages will be utilized. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 18 OF 26

19 3.6 Step 6- Present data from Dynamics AX within a Windows 8 App We now have data from Dynamics AX 2012 in our Windows 8 app. For this example I am going to re-use the SampleDataSource that was created with our template project. 1. The data has to be synced on an async event. For this example, the call to AX AIF web service has been added to LayoutAwarePage.cs. The method is OnNavigatedTo, this is invoked when a page is about to be displayed in a frame. Before the OnNavigatedTo method can be used to call the service we must turn it into an async method. 2. The following code is added to the OnNaviagedTo method to refresh the data. To temporarily store data a new class was created named AXDataSource. This simple class has a static List which is used to store the worklistitems. 3. Once we have data populated in worklistitems it can be used by the SampleDataSource which is called by the LoadState method of the page. This is called at the end of the OnNavigatedTo event. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 19 OF 26

20 Each page has a LoadState event where logic can be placed that must execute before the page is displayed. For example the ItemsPage.xaml.cs class LoadState method contains logic for populating the view model with sample data. By default the SampleDataSource creates hard coded sample data in the classes constructor: SampleDataSource(). For the example we will populate the first item group with Alert worklist messages from Dynamics AX. The SampleDataSource may be useful for creating proof of concept Windows 8 Apps. The other groups may be easily manipulated since they are built from hard coded data. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 20 OF 26

21 4. Now that data has wired to the SampleData source we can run our Windows 8 App. Visual Studio debug apps on your local machine, a simulator, or a remote machine. The first item group should now display Alerts and the number of messages that were retrieved from Dynamics AX. Note that since the call to query the web service is using await, the items will not display until data has been retrieved. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 21 OF 26

22 If you click on the Alerts, the item split view page will display. At this point message data from Dynamics AX 2012 for alert worklist items will appear. Many of the alert messages lack a message body; the App is only as good as the data. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 22 OF 26

23 4. Using Blend to enhance the UX of your Windows 8 App Next we will take a quick look at some ways to quickly change the look and feel of your Windows 8 app with Blend. 1. Open the example solution in Blend by right clicking on the solution from Solution Explorer and selecting Open in Blend. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 23 OF 26

24 2. Once you are in Blend the UX design may be modified either through the design view or directly in the XAML code. 3. For my example Windows 8 app, I wish to apply a standard background to all of my Apps pages. To do this I need to modify my resource dictionary which is defined in the App.xaml file. The resource dictionary is currently set to use the StandardStytles.xaml file. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 24 OF 26

25 4. At the bottom of the StandardStytles.xaml file the style LayoutRootStyle is defined. Set the background property to an image you wish to have displayed. By default any images used by your app should be saved to the projects Assets folder. 5. Next let s take a look at how to modify the default template used to create new items in the grid view. Right click on the ItemsPage.xaml ItemGridView control from design view in Blend. Select Edit Additional Templates -> Edit Generated items (ItemTemplates)->Edit Current APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 25 OF 26

26 6. The DataTemplate should now be displayed. Here you can modify the look and feel of the items that will be generated in the grid view. 5. Conclusion In this guide we have walked though creating a simple Windows 8 App that integrates with Dynamics AX 2012 R2. Due to the use of the Windows Communication Foundation (WCF), accessing data from Dynamics AX 2012 is simple to do. Windows 8 provides a wonderful new opportunity to build engaging solutions that work great on many different device form factors. This allows users to interact with their data from applications such as Dynamics AX in many new and exciting ways. Have fun building your Windows 8 Apps and be sure to check for the latest version of the Dynamics AX Windows 8 App Starter Kit on CodePlex. APP DEVELOPMENT GUIDE VERSION 1.0 PAGE 26 OF 26

Configuring Microsoft Dynamics AX 2012 Alerts and Email Notifications Using an SMTP Email Relay Server with Office 365

Configuring Microsoft Dynamics AX 2012 Alerts and Email Notifications Using an SMTP Email Relay Server with Office 365 Configuring Microsoft Dynamics AX 2012 Alerts and Email Notifications Using an SMTP Email Relay Server with Office 365 With more AX Server machines being run in the cloud on Microsoft Azure we need a simple

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

GE Measurement & Control. Remote Comms System. Installation and User Reference Guide

GE Measurement & Control. Remote Comms System. Installation and User Reference Guide GE Measurement & Control Remote Comms System Installation and User Reference Guide Contents BENEFITS OF REMOTE COMMS SYSTEM... 1 HOW THE REMOTE COMMS SYSTEM WORKS... 3 COMPONENTS OF REMOTE COMMS SYSTEM...

More information

Contents Notice to Users

Contents  Notice to Users Web Remote Access Contents Web Remote Access Overview... 1 Setting Up Web Remote Access... 2 Editing Web Remote Access Settings... 5 Web Remote Access Log... 7 Accessing Your Home Network Using Web Remote

More information

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see "Deploy Inbox Rules" below.

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see Deploy Inbox Rules below. Configure the E-mail Router After the E-mail Router has been installed, you can configure several aspects of it. Some of these configuration tasks are mandatory. Others are optional in that you use them

More information

Using Application Insights to Monitor your Applications

Using Application Insights to Monitor your Applications Using Application Insights to Monitor your Applications Overview In this lab, you will learn how to add Application Insights to a web application in order to better detect issues, solve problems, and continuously

More information

Tutorial #1: Getting Started with ASP.NET

Tutorial #1: Getting Started with ASP.NET Tutorial #1: Getting Started with ASP.NET This is the first of a series of tutorials that will teach you how to build useful, real- world websites with dynamic content in a fun and easy way, using ASP.NET

More information

Web Remote Access. User Guide

Web Remote Access. User Guide Web Remote Access User Guide Notice to Users 2005 2Wire, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machine-readable form without prior

More information

GETTING STARTED WITH SQL SERVER

GETTING STARTED WITH SQL SERVER GETTING STARTED WITH SQL SERVER Download, Install, and Explore SQL Server Express WWW.ESSENTIALSQL.COM Introduction It can be quite confusing trying to get all the pieces in place to start using SQL. If

More information

Exchange 2013 mailbox setup guide

Exchange 2013 mailbox setup guide Fasthosts Customer Support Exchange 2013 mailbox setup guide This article covers the setup of Exchange 2013 mailboxes in Microsoft Outlook 2013, 2010 and Outlook 2011 for Mac. Contents Exchange 2013 Mailbox

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming Email Setup Guide 1. Entourage 2008 Page 2 2. ios / iphone Page 5 3. Outlook 2013 Page 10 4. Outlook 2007 Page 17 5. Windows Live Mail a. New Account Setup Page 21 b. Change Existing Account Page 25 Entourage

More information

Outlook Express POP Instructions - Bloomsburg University Students

Outlook Express POP Instructions - Bloomsburg University Students 1. Open Outlook Express by clicking Start, All Programs, and Outlook Express. 2. Click on the Tools menu and click Accounts. 1 3. Click on Add Mail 4. Enter your name and click Next. 2 5. Enter your full

More information

Shavlik Patch for Microsoft System Center

Shavlik Patch for Microsoft System Center Shavlik Patch for Microsoft System Center User s Guide For use with Microsoft System Center Configuration Manager 2012 Copyright and Trademarks Copyright Copyright 2014 Shavlik. All rights reserved. This

More information

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7 Microsoft Outlook with Initial Setup of Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access

More information

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013 Hands-On Lab Embracing Continuous Delivery with Release Management for Visual Studio 2013 Lab version: 12.0.21005.1 Last updated: 12/11/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: RELEASE MANAGEMENT OVERVIEW...

More information

Professional Mailbox Email Software Setup Guide

Professional Mailbox Email Software Setup Guide Professional Mailbox Email Software Setup Guide Table of contents Download and Install Microsoft Outlook 2010 or 2011... 2 Enabling access from email software... 4 Setting up Outlook 2010... 6 Before you

More information

Managing Software Updates with System Center 2012 R2 Configuration Manager

Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Microsoft Updates with Configuration Manager 2012 R2 This document is for informational purposes only. MICROSOFT MAKES

More information

TFA Laptop Printing - Windows

TFA Laptop Printing - Windows TFA Laptop Printing - Windows With Print Anywhere Laptop Printing, print from your personal computer to any Print Anywhere device on campus. When a print job is sent from your laptop it will remain in

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

User Guide Release Management for Visual Studio 2013

User Guide Release Management for Visual Studio 2013 User Guide Release Management for Visual Studio 2013 ABOUT THIS GUIDE The User Guide for the release management features is for administrators and users. The following related documents for release management

More information

Quick Scan Features Setup Guide

Quick Scan Features Setup Guide Xerox WorkCentre 7132 Quick Scan Features Setup Guide 701P45042 This guide includes instructions for: Scan to Email on page 1 Scan to Mailbox Setup (Optional) on page 5 Network Scanning Setup (Optional)

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Monitoring Replication

Monitoring Replication Monitoring Replication Article 1130112-02 Contents Summary... 3 Monitor Replicator Page... 3 Summary... 3 Status... 3 System Health... 4 Replicator Configuration... 5 Replicator Health... 6 Local Package

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

Atlas 6.0 Installation Guide

Atlas 6.0 Installation Guide Atlas 6.0 Installation Guide Table of Contents 1 Introduction... 1 1.1 Outline... 1 2 Software Prerequisites for Atlas 6.0... 2 2.1 Atlas Client... 2 2.2 Atlas Server... 2 2.3 For Microsoft Dynamics AX...

More information

Zoho CRM and Google Apps Synchronization

Zoho CRM and Google Apps Synchronization Zoho CRM and Google Apps Synchronization Table of Contents End User Integration Points 1. Contacts 2. Calendar 3. Email 4. Tasks 5. Docs 3 6 8 11 12 Domain-Wide Points of Integration 1. Authentication

More information

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11 Contents I EventSentry Overview Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2 1 Downloads... 2 2 Installation... 3 3 Configuration... 7 Part III Setting up IIS 9 1 Installation... 9 Part

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

HDAccess Administrators User Manual. Help Desk Authority 9.0

HDAccess Administrators User Manual. Help Desk Authority 9.0 HDAccess Administrators User Manual Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition The installation of Lync Server 2010 is a fairly task-intensive process. In this article, I will walk you through each of the tasks,

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

More information

Outlook E-Mail. Step 1: Open and Configure Outlook

Outlook E-Mail. Step 1: Open and Configure Outlook Outlook E-Mail Step 1: Open and Configure Outlook 1. Click the Microsoft Button in the lower left task bar 2. Select All Programs 3. Select Microsoft Office 4. Select Microsoft Outlook 5. Follow the Start

More information

Upgrading User-ID. Tech Note PAN-OS 4.1. 2011, Palo Alto Networks, Inc.

Upgrading User-ID. Tech Note PAN-OS 4.1. 2011, Palo Alto Networks, Inc. Upgrading User-ID Tech Note PAN-OS 4.1 Revision B 2011, Palo Alto Networks, Inc. Overview PAN-OS 4.1 introduces significant improvements in the User-ID feature by adding support for multiple user directories,

More information

CoCreate Manager Server Installation Guide. CoCreate Manager Server Installation Guide 1

CoCreate Manager Server Installation Guide. CoCreate Manager Server Installation Guide 1 CoCreate Manager Server Installation Guide CoCreate Manager Server Installation Guide 1 CoCreate Manager Server Installation Guide 2 Table Of Contents 1. CoCreate Manager Server 2008 4 1.1. Installation

More information

Automating Business Processes Using SharePoint Designer

Automating Business Processes Using SharePoint Designer Automating Business Processes Using SharePoint Designer Jeff MacKenzie Director of Technology Edgewater Technology www.edgewater.com jmackenzie@edgewater.com Contents What is a workflow? Types of SharePoint

More information

SageCRM 6.1. What s New Guide

SageCRM 6.1. What s New Guide SageCRM 6.1 What s New Guide Copyright 2007 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Important Notes for WinConnect Server ES Software Installation:

Important Notes for WinConnect Server ES Software Installation: Important Notes for WinConnect Server ES Software Installation: 1. Only Windows 8/8.1 Enterprise, Windows 8/8.1 Professional (32-bit & 64-bit) or Windows Server 2012 (64-bit) or Windows Server 2012 Foundation

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

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

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Outlook Plugin... 13 Using KiteDrive to Send Large

More information

Fasthosts Internet Parallels Plesk 10 Manual

Fasthosts Internet Parallels Plesk 10 Manual Fasthosts Internet Parallels Plesk 10 Manual Introduction... 2 Before you begin... 2 Logging in to the Plesk control panel... 2 Securing access to the Plesk 10 control panel... 3 Configuring your new server...

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup.

Quick Scan Features Setup Guide. Scan to E-mail Setup. See also: System Administration Guide: Contains details about E-mail setup. Quick Scan Features Setup Guide XE3024EN0-2 This guide includes instructions for: Scan to E-mail Setup on page 1 Scan to Mailbox Setup on page 6 Network Scanning Setup on page 9 Scan to PC Setup on page

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tabs... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

How to Configure a Remote Desktop Licensing Server for vspace 6

How to Configure a Remote Desktop Licensing Server for vspace 6 rev 6.1.12 How to Configure a Remote Desktop Licensing Server for vspace 6 This guide will walk you through the process of creating a RDS Licensing server and then configuring your vspace 6 host to connect

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

NetPortal All your documents, direct to your iphone

NetPortal All your documents, direct to your iphone Copyright Stratospherix 2010 Apple, the Apple logo, ipod, ipod touch, and itunes are trademarks of Apple Inc., registered in the U.S. and other countries. iphone is a trademark of Apple Inc. App Store

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Documented by - Sreenath Reddy G OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Functionality in Microsoft Dynamics AX can be turned on or off depending on license

More information

Getting Started with Telerik Data Access. Contents

Getting Started with Telerik Data Access. Contents Contents Overview... 3 Product Installation... 3 Building a Domain Model... 5 Database-First (Reverse) Mapping... 5 Creating the Project... 6 Creating Entities From the Database Schema... 7 Model-First

More information

ICONICS Using the Azure Cloud Connector

ICONICS Using the Azure Cloud Connector Description: Guide to use the Azure Cloud Connector General Requirement: Valid account for Azure, including Cloud Service, SQL Azure and Azure Storage. Introduction Cloud Connector is a FrameWorX Server

More information

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

Windows Mail POP Instructions - Bloomsburg University Students

Windows Mail POP Instructions - Bloomsburg University Students 1. Open Windows Mail from your Start Menu. 2. Click on the Tools menu and click Accounts. 1 3. Click on Add to add your account. 4. Click on Email Account and then click Next. 2 5. Enter your full name

More information

SharePoint Checklist and Resources

SharePoint Checklist and Resources SharePoint Checklist and Resources Activity Labs for Developer Labs for Administrator Resources Create a re-buildable SharePoint environment Lab : Install SharePoint 2010 Exercise 1: Create Active Directory

More information

Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager

Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager The following instructions work for the District provided Blackberrys from Sprint, but I think it should

More information

Windows Server Update Services 3.0 SP2 Step By Step Guide

Windows Server Update Services 3.0 SP2 Step By Step Guide Windows Server Update Services 3.0 SP2 Step By Step Guide Microsoft Corporation Author: Anita Taylor Editor: Theresa Haynie Abstract This guide provides detailed instructions for installing Windows Server

More information

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions HOSTING Administrator Control Panel / Quick Reference Guide Page 1 of 9 Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions Exchange 2010 Outlook Profile Setup Page 2 of 9 Exchange

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

There are numerous ways to access monitors:

There are numerous ways to access monitors: Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...

More information

Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009

Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009 Microsoft Dynamics AX 2009 Installation Guide Microsoft Corporation Published: November 2009 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your

More information

Configuring your email client to connect to your Exchange mailbox

Configuring your email client to connect to your Exchange mailbox Configuring your email client to connect to your Exchange mailbox Contents Use Outlook Web Access (OWA) to access your Exchange mailbox... 2 Use Outlook 2003 to connect to your Exchange mailbox... 3 Add

More information

STARTER KIT. Infoblox DNS Firewall for FireEye

STARTER KIT. Infoblox DNS Firewall for FireEye STARTER KIT Introduction Infoblox DNS Firewall integration with FireEye Malware Protection System delivers a unique and powerful defense against Advanced Persistent Threats (APT) for business networks.

More information

How To Set Up An Outlook Mailbox On A Windows 2007 (For Free) With A Free Email Account On A Blackberry Or Ipad (For A Free) Or Ipa (For An Ipa) With An Outlook 2007 (Free) Or

How To Set Up An Outlook Mailbox On A Windows 2007 (For Free) With A Free Email Account On A Blackberry Or Ipad (For A Free) Or Ipa (For An Ipa) With An Outlook 2007 (Free) Or Microsoft Exchange Mailbox Email Software Setup Guide Microsoft Exchange Mailbox Setup Guide Setting up a Microsoft Exchange mailbox only takes a few minutes. You can set up any email software to send

More information

www.nexuswebsites.co.uk Professional Mailbox Email Software Setup Guide

www.nexuswebsites.co.uk Professional Mailbox Email Software Setup Guide Professional Mailbox Email Software Setup Guide Table of contents Before you start... 2 Setting up Outlook 2010... 2 Using Autodiscover to configure Outlook 2010... 2 The Autodiscover wizard has not worked...

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com.

700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com. 700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com Email Setup Guide 1. Entourage 2008 Page 2 2. Outlook 2007 Page 5 3. Outlook 2003 Page

More information

Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment

Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment Microsoft Dynamics AX 2012 Developing Solutions for Microsoft Dynamics AX in a Shared AOS Development Environment White Paper This document provides guidance for developing solutions when multiple development

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

Workflow approval via email

Workflow approval via email Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval

More information

Microsoft Project Server Integration with SharePoint 2010

Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server 2010: brings together the business collaboration platform services of SharePoint Server 2010 with structured execution

More information

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Neoteris IVE Integration Guide

Neoteris IVE Integration Guide Neoteris IVE Integration Guide NESD-00090-00 CAY051402 The Secure Email Client upgrade option enables Neoteris IVE users to use standardsbased email clients to access corporate email from remote locations.

More information

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract BizTalk Server 2006 Business Activity Monitoring Microsoft Corporation Published: April 2005 Abstract This paper provides a detailed description of two new Business Activity Monitoring (BAM) features in

More information

ProactiveWatch 2.0 Patch Management and Reporting

ProactiveWatch 2.0 Patch Management and Reporting ProactiveWatch 2.0 Patch Management and Reporting V090908 2009 ProactiveWatch, Inc. All Rights Reserved. Purpose of this Guide... 1 II. Patching View... 1 Main Patching Screen... 2 Filtering by Patch Attribute...

More information

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS Module 4: App Development Essentials Windows, Bing, PowerPoint, Internet Explorer, Visual Studio, WebMatrix, DreamSpark, and Silverlight

More information

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html Microsoft EXAM - 70-518 PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4 Buy Full Product http://www.examskey.com/70-518.html Examskey Microsoft 70-518 exam demo product is here for you to test the

More information

Tivoli Endpoint Manager BigFix Dashboard

Tivoli Endpoint Manager BigFix Dashboard Tivoli Endpoint Manager BigFix Dashboard Helping you monitor and control your Deployment. By Daniel Heth Moran Version 1.1.0 http://bigfix.me/dashboard 1 Copyright Stuff This edition first published in

More information

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application Kony MobileFabric Kony MobileFabric Messaging Demo App QuickStart Guide (Building a Sample Application Apple ios) Release 6.5 Document Relevance and Accuracy This document is considered relevant to the

More information

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to Junction Solutions,

More information

WatchDox for Mac User Guide

WatchDox for Mac User Guide WatchDox for Mac User Guide Version 2.3.0 Confidentiality This document contains confidential material that is proprietary to WatchDox. The information and ideas herein may not be disclosed to any unauthorized

More information

> Define the different phases of K2 development, including: understand, model, build, maintain and extend

> Define the different phases of K2 development, including: understand, model, build, maintain and extend This course concentrates on K2 blackpoint from a SharePoint Site Collection owners perspective, that is, a person who already has a basic understanding of SharePoint concepts and terms before attending

More information

Media Control Server MCS-EX Integration Guide for RTI Control Systems

Media Control Server MCS-EX Integration Guide for RTI Control Systems Media Control Server MCS-EX Integration Guide for RTI Control Systems Version 2.0-1 - Table of Contents Overview... 3 Setting up MCS for RTI Control.... 5 Requirements.... 5 Preparation.... 5 Programming

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

Windows Intune Walkthrough: Windows Phone 8 Management

Windows Intune Walkthrough: Windows Phone 8 Management Windows Intune Walkthrough: Windows Phone 8 Management This document will review all the necessary steps to setup and manage Windows Phone 8 using the Windows Intune service. Note: If you want to test

More information

Scan to E-mail Quick Setup Guide

Scan to E-mail Quick Setup Guide Xerox WorkCentre M118i Scan to E-mail Quick Setup Guide 701P42574 This guide provides a quick reference for setting up the Scan to E-mail feature on the Xerox WorkCentre M118i. It includes procedures for:

More information

Operational Decision Manager Worklight Integration

Operational Decision Manager Worklight Integration Copyright IBM Corporation 2013 All rights reserved IBM Operational Decision Manager V8.5 Lab exercise Operational Decision Manager Worklight Integration Integrate dynamic business rules into a Worklight

More information