Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

Size: px
Start display at page:

Download "Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems"

Transcription

1 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems Engineer

2 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Contents Section 1: Introduction to PAS for OE and JSDO... 3 Section 2: Configuring PDSOE Demo Machine on Progress Arcade... 4 Launching your PDSOE Demo machine... 4 Configuring the Development Environment... 6 Create Sports Database... 6 Basic Configuration of PDSOE... 7 Add Database Connection Section 3: Exposing OpenEdge Data as REST with PAS for OE Creating a Mobile Project Create the sports project Creating a Business Entity to Expose Data Compile the Service Class File Select the Resources to Make Available Deploying the REST service Testing the Service in the Browser (JSDO Service) Section 4: Using OpenEdge Data with Telerik Platform Template Signing into the Telerik Platform Creating the Mobile App Workspace and Telerik Platform Project Section 5: Advanced JSDO - Paging, Filtering and Sorting on the Backend Bringing the Advanced Sample Code into OpenEdge AppServer Editing the app service Testing the app Section 6: Kendo UI Sample Consuming Advanced JSDO Reviewing the Kendo UI HTML file Testing the KendoUI.html file A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

3 Section 1: Introduction to PAS for OE and JSDO In this hands-on workshop, you will use the recently released open source version of the JSDO library to integrate Pacific Application Server for OpenEdge with the Telerik Kendo UI in mobile/web hybrid apps. Using Progress Developer Studio for OpenEdge (PDSOE), you will expose OpenEdge data as REST services using the new JSDO. You will implement sorting, filtering and batching with the backend data, and consume that data using Kendo UI controls and the Telerik Platform. You will need to have access to: Progress Arcade. Each workshop participant will be provided a unique IP address for use during the session. You will be using an image of OpenEdge (OpenEdge 11.5 PDSOE complete install with Service Pack 01 added.) In order to save time, certain workshop elements will be provided within the work environment as pre-built components. Telerik Platform. Part 3 of this workshop requires use of the Telerik Platform. You will use your existing Telerik Platform account, or create a trial account here: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 3

4 Section 2: Configuring PDSOE Demo Machine on Progress Arcade Virtual machines have been started for this workshop. Each of you will have been provided a unique DNS address by the workshop host that points to a virtual windows server running on Progress Arcade. Launching your PDSOE Demo machine On your laptop, choose Start Accessories Remote Desktop Connection and paste your unique DNS into the Computer field. Click the Connect button. Note: You may need to click the button to the left of Options to change (erase) the domain name. Choose the option to Use another account: Enter \Administrator as the Username, and 2015EmeaPug as the Password, then click OK: 4 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

5 Click the Yes button to say you trust this remote connection: You should now be connected to your personal workshop labs machine running in Progress Arcade. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 5

6 Configuring the Development Environment Create Sports Database 1. Open Proenv usingthe shortcut on your desktop. You can also open Proenv using the Start menu: Start -> All Programs -> Progress -> OpenEdge 11.5 (64-bit) -> Proenv 2. Create a database named sports (from sports2000). At the proenv prompt, enter the commands shown below: - mkdir db - create the db subdirectory - cd db - change directory into the new C:\OpenEdge\WRK\db - prodb sports sports2000 create a new database named sports as a copy of the sports2000 database provided with OpenEdge. - exit close the proenv session 6 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

7 Basic Configuration of PDSOE 3. Open Developer Studio using the desktop shortcut or the Start menu: Start->All Programs->Progress->OpenEdge 11.5 (64-bit)>Developer Studio 4. Input the path for the workspace (C:\workspace) and check the option to Use this as the default. 5. You MAY need to authorize Java by clicking Allow Access: 6. Starting with OpenEdge Progress offers participation in the Customer Experience Improvement Program. For this workshop session, clear (uncheck) the Sign up option and click OK to continue. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 7

8 Close the Welcome Screen, or click Workbench 7. Click Window -> Open Perspective and select OpenEdge Server: 8 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

9 If you don t see the OpenEdge Server perspective in the list, select Other to expand the list: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 9

10 8. In the OpenEdge Server perspective, click on the Servers view at the bottom right. A list of preconfigured servers will appear in the pane. 10 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

11 For the purposes of this workshop, you will need only oepas1 in the server list for this project, so the others will be deleted in this step. 9. Right-click on each server (except oepas1) in the server list, select Delete and click on OK: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 11

12 After you have completed the preceding steps, the Servers view should only contain the server named oepas1 as shown below. Note that system name will be different reflecting your system name. 12 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

13 Add Database Connection In this step you will configure a connection to the database you created earlier. 10. Select Window -> Preferences: 11. Click on the Progress OpenEdge node in the tree view to expand it, choose Database Connections, then click the New button in the upper right: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 13

14 12. You will see a dialog that asks you to enter information about the database. Next to Physical Name click the Browse button: 13. Navigate to C:\OpenEdge\Wrk\db where you created the database earlier. Choose the sports database and click Save: 14 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

15 14. Enter the Connection name Sports, Host name localhost and Service/Port 6060 (any available tcp port could be used): 15. Click Next to take the default values on the remaining configuration dialogs until you reach the screen shown below, and make sure that the Auto-start database server box is checked. Then click Finish. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 15

16 16. You will now see the Sports database connection listed in the database connections screen. Click OK to complete the operation. 17. The last step is to configure the oepas1 app server to use the sports database. Double-click on the oepas1 app server in the servers view (or right-click on the oepas1 app server line and choose Open). You will see the Overview configuration screen. Click on the Open launch configuration link: 16 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

17 18. Select the Databases tab. Choose Show all and then select the Sports database connection. Click Apply and then click OK. 19. You will return to the configuration Overview screen, still in the Server perspective. The development environment is now configured and ready to use. Close the configuration Overview pane: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 17

18 20. You are returned to the Developer Studio Servers perspective: 18 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

19 Section 3: Exposing OpenEdge Data as REST with PAS for OE Creating a Mobile Project In this section you create a Mobile Project. Mobile projects are configured to use JavaScript Data Objects (JSDO). The Mobile project type with its built-in JSDO simplifies the process of exposing OpenEdge services as REST services. The Mobile Project can also be used to create Mobile apps but since this workshop does not cover Mobile app creation, you will remove the option to create an app in one of the steps below. Create the sports project 1. Right-click in Project Explorer and select New->OpenEdge Project. Create the new project named Sports, select the Mobile Project type configuration. 2. Leave Express setup unchecked and click Next: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 19

20 3. Accept the default settings for AVM and layout options, and click Next: 4. Select the oepas1 server if it is not checked, check the box to Publish changes immediately, then click Next: 20 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

21 5. The Service name and relative URI are automatically generated. You are creating a Mobile service to use REST, so make sure that Create a Mobile service is checked for the SportsService, and that oepas1 is selected as the server. Then click Next: 6. You are not creating a mobile app with this project, just the REST service, so uncheck the box for that option. Then click Next: 7. You do not need to change the PROPATH. Accept the default settings and click Next: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 21

22 8. The project will be using the Sports database that you added to the Developer Studio environment. Check the box on the Sports database connection line and click Next. 9. The last screen configures the way that services will be stored and part of how they will be called. Click Finish without making any changes to this screen. 10. Developer Studio creates your Sports project with everything you will need to create and deploy REST services on the Pacific Application Server for OpenEdge: 22 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

23 11. Start the oepas1 server by right-clicking on oepas1 in the Servers view and choosing Start: 12. At the bottom right corner of the PAS for OE screen, you will see that the app server is being started. Do not wait for publish to complete. We will verify if the oepas1 application server started properly. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 23

24 Creating a Business Entity to Expose Data In this section you will create a Business Entity for the Customer table of the Sports database. Later you will expose this Business Entity via your REST service. 13. Right-click on the AppServer folder in the Sports project and select New and then Business Entity: 24 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

25 14. Enter the Business entity name Customer. Accept all of the other suggested default settings and click Next. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 25

26 15. In the top section of the Select schema file screen, you decide which operations to make available to the REST services. Select CRUD, which stands for Create, Read, Update, and Delete. In the second section, you select either a database table or an include file that represents the ProDataSet that you wish to enable for REST. For this workshop example, check Select database table and choose the table named Customer. Click Finish. 26 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

27 Compile the Service Class File 16. Developer Studio creates a new class file called Customer.cls in the AppServer node. This file includes methods for the CRUD operations that will be available to REST. These methods can be modified by inserting custom ABL code if desired but for this workshop, just accept the default code. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 27

28 17. Compile the class code file: Right-click in the editor and choose Compile. 28 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

29 Select the Resources to Make Available 18. In the next steps, you will make the new class file available to the REST server in PAS for OE. In the Project Explorer, expand the Defined Services node. Right-click on SportsService and choose Edit: 19. Accept the default of /SportsService and click Next: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 29

30 20. In the Resources section you can choose which procedures to make available to REST. Check Customer.cls by clicking on the box next to it. Also on this screen, under Sample URI, you will see the actual URI that will be used to call this REST service. 21. Click Finish. 30 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

31 Deploying the REST service 22. A few seconds after pressing Finish on the last step, you will see a message that the oepas1 server is publishing. 23. Wait until the oepas1 server status is Started and Synchronized and the services have been Published: 24. NOTE: If your system has trouble completing the synchronization/publish after a few minutes, rightclick on oepas1 and choose Clean to clean the environment and re-deploy the services. This process will take a little while to complete. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 31

32 Testing the Service in the Browser (JSDO Service) 25. Open the Google Chrome browser. 26. To view all customers: click on the Customer Service under the Basic Backend bookmark, Or enter this URL: If you see the above screen after you press enter on the URL, you have successfully made the Customer table available as a REST service. 32 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

33 27. In Developer Studio, publishing the REST service includes the creation of a JSDO catalog. This catalog documents the service in JSON format. To view the catalog, expand the WebContent folder in your project and open SportsService.json. The JSDO catalog provides the schema of the data that is being passed during REST operations. The catalog can be accessed by using this URL in a browser: The JSDO catalog will need to be retrieved by the calling services. You will reference the catalog URI when you create Telerik samples later in this workshop. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 33

34 Section 4: Using OpenEdge Data with Telerik Platform Template In this section you will use the exposed REST data as the datasource for a Telerik Mobile Application. Telerik has just released a new Progress Data Service template that allows you to quickly create a multiscreen application using Kendo UI components to access OpenEdge data. The template utilizes the JSDO catalog and includes navigation, multiple pages, security (if enabled at the backend), and a list view to display REST data. Signing into the Telerik Platform 1. Open Chrome in your remote Demo machine window. 2. Go to or click on the Telerik Platform shortcut in the Chrome bookmark bar: 3. If you already have a Telerik Platform user/password, simply login and skip to step A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

35 4. If you don t have a Telerik platform account, scroll the Chrome page down and click on Sign up now to start a trial: 5. Enter the information on Create an Account OR link to a supported existing account (Google, Facebook, Microsoft LiveID, and Yahoo). 6. After the Telerik Platform completes loading the introductory tutorial, please click on your name on the top left of the Chrome Page: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 35

36 Creating the Mobile App Workspace and Telerik Platform Project 7. Click on +Create App on the top left of the Chrome page. This will create a Workspace/App for your Telerik Mobile Application: 36 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

37 8. Select Hybrid App, Start from a blank App and enter Sports as the App name. Then, click on the Create app button. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 37

38 9. Click on +Create project on the top left of the Chrome page. Select AppBuilder Hybrid project to create the Telerik Mobile Project for your hybrid application. 38 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

39 10. Select the Progress Data Service template, enter Sports Sample as the name of your project, and click on the Create Project button (you may need to scroll down to see all the options): A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 39

40 11. After the project has been created, double-click on the README.txt file at the bottom of the Project Navigator to view the instructions for using the JSDO template: 12. Please take a moment to read the README.txt instructions. 40 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

41 In the following steps, you will replace the generic references in the template with the specific references for the JSDO you created in earlier sections of this workshop. 13. Select and Copy (CTRL-C) the highlighted area (line 35 to 41) of README.txt illustrated below: 14. Navigate to the jsdosettings.js file within the scripts node on the Project Navigator area and doubleclick on the jsdosettings.js file. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 41

42 15. Select line 1 to line 10 (highlight) on the jsdosettings.js script: 16. Paste the clipboard content (Step 13) on top of the area we selected (Step 15) using CTRL-V. This will replace the original lines in jsdosettings.js with the lines you copied from the README.txt file: 17. Edit the serviceuri and cataloguris (line 3 and 4) to read exactly as follows: "serviceuri": " "cataloguris": " 42 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

43 18. Click on Save in the Telerik text editor to save the changes: 19. Click the down-arrow on the Run menu and select iphone from the drop-down list to see the application executing using the ios simulator: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 43

44 20. Click on the List button on the bottom of the mobile app (you may need to expand the simulation window): 44 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

45 21. You will see a simulation of how the mobile app will display the data from the JSDO datasource on an iphone screen: 22. Close the simulation window when you are finished viewing. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 45

46 Section 5: Advanced JSDO - Paging, Filtering and Sorting on the Backend To implement the advanced JSDO code so that your apps can take advantage of the paging, filtering and sorting features, you must copy the advanced source code files into the AppServer folder in your Developer Studio project. Then you should compile the class file. You also need to edit the app service so that it uses the advanced code, and test the app to see that it works as expected. Bringing the Advanced Sample Code into OpenEdge AppServer To copy the class (.cls) and include files (.i) into the OpenEdge AppServer folder of your project: 1. In your remote Demo desktop, open the folder named Workshop Files. Two sub-folders appear: i. JSDO Advanced backend ii. Kendo UI Advanced Sample 2. Open the folder named JSDO Advanced backend and copy the class (.cls) and include (.i) files that appear in it: i. AdvCustomer.cls This file defines a customized Business Entity class for sorting, filtering and batching. ii. AdvCustomer.i This file contains the dataset definition. 46 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

47 3. Using Developer Studio, in the Project Explorer view, expand the Sports project. Right-click the AppServer menu and select Paste from the context menu to add the code to the project directory: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 47

48 4. Open the AdvCustomer.cls file in Developer Studio (double-click the file in the Project Explorer view.) Compile the class file code by right-clicking within the editor pane and selecting Compile : The code republishes automatically. (This takes a few seconds. Check the status in the Servers tab of the Console pane to see the progress; wait until you see [Synchronized] [Published]. ) 48 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

49 Editing the app service In this section you will edit the app service (in this case, the mobile SportsService) so that it uses the AdvCustomer.cls code. 5. Under the Defined Services node, right-click the service (SportsService) and then click Edit: 6. The Edit Mobile Service window appears. Retain the Service relative URI and click Next. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 49

50 7. Uncheck the Customer.cls box and select the AdvCustomer.cls box, then click Finish: The code republishes automatically. (This takes a few seconds. Check the status in the Servers view to see the progress; wait until you see [Synchronized] [Published]. ) After the code republishes, you can test your mobile app to see if it works as expected. Testing the app To test your app: 8. Open Chrome in the remote Demo session. Open the Advanced Backend bookmark folder. 50 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

51 9. Test the following: i. Customer Filter < 50"} Returns customers with CustNum less than 50: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 51

52 ii. Customer OrderBy: Returns and displays the data by Customer Name: 52 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

53 iii. Customer Paging: 5,"skip":5} Returns at most 5 records (top), skipping the first 5 records (skip): A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 53

54 Section 6: Kendo UI Sample Consuming Advanced JSDO In this part of the workshop, you will edit the Kendo UI HTML file to take advantage of the advanced JSDO code for paging, filtering and sorting. You will modify the Kendo UI code so that the service and catalog URI variables point to the service you created (Sports/SportsService). Then you can perform CRUD (create, read, update, and delete) operations on your data. Reviewing the Kendo UI HTML file To review the Kendo UI HTML file: 1. Open the folder named Workshop Files located on your remote Demo desktop. Two sub-folders appear: i. JSDO Advanced backend ii. Kendo UI Advanced Sample 2. Open the folder named Kendo UI Advanced Sample: An HTML file named Kendo UI appears. 54 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

55 3. Right-click the KendoUI.html file and select Edit with Notepad++: Note: you could use any HTML editor, including Developer Studio, in place of Notepad Notice the variables named serviceuri and cataloguri in lines 128 to 132. Notice that the serverpaging, serverfiltering, serversorting, and batch features are enabled because they are set to true in lines 47 to Save the file. A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 55

56 Testing the KendoUI.html file 6. In Notepad++, click on Run from the menu and select Launch in Chrome. Chrome will open and the Kendo UI Grid appears. Notice that you can modify the sorting (by clicking the column headings) or batching (by clicking the page numbers.) You can also navigate to the beginning or end of the result set, and modify the number of records to display per page. 56 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

57 7. Each batch request results in a request to the backend service. You can check this using the Grid s Inspect element feature. Right-click in the grid to access the context menu: A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 57

58 8. Using Inspect Element, select the Network tab: 9. Change the selected page of data to see the network activity: 10. You can observe the network activity when you change the Sort criteria as well: 58 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

59 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI 59

60 During this session you: Created a Progress Developer Studio project Configured the project to use the Pacific AppServer for OpenEdge and an instance of the Sports sample database Created a Developer Studio mobile project and JSDO to expose OpenEdge data as a REST service Deployed the REST service to the Pacific AppServer Tested your deployed service in a browser Created a mobile app using the Telerik Platform and Kendo UI components Configured the Kendo UI to utilize the OpenEdge Data Service you created Tested additional samples that demonstrated advanced features available when using the JSDO You have now completed the Workshop. Thank you for attending! 60 A Sexy UI for Progress OpenEdge using JSDO and Kendo UI

Installation Instruction STATISTICA Enterprise Server

Installation Instruction STATISTICA Enterprise Server Installation Instruction STATISTICA Enterprise Server Notes: ❶ The installation of STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation installations on each of

More information

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS Notes: STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation

More information

Business Applications for a Mobile World

Business Applications for a Mobile World Business Applications for a Mobile World CRM Lead App Shelley Chase Senior Software Architect 6 th October 2014 Welcome to the Workshop Your Hosts This Workshop Today s Goals Shelley Chase Ricardo Perdigao

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

XStream Remote Control: Configuring DCOM Connectivity

XStream Remote Control: Configuring DCOM Connectivity XStream Remote Control: Configuring DCOM Connectivity APPLICATION BRIEF March 2009 Summary The application running the graphical user interface of LeCroy Windows-based oscilloscopes is a COM Automation

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

ilaw Installation Procedure

ilaw Installation Procedure ilaw Installation Procedure This guide will provide a reference for a full installation of ilaw Case Management Software. Contents ilaw Overview How ilaw works Installing ilaw Server on a PC Installing

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information

Management Utilities Configuration for UAC Environments

Management Utilities Configuration for UAC Environments Management Utilities Configuration for UAC Environments For optimal use of SyAM Management Utilities, Windows client machines should be configured with User Account Control disabled or set to the least

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide Live Maps for System Center Operations Manager 2007 R2 v6.2.1 Installation Guide CONTENTS Contents... 2 Introduction... 4 About This Guide... 4 Supported Products... 4 Understanding Live Maps... 4 Live

More information

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM)

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) Microsoft BitLocker Administration and Monitoring (MBAM) provides a simplified administrative

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

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide Deliver file sharing and synchronization services using Citrix ShareFile Self-paced exercise guide Table of Contents Table of Contents... 2 Overview... 3 Exercise 1: Setting up a ShareFile Account... 6

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Server Installation: ServerTools

Server Installation: ServerTools Server Installation: ServerTools ServerTools Page 1 Table of Contents To Install ServerTools...3 Backup and Restore...6 Purpose...6 Background...6 Requirements...6 Creating a Backup Schedule using the

More information

Debugging Mobile Apps

Debugging Mobile Apps Debugging Mobile Apps Native and Mobile Web Apps Shelley Chase Senior Architect, Progress OpenEdge November 2013 OpenEdge Mobile Value Proposition: Write Once, Run Anywhere Portability with the Benefits

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

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

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task.

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task. Lab 8 User name: Administrator Password: Password1 Contents Exercise 8-1: Assigning a Custom Load Evaluator... 1 Scenario... 1 Configuring a Custom Load Evaluator... 1 Assigning a Load Evaluator to a Server...

More information

SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10

SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 3245 University Avenue, Suite 1122 San Diego, California 92104 USA SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 Document Number: SII-TT-002 Date Issued: July 8,

More information

Lab 5 Using Remote Worklight Server

Lab 5 Using Remote Worklight Server Lab 5 Using Remote Worklight Server Table of Contents 5. Using Remote Worklight Server... 5-3 5.1. Lab Setup...5-4 5.1.1. Delete the mobile app in the Worklight Console... 5-4 5.2. Using the Remote Worklight

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

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

Installation Guide. Novell Storage Manager 3.1.1 for Active Directory. Novell Storage Manager 3.1.1 for Active Directory Installation Guide

Installation Guide. Novell Storage Manager 3.1.1 for Active Directory. Novell Storage Manager 3.1.1 for Active Directory Installation Guide Novell Storage Manager 3.1.1 for Active Directory Installation Guide www.novell.com/documentation Installation Guide Novell Storage Manager 3.1.1 for Active Directory October 17, 2013 Legal Notices Condrey

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS

STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Setting Up ALERE with Client/Server Data

Setting Up ALERE with Client/Server Data Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,

More information

Changing Your Cameleon Server IP

Changing Your Cameleon Server IP 1.1 Overview Technical Note Cameleon requires that you have a static IP address defined for the server PC the Cameleon server application runs on. Even if the server PC has a static IP address, you may

More information

WhatsUp Gold v16.1 Installation and Configuration Guide

WhatsUp Gold v16.1 Installation and Configuration Guide WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

Installing Cobra 4.7

Installing Cobra 4.7 Installing Cobra 4.7 Stand-alone application using SQL Server Express A step by step guide to installing the world s foremost earned value management software on a single PC or laptop. 1 Installing Cobra

More information

Windows Firewall Configuration with Group Policy for SyAM System Client Installation

Windows Firewall Configuration with Group Policy for SyAM System Client Installation with Group Policy for SyAM System Client Installation SyAM System Client can be deployed to systems on your network using SyAM Management Utilities. If Windows Firewall is enabled on target systems, it

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

SSL VPN Setup for Windows

SSL VPN Setup for Windows SSL VPN Setup for Windows SSL VPN allows you to connect from off campus to access campus resources such as Outlook email client, file sharing and remote desktop. These instructions will guide you through

More information

System Center 2012 R2 Lab 5: Application Management

System Center 2012 R2 Lab 5: Application Management System Center 2012 R2 Lab 5: Application Management Hands-On Lab Step-by-Step Guide For the VMs use the following credentials: Username: Contoso\Administrator Password: Passw0rd! Version: 1.5.5 Last updated:

More information

1. Set Daylight Savings Time... 3. 2. Create Migrator Account... 3. 3. Assign Migrator Account to Administrator group... 4

1. Set Daylight Savings Time... 3. 2. Create Migrator Account... 3. 3. Assign Migrator Account to Administrator group... 4 1. Set Daylight Savings Time... 3 a. Have client log into Novell/Local Machine with Administrator Account...3 b. Access Adjust Date/Time...3 c. Make sure the time zone is set to Central Time...3 2. Create

More information

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration Installation Instruction STATISTICA Concurrent Network License with Borrowing Domain Based Registration Notes: ❶ The installation of the Concurrent network version entails two parts: a) a server installation,

More information

Course 2277: Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure: Network Services

Course 2277: Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure: Network Services Course 2277: Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Managing and Monitoring Domain Name System To adjust the TTL value for a zone: 1. Log on with a non-administrative

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

More information

2X ApplicationServer & LoadBalancer Manual

2X ApplicationServer & LoadBalancer Manual 2X ApplicationServer & LoadBalancer Manual 2X ApplicationServer & LoadBalancer Contents 1 URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies,

More information

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 Version 3.2 ArcMail Technology 401 Edwards Street, Suite 1601 Shreveport, LA 71101 Support: (888) 790-9252

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft

More information

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS 2013 SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other

More information

Using LifeSize systems with Microsoft Office Communications Server 2007. Server Setup

Using LifeSize systems with Microsoft Office Communications Server 2007. Server Setup Using LifeSize systems with Microsoft Office Communications Server 2007 This technical note describes the steps to integrate a LifeSize video communications device with Microsoft Office Communication Server

More information

Synchronizer Installation

Synchronizer Installation Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient

More information

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc. WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

XenClient Enterprise Synchronizer Installation Guide

XenClient Enterprise Synchronizer Installation Guide XenClient Enterprise Synchronizer Installation Guide Version 5.1.0 March 26, 2014 Table of Contents About this Guide...3 Hardware, Software and Browser Requirements...3 BIOS Settings...4 Adding Hyper-V

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

WhatsUp Gold v16.2 Installation and Configuration Guide WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

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

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

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

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

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Spector 360 Deployment Guide. Version 7

Spector 360 Deployment Guide. Version 7 Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS data analysis data mining quality improvement web-based analytics Notes STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS 1. The installation of the Concurrent network

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

Microsoft Corporation. Project Server 2010 Installation Guide

Microsoft Corporation. Project Server 2010 Installation Guide Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Installing and Configuring Login PI

Installing and Configuring Login PI Installing and Configuring Login PI Login PI Hands-on lab In this lab, you will configure Login PI to provide performance insights for a Windows Server 2012 R2 Remote Desktop Services installation. To

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

ILTA HANDS ON Securing Windows 7

ILTA HANDS ON Securing Windows 7 Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

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

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Nexio Connectus with Nexio G-Scribe

Nexio Connectus with Nexio G-Scribe Nexio Connectus with Nexio G-Scribe 2.1.2 3/20/2014 Edition: A 2.1.2 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and

More information

Reference and Troubleshooting: FTP, IIS, and Firewall Information

Reference and Troubleshooting: FTP, IIS, and Firewall Information APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

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

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

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

JMC Next Generation Web-based Server Install and Setup

JMC Next Generation Web-based Server Install and Setup JMC Next Generation Web-based Server Install and Setup This document will discuss the process to install and setup a JMC Next Generation Web-based Windows Server 2008 R2. These instructions also work for

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

Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811. in Microsoft Windows Operating Environments

Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811. in Microsoft Windows Operating Environments Implementing a SAS 9.3 Enterprise BI Server Deployment TS-811 in Microsoft Windows Operating Environments Table of Contents Introduction... 1 Step 1: Create a SAS Software Depot..... 1 Step 2: Prepare

More information

Oracle WebLogic Portal

Oracle WebLogic Portal Oracle WebLogic Portal Tutorials Getting Started with WebLogic Portal 10g Release 3 (10.3) September 2008 Oracle WebLogic Portal Tutorials - Getting Started with WebLogic Portal, 10g Release 3 (10.3) Copyright

More information

Important Notes for WinConnect Server VS Software Installation:

Important Notes for WinConnect Server VS Software Installation: Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM LAB: Enterprise Single Sign-On Services LAB: Enterprise Single Sign-On Services 2 TABLE OF CONTENTS HOL: Enterprise Single Sign-On Services...3 Objectives...3 Lab Setup...4 Preparation...5 Exercise 1:

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

More information

Exercise Safe Commands and Audit Trail

Exercise Safe Commands and Audit Trail Exercise Safe Commands and Audit Trail Table of Contents Exercise 1: Secure Objects with Safe Commands...2 Exercise 2: Record User Actions in the Audit Trail... 13 3.1 Setting up the SQL Server for Audit

More information

Sage 300 ERP 2012. Sage CRM 7.1 Integration Guide

Sage 300 ERP 2012. Sage CRM 7.1 Integration Guide Sage 300 ERP 2012 Sage CRM 7.1 Integration Guide This is a publication of Sage Software, Inc. Version 2012 Copyright 2012. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product

More information

603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide

603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide 603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide Christopher Rudolph January 2015 1 Table of Contents Contents... 2 Overview... 3 Scenario... 6 Lab Preparation...

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

More information

ProjectWise Mobile Access Server, Product Preview v1.1

ProjectWise Mobile Access Server, Product Preview v1.1 ProjectWise Mobile Access Server, Product Preview v1.1 BENTLEY SYSTEMS, INCORPORATED www.bentley.com Copyright Copyright (c) 2011, Bentley Systems, Incorporated. All Rights Reserved. Trademark Notice Bentley

More information

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder MX-2300, MX-2600, MX-2700, MX-3100, MX-3501, MX-4501, MX-5500, MX-6200, MX-6201, MX-7000, MX-7001, *MX-M850, *MX-M950,

More information

Office of Information Technology Connecting to Microsoft Exchange User Guide

Office of Information Technology Connecting to Microsoft Exchange User Guide OVERVIEW The Office of Information Technology is migrating its messaging infrastructure from Microsoft Exchange 2003 to Microsoft Exchange 2010. Moving to the latest technology will provide many enhancements

More information

FTP, IIS, and Firewall Reference and Troubleshooting

FTP, IIS, and Firewall Reference and Troubleshooting FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information