ZExplore Development Interface (ZEDI) User Guide Feb 2013

Size: px
Start display at page:

Download "ZExplore Development Interface (ZEDI) User Guide Feb 2013"

Transcription

1 ZExplore Development Interface (ZEDI) User Guide Feb 2013

2 Table of Contents 1 OVERVIEW 3 2 GUI COMPONENTS 4 3 CONNECT TO AN API SERVER CONNECT TO DATA ONTAP SERVER SELECT TRANSPORT TYPE HTTP/HTTPS VFILER OR VSERVER TUNNELING CONNECT TO DATAFABRIC MANAGER SERVER SELECT TRANSPORT TYPE HTTP/HTTPS 8 4 GENERATE XML REQUEST METHODS TO GENERATE XML RIGHT CLICK -> GENERATE GENERATE ARROW BUTTON DRAG-AND-DROP 11 5 EXECUTE AN API VIEW API EXECUTION RESPONSE XML FORMAT TREE FORMAT 13 6 GENERATE SAMPLE CODES 14 7 OTHER FEATURES SAVE & SAVE ALL IMPORT EXPORT RIGHT CLICK ON A WORKFLOW TAB ADDED APIS WORKFLOWS PROMPT TO SAVE UNSAVED WORKFLOWS WHILE QUITTING ZEDI LAUNCHES IN THE SAME STATE/SETTINGS AS IT WAS CLOSED 21 8 MENU FILE EDIT PREFERENCES HELP 23 9 RUN ZEDI ON LINUX 23 2

3 1 Overview ZEDI is a utility with graphical user interface bundled with NetApp Manageability SDK (NMSDK). This utility enables you to test DATA ONTAP APIs and OnCommand Unified Manager APIs. This utility allows you to generate raw XML request for any given API. You can supply necessary arguments in the XML request before invoking the API through HTTP or HTTPS and you can view the response in raw XML format or tree format. Additionally, for a given API, the utility can generate sample codes in Java, Perl, C, C#, Python and Ruby to demonstrate how the said API can be invoked using NMSDK Core APIs. You can choose to include comments (API documentation descriptions) and/or optional parameters while generating the XML request and sample codes. You can generate workflows by sequencing multiple APIs in logical order. It also supports vfiler and Vserver tunneling, which enables a DATA ONTAP API to be invoked directly on a vfiler or a Vserver respectively. 3

4 2 GUI Components Various graphical user interface components of ZEDI are shown below. Generate New Workflow Save current workflow Save all Open workflows Import a Workflow Export Selected Workflow Connect to DATA ONTAP or DataFabric Manager XML Request Editor Execute selected workflow on a connected server XML Response Viewer Connection Tab API explorer Add a value to selected parameter Sample Codes Response in Tree format Generate codes for selected nodes Move the node up Filter APIs displayed using a regular expression Move the node down List of APIs added to currently selected workflow in execute or develop tab Lists all the canned, imported, saved and unsaved workflows Delete the node Filter added APIs using a regular expression Status Bar Take the cursor on an API to see the API documentation. Expand the API to see the list of input and output parameters. Input parameters are preceded by arrow Output parameters are preceded by arrow Red colored arrows indicate mandatory parameters whereas Blue colored arrows indicate optional parameters. 4

5 Note: In some APIs when either one of the two input parameters is required, both these input parameters are marked by Blue color arrow and not Red. 5

6 3 Connect to an API server You can either click the "Connect" button (lightening icon) on the toolbar or select the "Connect" option from the "Preferences" menu to get a popup window as shown below: ZEDI will not automatically decide the server type. You need to select appropriate server type from the radio button. 3.1 Connect to DATA ONTAP server In order to connect to a Data ONTAP server, select the Data ONTAP radio button (marked by default). Enter the storage system hostname or IP address in the input box with the label Server and provide the Username and Password in the corresponding input boxes. Click the Connect button to connect to the storage system. You can also choose to save your connection details and load the saved connection details next time instead of entering the details every time. You can load a saved connection by both double clicking on a saved connection in the Manage connections tab or by selecting a connection and clicking on load. The password field will need to be populated even for a saved connection. You can delete a saved connection. Connections are not saved by default. You need to give the current connection a name and click on Save to store the connection details. You can also set a timeout for the connection in the advanced tab. Once the connection is established, the correct API definitions corresponding to the ONTAPI version will be loaded on the API Explorer. The Status Bar will indicate the connection status and display the hostname, username, the port number, transport protocol and the version information. 6

7 3.1.1 Select Transport type HTTP/HTTPS Click on Advanced button to select the Transport type HTTP For making API invocations using HTTP, select HTTP from the Transport dropdown menu (default is HTTPS). The default HTTP port number (80 for Data ONTAP) is automatically selected as the port for API invocation. In case, the storage system is listening to a different port for HTTP connections, enter the changed port number at the Port field. Uncheck the Use vfiler or Vserver tunneling check-box (it is unchecked by default) when vfiler or Vserver tunneling feature is not being used. Click the Connect button to connect to the storage system using HTTP HTTPS The steps for connecting to a Data ONTAP server using HTTPS is exactly same as those for connecting using HTTP, except for the Transport protocol selection part. You need to choose HTTPS from the Transport drop-down menu. The default port number (443 for Data ONTAP) for HTTPS connection is automatically populated in the Port field. In case, the storage system is not listening to the default port for HTTPS, you can enter the updated port number. 7

8 3.1.2 vfiler or Vserver Tunneling Click on Advanced button to see this option. Vserver - The mechanism of accessing Vserver APIs through a clustermanagement interface is called Vserver tunneling. Cluster administrator can administer Vservers from the Vserver context by using Vserver tunneling in NMSDK. After setting up a functional Vserver or a Vserver with basic network configuration, you can optionally delegate the administration of the Vserver to a Vserver administrator. You can delegate Vserver administration by creating and assigning user accounts either with predefined roles or customized roles. Vserver administrator can directly connect to Vserver IP using the appropriate username and password to execute Vserver APIs. vfiler vfiler tunneling is a Data ONTAP feature that allows you to invoke an ONTAP API on a vfiler through the physical storage system on which the vfiler is contained. This means that in order to execute an API on a vfiler, you need not connect to the vfiler itself (though it is also an option). You can simply connect to the physical storage system and tunnel the API request to the vfiler. This feature is supported from ONTAPI 1.7 onwards. To use this feature, you need to enable the vfiler or Vserver tunneling, which is disabled by default, before you generate and execute an API. Just check the Use vfiler or Vserver tunneling checkbox and provide the vfiler or Vserver hostname or IP address in the input box labeled as vfiler unit or Vserver name. Now, when you execute the API, it will be tunneled through the physical storage system to the vfiler or Vserver unit. 3.2 Connect to DataFabric Manager server For establishing a connection with DataFabric Manager server, select the DataFabric Manager server radio button. You need to provide the DataFabric Manager server hostname or IP address in the input box labeled with Server along with the Username and Password. Click the Connect button to set the connection. ZEDI will automatically determine the DataFabric Manager server version and load the corresponding API definitions on the API Explorer. The Status Bar will indicate the connection status and display the hostname, username, the port number, transport protocol and the version information Select Transport type HTTP/HTTPS Click on Advanced button to select the Transport type. 8

9 HTTP In order to use HTTP for connecting to the DataFabric Manager server, opt for HTTP from the Transport drop-down menu. The default port number (8088) for DataFabric Manager HTTP connection is automatically populated in the Port field. Modify the port number only if the server is listening to a different port number for the given transport protocol HTTPS To connect to a DataFabric Manager server using HTTPS, select HTTPS as the transport protocol in the Transport drop-down menu in the DataFabric Manager Connection Panel. The default port number (8488) for DataFabric Manager HTTPS connection is automatically populated in the Port field. Modify the port number only if the server is listening to a different port number for the given transport protocol. 4 Generate XML Request To generate XML request for an API, you need not connect to an API server. However, to send the XML request to an API server, you do need an active connection with the server (as discussed in Section 3). You can choose any API version (both ONTAPI and DFM API) from the API Explorer drop-down menu, irrespective of whether ZEDI is connected to one or more API servers. Once you choose an API version, corresponding API definitions will be loaded in the API Explorer window. The definitions are loaded in expandable tree format with all the API categories showing up at the top level. Instead of choosing from the API Explorer drop-down menu, if you connect to an API server, ZEDI will automatically load the correct API definitions in the API Explorer window. Alternatively, you can add new API documentation by selecting the Add New Api Document option as shown in the figure below. 9

10 ZEDI will remember the path of the added api document and load it when Remember the path of the API document during subsequent launches is checked. You can find the latest ZEDI API doc at edi. 4.1 Methods to generate XML Right Click -> Generate Depending on the API for which XML input and sample code has to be generated, you can expand the API category from the tree of categories displayed in the "API Explorer" pane. This lists all the APIs falling under the expanded category. You select the API for which XML input and sample code has to be generated and right-click on the API. This brings up a popup menu containing the only item "Generate". 10

11 Click on the "Generate" option. This creates the XML input in the currently selected workflow tab in "Execute" pane. The sample code is also generated at the same time in the currently selected workflow tab in "Develop" pane Generate Arrow Button "Right Arrow" button (hereafter called the "Generate" button) is located beside the drop-down box for API version selection in the "API Explorer" pane. Expand the API category (discussed above in Section 4.1.1), selects the required API and clicks the "Generate" button to generate corresponding XML input in the currently selected workflow tab in "Execute" pane and sample codes in corresponding workflow tab in "Develop" pane. You can use "Ctrl" key to select multiple API and generate the XML inputs and sample codes at the same time. The order in which the APIs are selected will be retained during the generation of XML inputs and sample codes (discussed in more detail in Section 7.4) Drag-and-Drop Drag-and-Drop option for XML input and sample code generation is also provided in ZEDI. In order to use this mechanism, you have to expand the API category (discussed above in Section 4.1.1) and then you can drag the APIs under question and drop it to the currently selected workflow tab in the "Execute" pane to see the generated XML input and sample codes in "Execute" pane and "Develop" pane respectively. 11

12 5 Execute an API If the server is connected, you can execute the API or a series of APIs (i.e. workflow) by clicking the "Execute" button (last icon on the toolbar, next to lightening "Connect" icon) on the toolbar. If there are multiple workflows (identified by the individual tabs under "Execute/Develop" pane), the workflow under currently selected workflow tab will be executed, and not all of them. If there are multiple APIs in the currently executed workflow, each of the APIs will be executed all at once (this is the default behavior which can be changed from the options menu). The results will be updated in the Output (XML/Tree) pane in the order of API invocation. If there is a failure in invocation of API, ZEDI will not stop the invocation of subsequent APIs (if any) unless it is in single invocation mode (see options under preferences). You can see which API failed from the Output pane. Three APIs are listed in the Execute tab above. We can execute them by clicking on Execute button and see the output in XML and Tree format. If you would like to execute multiple APIs in single invocation, you can check execute multiple APIs in single invocation in options under the preferences menu. Please see Section 8.3 for more information. The execution time of the workflow and the number of APIs that executed successfully will be updated on the right side of the Status Bar. 5.1 View API Execution Response All three APIs executed successfully. We can see the output below. 12

13 5.1.1 XML Format To view the raw XML response returned by the API server on executing an API, select the XML tab from the Response Viewer Tabs Tree Format To view the API invocation response in tree format, select the Tree tab from Response Viewer Tabs. 13

14 6 Generate Sample Codes The steps for generating sample codes are same as those for generating XML request (as mentioned in Section 4). However, to view the generated sample codes, you need to select the Develop Tab. The language can be selected and set from the "Preference" menu as shown below: ZEDI supports sample code generation in C, C#, Java, Perl, Python, and Ruby. 14

15 7 Other Features 7.1 Save & Save All You can "Save" the generated workflow by clicking the "Save" button (single floppy disk icon) on the toolbar or the Save option from the File menu. If there are multiple workflows to be saved at the same time, you can click the "Save All" button (three stacked floppy disks icon) on the toolbar or the "Save All" option from the "File" menu as shown below: The workflows are saved as XML files at the Workflows Path location set by you at the "Preferences" menu. Default location is the current working directory of ZEDI. 7.2 Import You can load saved workflows using the "Import" option available on the toolbar and also on the "File" menu. Imported workflows will show up in the under the "Workflows" tab along with canned workflows. On importing a workflow, the XML input structure will be loaded on a new workflow tab under Execute pane and the corresponding sample codes are also auto-generated at the same time and available under the "Develop" tab. An imported workflow 15

16 7.3 Export If you want to save the XML code or sample code for the language set (through Preferences -> Languages as discussed above in Section 6) for current workflow, you can use the "Export" button on the toolbar or use the "Export" option from the "File" menu. This option exports/saves sample code. If you use the export icon on the toolbar and if Develop tab is selected, it will export the language sample code with proper extension (e.g. Java sample code is saved with.java extension) at the location specified by you and if the Execute tab is selected, it will export the XML code. The exported XML code can be imported back to ZEDI. See Section 7.2 for more details. 7.4 Right click on a workflow tab 16

17 When you right click on a workflow tab a menu shows up. The functionality of each item in the menu is as follows: Save Saves the select workflow. See section 7.1 for more details. Save As Saves your workflow to a location of your choice and renames the workflow to a name given by you while saving this workflow. Subsequent saves will save the workflow in this location. Save All Saves all open unsaved workflows. See section 7.1 for more details. Clone is a feature you can use to make a copy of the current tab in a new tab. The same API(s) along with the xml and code is copied on to a new tab. Close Closes the current workflow tab. ZEDI will prompt you to save it if it is unsaved. Close Other Tabs Closes all other workflow tabs except for the selected one. If any of the workflows being closed are unsaved ZEDI will prompt you to save it. Undo Close Tab In case you mistakenly close a workflow tab you can undo that action by this option. If there is no tab closed in current launch session, this option will be disabled. You cannot perform this action for a tab closed in a previous ZEDI launch session. Delete Closes the selected workflow and deletes it from the disk. ZEDI will prompt you to confirm this action. Once confirmed this action is irreversible. If the workflow tab has not been saved then ZEDI will show a prompt asking you if you would like to close the selected tab or cancel this action. Delete All Closes all saved workflows and deletes them from the disk. ZEDI will prompt to confirm this action along with some other options. Import Import a workflow. See section 7.2. Export Export this workflow. See section 7.3. Connect - Connect to a server. See section 3. Execute - Execute the current workflow. See section Added APIs With ZEDI you can generate a series of XML inputs (and hence sample codes) from multiple APIs to generate a workflow. You can use any or all of the methods (discussed above in Section 4 & Section 6) to generate the XML inputs and sample codes for the APIs. You can use "Ctrl" key to select multiple API and generate the XML inputs and sample codes at the same time. The order in which the APIs are selected will be retained during the generation of XML inputs and sample codes. You can add one or more APIs to a workflow having one or more APIs already added to it. Newly added APIs are always appended at the end of existing workflow. 17

18 Added APIs will show up in the "Added APIs" tab (next to "Execute/Develop" pane) as shown below: As seen in the above diagram, the "Added APIs" has the following components (which are also available for "Workflows" tab): Edit Button Insert value for input parameters. See below for more details. Left Arrow Button - This generates the XML input structure and sample codes for the selected API in the current workflow. This button can also be used to duplicate (re-generate) input parameters within an API. Up Arrow Button This moves the selected API up. This button can also be used to move an input parameter up in the list of input parameter within an API. The change is also reflected in the current workflow as well as in the generated sample codes. Down Arrow Button - This moves the selected API down. This button can also be used to move an input parameter up in the list of input parameter within an API. The change is also reflected in the current workflow as well as in the generated sample codes. "X" Button - This deletes the API from the list of the APIs. This button can also be used to delete an input parameter. The change is also reflected in the current workflow as well as in the generated sample codes. Value for Input parameters can be provided in the right pane, which is reflected in both XML and Generated Code. To do so: Right click on the parameter and click on edit. Then enter the value for the parameter in the value field of the window that opens once you click edit. 18

19 It is note-worthy that generating an API multiple times will result in multiple entries of the same API in the "Added APIs List" while retaining the order in which it is regenerated. 7.6 Workflows Sample workflows will be bundled as part of ZEDI. The list of canned workflows will be listed in the "Workflows" pane (beside "Execute/Develop" pane) as shown below: You can select the workflow and then click on the "Generate" button (left arrow in the "Workflows" pane) to generate the XML input structure in "Execute" pane and corresponding sample code in "Develop" pane. The canned workflows cannot be deleted. However, they can be modified and saved as new workflows. Canned workflows will be marked with green flag icon while the custom workflows will be marked with single book icon. Imported workflows are represented with "Two overlapping pages" icon. 19

20 All unsaved workflows have an asterisk (*) suffixed to their name. When you save an unsaved workflow (imported or manually generated), the asterisk disappears immediately to indicate that the workflow is saved. Also, when any change is done in a saved workflow (imported or manually generated), the asterisk appears with the workflow name to show that it is unsaved. 7.7 Prompt to save unsaved workflows while quitting In case you try to quit ZEDI without saving any workflows, ZEDI will prompt you to save (or choose to not save) them. It lists the unsaved workflow(s) with workflow name and the file location to contain the XML content for the workflow. Each workflow name in the list is accompanied by a check-box. By default, all the workflows (check-boxes) are selected. If ZEDI fails to save a workflow due to any reason (say, I/O failure), ZEDI does not exit and throws an error message dialog (not shown here) stating the reason of the failure and the file(s) not saved. ZEDI then displays the "Save Unsaved Workflows" dialog with the list (same or smaller list compared to previous list) of unsaved workflow. Attempt to save the workflows may result in same behavior and you may get into a loop. In such a case, you need to deselect (uncheck) the file(s) causing the 20

21 issue and try to "Save Selected". If even if that fails, you need to press the "Save None, Exit" button. 7.8 ZEDI launches in the same state/settings as it was closed ZEDI remembers the state/settings with which ZEDI was closed previously. When you launch ZEDI next: It uses the same preferred language of code generation. It uses the same Options Settings. It has the same Workflow Path. It is loaded with the same API version. It has the same saved workflow tabs along with its inputs provided if any. It preserves all imported workflows in workflows tab. Please note that ZEDI uses Operating System specific backing store (e.g. registry in Windows). If for some reason these entries are deleted or edited, ZEDI will show an error message and will load with its default settings. 8 Menu 8.1 File New is to generate a new workflow; it has the same function as the New icon (first on toolbar). All other File menu options are discussed above in Section Edit You can clear the Execute or Develop pane using Clear All option. 21

22 8.3 Preferences Various configuration preferences and options are under this Menu. Out of the four menu items currently available, three (Connect, Languages and Workflows Path) have been already discussed in previous sections. The "Options" menu item pops up a window containing the options shown below: By default, inclusion of comments (API element descriptions) is disabled in code generation. To enable this check the Include comments in generated code checkbox in the Options Panel and press Save Changes button. To disable it, uncheck the checkbox and press Save Changes. To include optional parameters in sample code generation, check Include optional elements in code generation checkbox. Press the Save Changes button and generate the sample code to see the included optional elements. This can be disabled by un-checking the said checkbox and pressing Save Changes before generating the sample codes. 22

23 Iterator Comprehension - For iterative APIs, fetches the complete list of iterative results at one instance. It is enabled by default. Iterator Fetch Size sets the maximum number of iterative results that can be fetched at one instance. Multiple APIs in Single Invocation o Sequential Invocation - By default, APIs will execute sequentially (one after another) in ZEDI i.e. in your preferred order it exists in your workflow. Only after the result of the first API is received from the server will ZEDI send the next API. In case any API fails (or for any other reason) you can choose to abort further execution. o Single Invocation When Multiple APIs in Single Invocation option is checked, consider that your request would be sent in one packet to the server. The APIs in the workflow may not execute in your preferred order. 8.4 Help It contains two items as shown below: On selecting the first item, User Guide for ZEDI shows up in a different window. The "About" menu item provides the version information and copyright notice. 9 Run ZEDI on Linux zexplore.jar will be provided (under <nmsdk_root>/zedi/) which Linux users can run with Java to get the full functionality of ZEDI. 23

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Auditing UML Models. This booklet explains the Auditing feature of Enterprise Architect. Copyright 1998-2010 Sparx Systems Pty Ltd

Auditing UML Models. This booklet explains the Auditing feature of Enterprise Architect. Copyright 1998-2010 Sparx Systems Pty Ltd Auditing UML Models Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains the Auditing feature of

More information

Configuring Trend Micro Content Security

Configuring Trend Micro Content Security 9 CHAPTER This chapter describes how to configure the CSC SSM using the CSC Setup Wizard in ASDM and the CSC SSM GUI, and includes the following sections: Information About the CSC SSM, page 9-1 Licensing

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

LepideAuditor Suite for File Server. Installation and Configuration Guide

LepideAuditor Suite for File Server. Installation and Configuration Guide LepideAuditor Suite for File Server Installation and Configuration Guide Table of Contents 1. Introduction... 4 2. Requirements and Prerequisites... 4 2.1 Basic System Requirements... 4 2.2 Supported Servers

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Configuring Network Load Balancing with Cerberus FTP Server

Configuring Network Load Balancing with Cerberus FTP Server Configuring Network Load Balancing with Cerberus FTP Server May 2016 Version 1.0 1 Introduction Purpose This guide will discuss how to install and configure Network Load Balancing on Windows Server 2012

More information

NVMS-1200. User Manual

NVMS-1200. User Manual NVMS-1200 User Manual Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Install and Uninstall... 1 1.2.1 Install the Software... 1 2 Login Software... 3 2.1 Login... 3 2.2 Control Panel Instruction...

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

OnCommand Report 1.2. OnCommand Report User Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S.

OnCommand Report 1.2. OnCommand Report User Guide. NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. OnCommand Report 1.2 OnCommand Report User Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1(408) 822-6000 Fax: +1(408) 822-4501 Support telephone: +1 (888) 463-8277 Web: www.netapp.com

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

5nine Hyper-V Commander

5nine Hyper-V Commander 5nine Hyper-V Commander 5nine Hyper-V Commander provides a local graphical user interface (GUI), and a Framework to manage Hyper-V R2 server and various functions such as Backup/DR, HA and P2V/V2V. It

More information

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 Contents Contents INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 IMPORT UPDATES 12 CUSTOM TEXT FIELDS MAPPING 13

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

Sendspace Wizard Desktop Tool Step-By-Step Guide

Sendspace Wizard Desktop Tool Step-By-Step Guide Sendspace Wizard Desktop Tool Step-By-Step Guide Copyright 2007 by sendspace.com This publication is designed to provide accurate and authoritative information for users of sendspace, the easy big file

More information

JORAM 3.7 Administration & Monitoring Tool

JORAM 3.7 Administration & Monitoring Tool JORAM 3.7 Administration & Monitoring Tool User Guide Author: Alexander Fedorowicz Date: October 26, 2003 Overview The JORAM Administration & Monitoring Tool (jamt) is a graphical user interface which

More information

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email IMAP Settings Manual Our application allows you to access your email in many different ways. For those of you who do not wish to use the Webmail interface, you may also manage your email and custom folder

More information

PowerLogic ION Enterprise 6.0

PowerLogic ION Enterprise 6.0 70002-0298-00 06/2009 PowerLogic ION Enterprise 6.0 Power management software User guide Notices This section describes the symbols used in this guide. Danger This alerts you to things that may cause

More information

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5

JBoss SOAP Web Services User Guide. Version: 3.3.0.M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting

More information

Lab Manual: Using Rational Rose

Lab Manual: Using Rational Rose Lab Manual: Using Rational Rose 1. Use Case Diagram Creating actors 1. Right-click on the Use Case View package in the browser to make the shortcut menu visible. 2. Select the New:Actor menu option. A

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

Ross Video Limited. DashBoard Server and User Rights Management User Manual

Ross Video Limited. DashBoard Server and User Rights Management User Manual Ross Video Limited DashBoard Server and User Rights Management User Manual DashBoard Server and User Rights Management User Manual Ross Part Number: 8351DR-004A-01 Release Date: March 22, 2011. Printed

More information

Section 1: Preface... 1. Introduction... 1 Users... 1 Assumptions... 2 Other Resources... 2 Conventions... 2 Icons... 2 Text... 2

Section 1: Preface... 1. Introduction... 1 Users... 1 Assumptions... 2 Other Resources... 2 Conventions... 2 Icons... 2 Text... 2 Table of Contents Section 1: Preface........................................... 1 Introduction............................................................. 1 Users...................................................................

More information

9 Working With DICOM. Configuring the DICOM Option

9 Working With DICOM. Configuring the DICOM Option 9 Working With DICOM DICOM (Digital Imaging and Communications in Medicine) is a format created by NEMA (National Electrical Manufacturers Association) to aid in the distribution and viewing of medical

More information

McAfee Endpoint Encryption Reporting Tool

McAfee Endpoint Encryption Reporting Tool McAfee Endpoint Encryption Reporting Tool User Guide Version 5.2.13 McAfee, Inc. McAfee, Inc. 3965 Freedom Circle, Santa Clara, CA 95054, USA Tel: (+1) 888.847.8766 For more information regarding local

More information

HOW TO ORGANIZE PICTURES

HOW TO ORGANIZE PICTURES Get started When you upload your pictures to Shutterfly, you can do much more than view them. Our workspace offers tools that let you quickly and easily organize your photos as well. We re going to show

More information

Net Inspector 2015 GETTING STARTED GUIDE. MG-SOFT Corporation. Document published on October 16, 2015. (Document Version: 10.6)

Net Inspector 2015 GETTING STARTED GUIDE. MG-SOFT Corporation. Document published on October 16, 2015. (Document Version: 10.6) MG-SOFT Corporation Net Inspector 2015 GETTING STARTED GUIDE (Document Version: 10.6) Document published on October 16, 2015 Copyright 1995-2015 MG-SOFT Corporation Introduction In order to improve the

More information

Qvis Security Technical Support Field Manual LX Series

Qvis Security Technical Support Field Manual LX Series Table of Contents Page 1: Motion Detection 1.0 Configuring Motion Detection for LX Apollo / LX Zeus DVRs 2 1.1 Motion Playback on LX Apollo / LX Zeus DVRs 3 1.2 Scheduling Motion and Continuous Recording

More information

User Guide. SysMan Utilities. By Sysgem AG

User Guide. SysMan Utilities. By Sysgem AG SysMan Utilities User Guide By Sysgem AG Sysgem is a trademark of Sysgem AG. Other brands and products are registered trademarks of their respective holders. 2013 Sysgem AG, Lavaterstr. 45, CH-8002 Zürich,

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.2 User Manual for Mac OS X Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved. Attix5, 2013 Trademarks

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members ProjectWise Explorer V8i User Manual for Subconsultants & Team Members submitted to Michael Baker International Subconsultants & Team Members submitted by Michael Baker International ProjectWise Support

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

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

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

Watermark Medical Interpreting Physician Access Manual

Watermark Medical Interpreting Physician Access Manual Watermark Medical Interpreting Physician Access Manual 1 Table of Contents Chapter 1: Getting Connected... 3 Chapter 2: Inspecting and Editing a Sleep Study... 6 A. Inspecting a Study... 6 B. Opening a

More information

Introduction. POP and IMAP Servers. MAC1028 June 2007

Introduction. POP and IMAP Servers. MAC1028 June 2007 MAC1028 June 2007 Getting Started with Thunderbird 2.0 For Macintosh OS X Author: John A. Montgomery Adapted to OS X by: Peter Lee Revised by Mitchell Ochi and Deanna Pasternak Introduction...1 POP and

More information

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header.

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header. Using Webmail Technical Manual: User Guide The Webmail Window To save an attachment: 1. Click once on the attachment name. Or, if there are multiple attachments, click the Save icon to save all attachments

More information

Webmail User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header. Printing an Email. Composing a New Email

Webmail User Guide. The Webmail Window. Logging In to Webmail. Displaying and Hiding the Full Header. Printing an Email. Composing a New Email Webmail User Guide Rev: November, 2012 Webmail is supported in the following browsers: Windows Internet Explorer 6, Internet Explorer 7, Firefox 2, and Firefox 3 Mac OSX Safari 2, Safari 3, Firefox 2,

More information

Installation and Operation Manual Portable Device Manager, Windows version

Installation and Operation Manual Portable Device Manager, Windows version Installation and Operation Manual version version About this document This document is intended as a guide for installation, maintenance and troubleshooting of Portable Device Manager (PDM) and is relevant

More information

Direct Storage Access Using NetApp SnapDrive. Installation & Administration Guide

Direct Storage Access Using NetApp SnapDrive. Installation & Administration Guide Direct Storage Access Using NetApp SnapDrive Installation & Administration Guide SnapDrive overview... 3 What SnapDrive does... 3 What SnapDrive does not do... 3 Recommendations for using SnapDrive...

More information

DocumentMall PPDM Upload Link Version 1.0 User s Guide

DocumentMall PPDM Upload Link Version 1.0 User s Guide Version 1.0 User s Guide Copyright 2012 All other trademarks are property of their respective owners. The contents of this User s Guide are subject to change without notice. Visit www.documentmall.com/user

More information

NETWORK PRINT MONITOR User Guide

NETWORK PRINT MONITOR User Guide NETWORK PRINT MONITOR User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

How To Use The Unify Intelligence Center On A Pc Or Macbook Or Macrocessor On A Computer Or Macosade On A Macbook (For Macro Recipebook) On A Mobile Device On A Web Browser On A Desktop Or

How To Use The Unify Intelligence Center On A Pc Or Macbook Or Macrocessor On A Computer Or Macosade On A Macbook (For Macro Recipebook) On A Mobile Device On A Web Browser On A Desktop Or The Unified Intelligence Center interface is organized by dashboards. are web pages that display reports, scheduled reports, sticky notes, and web-based elements, such as URLs and web widgets, that are

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

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

Using Webmail. Document Updated: 9/08. Technical Manual: User Guide. The Webmail Window. Displaying and Hiding the Full Header.

Using Webmail. Document Updated: 9/08. Technical Manual: User Guide. The Webmail Window. Displaying and Hiding the Full Header. Using Webmail Technical Manual: User Guide Webmail is supported in the following browsers: Windows Internet Explorer 6, Internet Explorer 7, Firefox 2, and Firefox 3 Mac OSX Safari 2, Safari 3, Firefox

More information

2) Sharing Projects Made easy by IntelliGantt s Share Wizard, there are three share options to fit the needs of your project.

2) Sharing Projects Made easy by IntelliGantt s Share Wizard, there are three share options to fit the needs of your project. Introduction TeamDirection IntelliGantt solutions allows you and the rest of your project team to collaborate on your projects together. How you would like work together is up to you. The project manager

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

LabTech Remote Tray. Overview. Accessing the Tray. LabTech

LabTech Remote Tray. Overview. Accessing the Tray. LabTech LabTech Remote Tray LABTECH REMOTE TRAY...1 Overview... 1 Accessing the Tray... 1 Customizing the Tray... 2 Branding... 2 Tray Access... 4 Tray Menus... 4 Service Tickets... 6 RSS Feeds... 8 Display Text...

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide PigCHAMP Knowledge Software Enterprise Edition Installation Guide Enterprise Edition Installation Guide MARCH 2012 EDITION PigCHAMP Knowledge Software 1531 Airport Rd Suite 101 Ames, IA 50010 Phone (515)

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

EPM Performance Suite Profitability Administration & Security Guide

EPM Performance Suite Profitability Administration & Security Guide BusinessObjects XI R2 11.20 EPM Performance Suite Profitability Administration & Security Guide BusinessObjects XI R2 11.20 Windows Patents Trademarks Copyright Third-party Contributors Business Objects

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

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Pcounter Web Administrator User Guide - v2014-09-08. Pcounter Web Administrator User Guide Version 1.0

Pcounter Web Administrator User Guide - v2014-09-08. Pcounter Web Administrator User Guide Version 1.0 Pcounter Web Administrator User Guide - v2014-09-08 Pcounter Web Administrator User Guide Version 1.0 Table of Contents Table of Contents... 2 Overview... 3 Installation Prerequisites and Requirements...

More information

ASNA DataGate Studio Working with Connections

ASNA DataGate Studio Working with Connections ASNA DataGate Studio Working with Connections Working with Database Connections... 1 Connection Status... 2 Connection Errors... 2 Creating New Database Connections... 4 Opening and Closing Connections...

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

KPN SMS mail. Send SMS as fast as e-mail!

KPN SMS mail. Send SMS as fast as e-mail! KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.

More information

Content Filtering Client Policy & Reporting Administrator s Guide

Content Filtering Client Policy & Reporting Administrator s Guide Content Filtering Client Policy & Reporting Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION

More information

Administering Cisco ISE

Administering Cisco ISE CHAPTER 8 This chapter describes the administrative activities for the Cisco Identity Services Engine (ISE) and how to perform them. The following topics are covered: Logging In, page 8-1 System Time and

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

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

Exchange Granular Restore Instructional User Guide

Exchange Granular Restore Instructional User Guide Exchange Granular Restore Instructional User Guide www.backup-assist.ca Contents 1. Exchange Granular Restore overview... 2 2. Creating an Exchange backup... 3 3. Exchange Granular Restore... 6 Step 1

More information

Email -- Reading and Printing Email

Email -- Reading and Printing Email Email -- Reading and Printing Email Checking for New Email By default, webmail checks for new email automatically. If you want to manually check for new email, click the Check Email button. Or, click the

More information

Acrobat X Pro Accessible Forms and Interactive Documents

Acrobat X Pro Accessible Forms and Interactive Documents Contents 2 PDF Form Fields 2 Acrobat Form Wizard 5 Enter Forms Editing Mode Directly 5 Create Form Fields Manually 6 Forms Editing Mode 8 Form Field Properties 11 Editing or Modifying an Existing Form

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

VT Technology Management Utilities for Hyper-V (vtutilities)

VT Technology Management Utilities for Hyper-V (vtutilities) VT Technology Management Utilities for Hyper-V (vtutilities) vtutilities provide a local graphical user interface (GUI) to manage Hyper-V. Hyper-V is supported on Windows Server 2008 R2 and Windows Server

More information

pcanywhere Advanced Configuration Guide

pcanywhere Advanced Configuration Guide Introduction The pcanywhere Solution Advanced Configuration Guide is provided to assist customers with advanced features once they have the Symantec Management Platform with pcanywhere Solution installed.

More information

TabletWorks Help Index 1

TabletWorks Help Index 1 TabletWorks Help Index 1 When the driver for your tablet type has been installed, the TabletWorks Control Panel is set up on the Windows Control Panel. The TabletWorks Control Panel is divided into several

More information

UF Health SharePoint 2010 Introduction to Content Administration

UF Health SharePoint 2010 Introduction to Content Administration UF Health SharePoint 2010 Introduction to Content Administration Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 Introduction to SharePoint 2010 2.0 Hours

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

Online Sharing User Manual

Online Sharing User Manual Online Sharing User Manual June 13, 2007 If discrepancies between this document and Online Sharing are discovered, please contact backupfeedback@verizon.net. Copyrights and Proprietary Notices The information

More information

WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern

WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern What this exercise is about... 2 Exercise requirements... 2

More information

NAS 225 Introduction to FTP Explorer

NAS 225 Introduction to FTP Explorer NAS 225 Introduction to FTP Explorer Connect to FTP sites and transfer files A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Use FTP Explorer to connect

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008 StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008 www.starwindsoftware.com Copyright 2008-2012. All rights reserved. COPYRIGHT Copyright 2008-2012. All rights reserved.

More information

PTC Integrity Eclipse and IBM Rational Development Platform Guide

PTC Integrity Eclipse and IBM Rational Development Platform Guide PTC Integrity Eclipse and IBM Rational Development Platform Guide The PTC Integrity integration with Eclipse Platform and the IBM Rational Software Development Platform series allows you to access Integrity

More information

EventTracker: Integrating Imperva SecureSphere

EventTracker: Integrating Imperva SecureSphere EventTracker: Integrating Imperva SecureSphere Publication Date: June 14, 2012 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About This Guide Abstract This guide provides instructions

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

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

Pre-configured AS2 Host Quick-Start Guide

Pre-configured AS2 Host Quick-Start Guide Pre-configured AS2 Host Quick-Start Guide Document Version 2.2, October 19, 2004 Copyright 2004 Cleo Communications Refer to the Cleo website at http://www.cleo.com/products/lexihubs.asp for the current

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

i -CEN S USER S Manual 2007. 08. 13.

i -CEN S USER S Manual 2007. 08. 13. i -CEN S i -CEN'S USER S Manual 2007. 08. 13. i -CEN S Table of Contents Overview of i-cen S software... 4 1 Introduction of i-cen S... 4 2 Key Features... 5 3 Key Benefits... 5 4 System Specification...

More information

WebEx Sharing Resources

WebEx Sharing Resources WebEx Sharing Resources OTS PUBLICATION: WX0 REVISED: 4/8/06 04 TOWSON UNIVERSITY OFFICE OF TECHNOLOGY SERVICES =Shortcut =Advice =Caution Introduction During a WebEx session, the host has the ability

More information

For Introduction to Java Programming, 5E By Y. Daniel Liang

For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information