How to Get AS/400 Net.Data Up and Running

Size: px
Start display at page:

Download "How to Get AS/400 Net.Data Up and Running"

Transcription

1 How to Get AS/400 Net.Data Up and Running By Craig Pelkie If you have any interest in AS/400 Web enablement techniques, you ve probably heard about Net.Data for the AS/400. Net.Data is a described as a macro language, to distinguish it from a compiled language, such as RPG or COBOL. Net.Data macros consist of Net.Data language statements, and usually some HTML and SQL statements. After coding the Net.Data macro, you invoke it from your browser, at which point the macro is interpreted by the AS/400 Net.Data macro processor and the results rendered in your browser. Figure 1 shows a sample query run against an AS/400 database file. Figure 2 shows the complete Net.Data code required to produce the query. The purpose of this article is to show you, step by step, what you need to configure on your AS/400 system so that you can run the sample query. Once you successfully run the query, you can use it as a base for additional Net.Data macros to produce results against your own database files. Figure 1: The sample output from the Net.Data macro. %{ %} %{ Net.Data macro Hello.ndm %} %{ %} %define{ DATABASE = "*LOCAL" DTW_HTML_TABLE = "YES" SHOWSQL = "YES"

2 %} %function(dtw_sql) RUNSQL() { %} select * from qiws.qcustcdt %html(input) { <html> <head> <title>net.data test macro</title> </head> <body> <center> <h1>hello from </center> </body> %} </html> Figure 2: The sample Net.Data macro. HTTP Server Configuration Although learning the Net.Data language itself may take some time and experimentation, perhaps the most frustrating aspect of working with Net.Data is that you need to configure IBM HTTP Server for AS/400 successfully before you get started. Unfortunately, the how-to of configuring HTTP Server is often glossed over, the assumption being that configuration is no big deal. My own experience, and my experience of helping several AS/400 shops get started with Web enablement projects, shows that inability to configure HTTP Server is one of the main problems when getting started. So rather than assume that you already know exactly what you need to do to configure IBM HTTP Server for AS/400 for use with Net.Data, I will show you what you need to do to create a simple but functional HTTP Server configuration. You cannot use AS/400 Net.Data unless you have a working HTTP Sever configuration. My directions are targeted at AS/400 s that are at V4R3 or V4R4. Although Net.Data runs on OS/400 releases back to V3R2, the HTTP Server configuration program underwent a massive change in V4R3. The instructions and figures show a V4R3 configuration. Starting the Configuration Before starting the configuration process, verify that your user profile has *IOSYSCFG (I/O System Configuration) authorization. If it does not, you will need access to an AS/400 user profile that has that level of authorization. There are two techniques you can use to configure IBM HTTP Server for AS/400: The Work with HTTP Configuration (WRKHTTPCFG) command. This uses a primitive line-at-a-time editor which lets you directly enter HTTP Server configuration directives. This is a good choice if you know exactly what

3 directives you need and the syntax, but a poor choice if this is your first attempt at HTTP Server configuration. The browser-based administration and configuration program. This technique is described in this article. Although the browser-based program generates a configuration file for you, with correct directives and syntax, its drawbacks are that is slow and it may take a while to become familiar with the location of its configuration options. I assume that you have a working TCP/IP configuration on your AS/400, and that you have access to a browser that can connect to your AS/400. The browser can be run from a PC, Network Station, or any other platform. The browser must support JavaScript to use the administration and configuration program. You must start the Administration instance of IBM HTTP Server for AS/400 before working with the administration and configuration program. You start that instance by entering the following AS/400 command at an AS/400 command line: STRTCPSVR SERVER(*HTTP) HTTPSVR(*ADMIN) You then start the administration and configuration program by entering a URL like this: where as400_ipaddress is the IP address or TCP/IP host name of your AS/400 system, and 2001 is the port number associated with the Administration instance. If you are just getting started with TCP/IP, I suggest you enter the IP address rather than the AS/400 host name. That way, the browser will be able to connect, even if the host name cannot be resolved to the IP address (by a HOSTS table on a PC or a DNS server). Figure 3 shows the initial page of the Administration program. Depending upon the AS/400 Licensed Program Products you have installed, you may see more items on the page (for example, Firewall for AS/400). Click the IBM HTTP Server for AS/400 link to go to the next page. On that page, click the Configuration and Administration link, which takes you to the page shown in Figure 4.

4 Figure 3: The AS/400 Tasks page is the opening page of the browser-based administration and configuration program. Figure 4: Select the Configurations link to start a new HTTP Sever configuration.

5 Instances and Configurations You configure IBM HTTP Server for AS/400 by selecting links in the left-side navigation frame, as shown in Figure 4. At this point, you need to understand the terminology used with HTTP Server: A Server Instance is started and controlled by the AS/400 commands Start TCP/IP Server (STRTCPSVR) and End TCP/IP Server (ENDTCPSVR). An Instance is based on a Configuration. You can have any number of Server Instances active simultaneously, each with different Web serving characteristics and capabilities. A Configuration is the set of HTTP Server directives that are used to assign certain characteristics to your Web server. Although there is normally a oneto-one correspondence between a Configuration and a Server Instance, it is possible to use the same Configuration in multiple Server Instances (although you would have to override some of the Server Instance parameters, such as the port used, when you start the Instance). In this article, I show how to create a Configuration that will support Net.Data and then create a Server Instance that uses that Configuration. After creating both the Configuration and the Instance, I start the Instance, and then create and run the Net.Data macro. Creating the Configuration To create a Configuration, click the Configuration link, as shown in Figure 4. The navigation frame expands to show options that are available for working with Configurations, as shown in Figure 5. Although IBM HTTP Server ships with a default Configuration named CONFIG, you should create a new Configuration for your test. Click the Create Configuration link shown in Figure 5. The program displays the Create Configuration page, shown in Figure 6. Enter NDTEST as the name of the configuration, and select the option to create an empty configuration. Click Apply to create the empty configuration. The program responds with a message that is displayed near the top of the Web page, indicating that the Configuration was created.

6 Figure 5: Select the Create Configuration option in the navigation frame. Figure 6: Enter the name of the new configuration.

7 Assign a Port Because you might already have Web server Configurations and Instances in use on your AS/400 system, you should assign a unique TCP/IP port number to your new Configuration. By default, Web servers use TCP/IP port 80. For example, you sometimes see a URL specified like this: Because the default port is 80, it is usually omitted from the URL. You have already seen an example of an application that uses a different port: the browser-based administration and configuration program uses port When you use a port other than the default port, you need to enter the port number as part of the URL. By entering the port number, you are connected to a specific Web server Instance. To assign a unique port number to your Configuration, go back to the navigation frame. First, you must verify that your Configuration name is now displayed in the drop-down list box of Configurations (see Figure 7). If the name NDTEST is not displayed, click the down-arrow on the list-box and select that name. You should always verify that the Configuration name you need is shown in the list-box before clicking any of the links in the navigation frame. Figure 7: Select the Basic link in the navigation frame. Click the Basic link to go to the Basic page, shown in Figure 8. Although there are many options on that page, you should only set the Default port option. For my test, I used port Although you can use almost any port number within the range 1024 to 65535, it is traditional to use ports in the 80xx range for HTTP server testing. For example, you might use port 8080, which is easy to remember when you enter the URL. I chose 8081 because I was already using 8080 for another Configuration. If you do not want to use a port in the 80xx range, you should use the AS/400 Work with Service Table Entries (WRKSRVTBLE) command to check for port numbers that are already in use on your AS/400 system, then select a port number

8 that is not used. You should not select a port in the range 0 to 1023, since those port numbers are considered to be reserved for well-known TCP/IP functions. After entering the port number, click the Apply button. The port number is now part of your Configuration. Figure 8: Specify the port number to use in the configuration Request Processing Go back to the navigation frame and click the Request Processing link. The link expands to show options used for request processing. Click the Methods link, shown in Figure 9, to display the Methods page (Figure 10). (Note: although this page looks quite different in the V4R4 version, you will set the same options as shown in Figure 10).

9 Figure 9: Select the Methods link in the Request Processing section of the navigation frame. For HTTP Server, methods are used to indicate the types of services that the Web server will provide. By default, several methods are already enabled, meaning that clients (usually browsers) can make requests of the HTTP Server that will be serviced by one of the selected methods. Net.Data uses the POST method to send data from forms to the Web server. By default, that method is not enabled, so you need to click it to enable it for your Configuration. Leave the other methods set as they are, then click the Apply button.

10 Figure 10: You need to check the POST method for Net.Data. Request Routing You now have to enter request routing directives, which are among the most difficult HTTP Server directives to enter correctly. If you get your Web server Instance up and running and cannot get anything served through it, chances are that the request routing directives are incorrect. That being said, I only use two request routing directives for my sample Net.Data configuration. The purpose of those directives is to indicate to the Web server where resources are located on your AS/400 system. There are two locations that are used in the sample: Library NDTEST. You will create that library in a later step and create a copy of the Net.Data system program in it. Directory NDTEST. You will create that directory in a later step and store the Net.Data macro in it.

11 In the navigation frame, click the Request routing link to display the Request routing Web page (Figure 11). You should carefully study the input options before entering anything, since this page works differently from the previous pages. When you enter request routing directives, you enter one at a time, clicking the Apply button after each entry. When you click Apply, the entry is shown in the list of entries. Figure 11 shows the two request routing directives at the bottom of the list, after the examples. The order of request routing directives is very important, since HTTP Server processes an incoming request with the first request routing directive that matches the request criteria. For this sample, you only need to get the Map directive before the Exec directive, but when you create a more extensive list of request routing directives, you need to carefully verify that the directives are in the correct order. Figure 11: Enter the Map and Exec directives on the Request routing page. You need to enter the following two directives: Action: Map URL template: /netdata/* (enter in lower-case) Replacement file path: /QSYS.LIB/NDTEST.LIB/DB2WWW.PGM/ndtest/* (enter case as shown) Action: Exec URL template: /QSYS.LIB/NDTEST.LIB/* The Map directive is used to map an incoming URL to specific resources in the AS/400 system. In this example, you enter a URL like this:

12 The embedded netdata is expanded to the longer replacement fie path string, meaning that you don t have to type an excessively lengthy URL. The replacement file path is used to identify both the name of the program to be executed (DB2WWW in library NDTEST, which you will soon create), and the path to the Hello.ndm Net.Data macro (the directory ndtest, which you will also create). The Exec directive is used to indicate that incoming requests are allowed to start programs in the NDTEST library. You need to be very careful when you configure HTTP Server so that you do not allow programs to be started in libraries other than those that contain only programs that you want started from a browser. In this case, the program that will be started is the DB2WWW program supplied by IBM, which processes Net.Data macros. Be sure that the Map and Exec directives are correct. You are now done with the NDTEST configuration. Create a Server Instance You now need to create a Server Instance, based on your Configuration. After creating the Instance, you will start the Instance and use it for testing a Net.Data macro. Click the Server Instances link in the navigation frame. The link expands to show options for working with Instances (Figure 12). Select the Create server instance link to display the Create server instance Web page (Figure 13). Enter the name of the Server instance as NDTEST, then select the NDTEST configuration from the drop-down list-box. Click the Create button. You now have a Web server Instance that you can start with the STRTCPSVR command, that will respond to incoming requests on the port that you specified. Enter the command as follows: STRTCPSVR SERVER(*HTTP) HTTPSVR(NDTEST) If you need to make changes to your server Configuration, you should end the server instance (with ENDTCPSVR), make the changes, the restart the Instance with STRTCPSVR. Although there is a Restart option for Web server Instances, there are some options that are not put into effect on a restart. Because ending and then starting the server Instance will always put changes into effect, you might find it advisable to use the end/start technique, rather than spend any time investigating the nuances of restart.

13 Figure 12: Click the Create server instance link in the Server Instances section of the navigation frame.

14 Figure 13: Enter the name of the server instance. Net.Data Configuration You can now configure and test a Net.Data macro. Compared to HTTP Server configuration, Net.Data configuration is simpler. The steps you will follow are: Create library to contain the DB2WWW Net.Data program. Create a directory in the Integrated File System (IFS) for your Net.Data macro. Enter and save the Net.Data macro to the directory. Attempt to launch the macro in your browser. Create a Library for DB2WWW Although you might suppose by looking at the Net.Data source code in Figure 2 that the code is a stand-alone program, the source code is in fact input to another program. It just so happens that the input to the program is used to produce a Web page as output. I point this out because it will help you visualize what happens when you run a Net.Data macro. The program that accepts and processes the Net.Data macro as input is named DB2WWW. This name is from IBM s initial Web-enablement product, which was named DB2WWW. Although that name was indicative of its purpose (WWW enablement for the DB2 database series), the name was not very catchy, whereas Net.Data has a more with-it look and feel.

15 Regardless, IBM ships the DB2WWW program with the AS/400. On AS/400 systems at V4R2 and prior, the program is located in library QTCP. On V4R3 and later systems, the program is in QTCP, QSYSCGI and QHTTPSVR. Regardless of which version of OS/400 you are using, the preferred technique for using this program is to create a library, then use the Create Duplicate Object (CRTDUPOBJ) command to create a copy of the program in your library. The reason for this is because you will allow your Web server Instance to execute the program in your library, rather than in the product library. If you allowed your Instance to execute programs in the product library, you create a potentially larger security exposure, since there are many more programs in the product library. By copying the program to your library, you limit the number of programs that a hacker can access on your system through the Web. For this example, create a library named NDTEST, then copy DB2WWW as follows: If you are on V4R2 or previous, use the CRTDUPOBJ command to copy QTCP/DB2WWW to your library. If you are on V4R3 or later, use the CRTDUPOBJ command to copy QHTTPSVR/DB2WWW to your library. For V4R3 or later, you need to be sure to copy the right version of the program, since PTFs only update the version in QHTTPSVR. You should verify that user profile *PUBLIC or QTMHHTP1 are authorized to program DB2WWW. Use the Edit Object Authority (EDTOBJAUT) command to check the authorization to NDTEST/DB2WWW. You need to grant *USE authority to either or both of those user profiles (user profile QTMHHTP1 is used by HTTP Server for programs that it starts). Create Directory NDTEST You now need to create a directory in the IFS to contain your Net.Data macro. Although it is possible to create and run Net.Data macros from source files in the library file system, there are two reasons why you should not use source files: Serving macros from source files takes about twice as much time as serving from an IFS directory. That is because the text in the source file must be translated from EBCDIC to ASCII as it is served. You have access to better tools (editors) to create and maintain files in the IFS. SEU is a very poor source code editor for a free-format language like Net.Data. Even Windows NotePad is a better editor than SEU for Net.Data. Use the Create Directory (CRTDIR) command to create the directory: CRTDIR DIR('/NDTEST') Enter the Net.Data Macro You can now enter the source code for the Net.Data macro, as shown in Figure 2. If you do not have any other PC editor, use Windows Notepad. (Note: because you will be entering a lot of HTML code in Net.Data macros, you may want to investigate any of the widely available HTML editors available. Generally, you want a simple source code editor, not something like FrontPage that adds a lot of its own source code.) You now need to save the Net.Data macro to the NDTEST directory, as Hello.ndm. Although the file name extension is not significant to Net.Data, the convention is to

16 use ndm (for Net.Data macro ). There are several ways you can save the macro file, depending upon your resources: You can FTP the file from your PC to the directory. If you have IBM Client Access for Windows 95/NT (version V3R2M0 or earlier), you can locate the directory in the Windows Network Neighborhood and save it that way. If you have IBM Client Access Express, you need to start AS/400 NetServer and create a share to the NDTEST directory. You can then save to the share. Each of those methods assumes that you have some level of proficiency with connecting to the AS/400 IFS from your PC. If you get really stuck, you can use the Data Transfer program in Client Access (or other products) to transfer the source file from your PC to a source file, then use the Copy To Stream File (CPYTOSTMF) command on the AS/400 to copy from the source file to the IFS. If you are not familiar with working with the IFS, I suggest that you spend whatever time it takes to become adept with working with it. You will find, as you develop Net.Data macros, that you need to quickly get into a macro, make changes, then test. The time you invest in learning how to work efficiently with the IFS from your PC will be repaid as soon as you start developing real macros (that is, macros that have bugs that need to be fixed). You should check the authorization to the Net.Data macro after you save it to the directory. You can use either the AS/400 command Work with Object Links (WRKLNK) and drill-down to the Net.Data macro file, or use AS/400 Operations Navigator (File Systems, Integrated File System branch) to review and set authorization to the macro file. You need to authorize *PUBLIC or QTMHHTP1 to at least Read (*R) authority. Test the Macro You are now at a point where you can test the macro. Review this checklist to make sure everything is ready: Your Web server Instance is configured and started (use the Work with Subsystem Jobs (WRKSBSJOB) for subsystem QHTTPSVR to verify that server instance NDTEST is started). You have program DB2WWW in library NDTEST. User profile *PUBLIC or QTMHHTP1 is authorized to program NDTEST/DB2WWW. You have macro Hello.ndm in directory NDTEST. Use profile *PUBLIC or QTMHHTP1 have at least Read authorization to file Hello.ndm. Enter the following URL into your browser (adjust the port number, if required): If everything is configured correctly, you should see a Web page similar to Figure 1 in your browser. If you get that page, congratulations. You are now in a position where you can start altering the sample macro to work with some of your data. For example, the first change you can make is to change the SQL SELECT statement so that it selects from one of your files (if the file has a lot of records, you may want to include a WHERE clause to limit the number of records that will be returned).

17 However, you may get an error message of some sort in your browser. At this point, you need to review each of the steps described above to try to determine the source of the error. You can also find more information about working with Net.Data on IBM s Net.Data Web site at Copyright 2003, Craig Pelkie. All Rights Reserved No part of this presentation or the accompanying computer source code may be reproduced or distributed in any form or by any means, or stored in a database or data retrieval system, without the prior written permission of Craig Pelkie, who is the author of the presentation and the computer source code. All computer source code distributed with this presentation, either on diskettes, CD- ROM, or available for downloading from sources such as the Internet is Copyright 2003 Craig Pelkie, All Rights Reserved. The source code is for use in computer programs that you develop for internal use within your company, or for use within programs that you develop for the use of your clients, when such programs are compiled and distributed in an executable computer program such that no part of the source code is readily visible without the aid of a computer program disassembler. No part of the computer source code distributed with this presentation shall be reproduced in source code format, either printed or in electronic format, by you or by others who you allow to have access to the source code. You shall not cause the source code to be stored on any information retrieval system, such as computer Bulletin Board Systems or the Internet. You shall not develop any written articles, books, seminar materials, or other presentations that include the source code provided on the diskettes accompanying this manual or within the manual itself. For any questions regarding your rights and responsibilities using the computer source code distributed with this presentation, contact Craig Pelkie, Rochester Initiative, who is the owner of the source code. LIMITATION OF LIABILITY AND DISCLAIMER OF WARRANTY No representation is made that any of the programs, computer source code, commands, or configurations described and depicted in this manual and on the computer source code accompanying this presentation are error-free and suitable for any application that you may develop. Craig Pelkie makes no warranty of any kind, expressed or implied, including the warranties of merchantability or fitness for a particular purpose, with regard to the information, examples, and computer source code presented in this presentation and on the accompanying diskettes. Everything provided in this manual and on the accompanying diskettes is provided as is. Craig Pelkie shall not be liable in any event for incidental or consequential damages or any other claims, pursuant to your use of any of the techniques presented in this presentation, or your use of the computer source code in programs that you develop, even if Craig Pelkie has been advised of the possibility of such damages. You are responsible for testing any and all programs, configurations, commands, and procedures presented in this manual prior to using the programs, configurations, commands, and procedures with important user data. You must ensure that adequate and sufficient backup of important user data is available, in the event that recovery of the important user data is required.

Using the VisualAge for Java WebSphere Test Environment

Using the VisualAge for Java WebSphere Test Environment Using the VisualAge for Java WebSphere Test Environment By Craig Pelkie Many iseries 400 shops are starting to move their development efforts to web enablement using WebSphere Application Server (WAS).

More information

Craig Pelkie Bits & Bytes Programming, Inc.

Craig Pelkie Bits & Bytes Programming, Inc. Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com Configure iseries NetServer and work with Folders in the IFS Edition NETSERVER_20020219 Published by Bits & Bytes Programming, Inc. Valley Center,

More information

Doing Subfiles in Net.Data

Doing Subfiles in Net.Data Doing Subfiles in Net.Data By Craig Pelkie One of the most frequent questions I hear about Net.Data is, how do you make it work like a subfile? Practically all AS/400 programmers are familiar with DDS

More information

Lotus esuite Workplace for IBM Network Station Manager for AS/400 Date: December 8, 1998

Lotus esuite Workplace for IBM Network Station Manager for AS/400 Date: December 8, 1998 Lotus esuite Workplace for IBM Network Station Manager for AS/400 Date: December 8, 1998 TABLE OF CONTENTS ----------------- ----------------- -Prerequisites -Installation -Migration -Auto-configuration

More information

INDEX. Note: Boldface numbers indicate illustrations 333

INDEX. Note: Boldface numbers indicate illustrations 333 A (Anchor) tag, 12 access logs, CGI programming and, 61-62 ACTION, 105 ADD, 26 Add Binding Directory Entry (ADDBNDDIRE), CGI programming and, 57 Add Library List Entry (ADDLIBLE), CGI programming and,

More information

Cool things in Navigator for IBM i to be a Rock Star Administrator

Cool things in Navigator for IBM i to be a Rock Star Administrator Cool things in Navigator for IBM i to be a Rock Star Administrator itech Solutions because IBM i (AS/400s) don t come with System Administrators Pete Massiello itech Solutions pmassiello@itechsol.com 203-744-7854

More information

One Identity Manager Administration Guide for Connecting to SharePoint

One Identity Manager Administration Guide for Connecting to SharePoint One Identity Manager 8.0.2 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

iresetme Version 2.27 As of January 2017 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983

iresetme Version 2.27 As of January 2017 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 iresetme Version 2.27 As of January 2017 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 Phone: (518) 897-5002 FAX: (518) 897-5003 E-mail: Sales@Kisco.com WWW: http://www.kisco.com

More information

IBM Application Runtime Expert for i

IBM Application Runtime Expert for i IBM Application Runtime Expert for i Tim Rowe timmr@us.ibm.com Problem Application not working/starting How do you check everything that can affect your application? Backup File Owner & file size User

More information

One Identity Active Roles 7.2. Web Interface Administrator Guide

One Identity Active Roles 7.2. Web Interface Administrator Guide One Identity Active Roles 7.2 Web Interface Administrator Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

edix 2.2 Server Installation Guide XTRMX January 2018 XTRMX.com/edix

edix 2.2 Server Installation Guide XTRMX January 2018 XTRMX.com/edix edix 2.2 Server Installation Guide January 2018.com/edix Remote Editing Proxy-free workflow Integrated with Adobe Premiere Pro Audio Support up to 16 tracks Storage agnostic LTD. VERSION INFORMATION Version

More information

iresetme Version 2.01 As of August 2014 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983

iresetme Version 2.01 As of August 2014 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 iresetme Version 2.01 As of August 2014 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 Phone: (518) 897-5002 FAX: (518) 897-5003 E-mail: Sales@Kisco.com WWW: http://www.kisco.com

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Dynamics ODBC REFERENCE Release 5.5a

Dynamics ODBC REFERENCE Release 5.5a Dynamics ODBC REFERENCE Release 5.5a Copyright Manual copyright 1999 Great Plains Software, Inc. All rights reserved. This document may not, in whole or in any part, be copied, photocopied, reproduced,

More information

One Identity Active Roles 7.2. Web Interface User Guide

One Identity Active Roles 7.2. Web Interface User Guide One Identity Active Roles 7.2 Web Interface User Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements.

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements. Toad Data Point Version 3.4 New in This Release November 08, 2013 Contents Toad Data Point - Professional Edition Toad Data Point - Base and Professional Editions Idea Pond Toad Data Point - Professional

More information

WebReport/i. Report Intranet Feature. Version 12. As of May Kisco Information Systems 89 Church Street Saranac Lake, New York 12983

WebReport/i. Report Intranet Feature. Version 12. As of May Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 WebReport/i Report Intranet Feature Version 12 As of May 2012 Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 Phone: (518) 897-5002 FAX: (518) 897-5003 E-mail: Sales@Kisco.com WWW:

More information

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite One Identity Manager 8.0.2 Administration Guide for Connecting Oracle E- Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Network Station Manager V2R1 Setup Wizard for AS/400

Network Station Manager V2R1 Setup Wizard for AS/400 Access for today, flexibility for tomorrow Network Station Manager V2R1 Setup Wizard for AS/400 October 29, 1999 What is the AS/400 Setup Wizard? The wizard is a plug-in to AS/400 Operations Navigator

More information

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

More information

Configuring IBM's Network Station 1000 for Java Applications by Paul Conte A22 32 MB Token-Ring

Configuring IBM's Network Station 1000 for Java Applications by Paul Conte A22 32 MB Token-Ring 1 of 6 5/24/00 1:00 PM Configuring IBM's Network Station 1000 for Java Applications by Paul Conte AS400 Network, July 1999 Article ID: 2906 Department: Java Enterprise Solutions/E-Developer Newsletter

More information

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface One Identity Manager 8.0 Administration Guide for Connecting to a Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems One Identity Manager 8.0 Administration Guide for Connecting Unix- Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

OmniFind, Part II: Integrating OmniFind Text Search Server with DB2 Web Query

OmniFind, Part II: Integrating OmniFind Text Search Server with DB2 Web Query OmniFind, Part II: Integrating OmniFind Text Search Server with DB2 Web Query Published Wednesday, 08 July 2009 01:00 by MC Press On-line [Reprinted with permission from itechnology Manager, published

More information

DISCLAIMER COPYRIGHT List of Trademarks

DISCLAIMER COPYRIGHT List of Trademarks DISCLAIMER This documentation is provided for reference purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this documentation, this documentation

More information

One Identity Manager Administration Guide for Connecting to SharePoint Online

One Identity Manager Administration Guide for Connecting to SharePoint Online One Identity Manager 8.0.1 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

AMS 360 In-House and Transfer Manager.NET

AMS 360 In-House and Transfer Manager.NET AMS 360 In-House and Transfer Manager.NET 07/07 Standard Disclaimer The staff of AMS Services has taken due care in preparing these instructions; however, nothing herein modifies or alters in any way the

More information

IBM Net.Data. Administration and Programming Guide

IBM Net.Data. Administration and Programming Guide IBM Net.Data for OS/400 Administration and Programming Guide IBM Net.Data for OS/400 Administration and Programming Guide Note Be sure to read the information in Notices on page 157 before using this

More information

Tanium Asset User Guide. Version 1.1.0

Tanium Asset User Guide. Version 1.1.0 Tanium Asset User Guide Version 1.1.0 March 07, 2018 The information in this document is subject to change without notice. Further, the information provided in this document is provided as is and is believed

More information

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8.

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8. Business Processes and Rules: Siebel Enterprise Application Integration Siebel Innovation Pack 2013 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Relativity Data Server 2.2

Relativity Data Server 2.2 Relativity Data Server 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro

More information

FirePoint 8. Setup & Quick Tour

FirePoint 8. Setup & Quick Tour FirePoint 8 Setup & Quick Tour Records Management System Copyright (C), 2006 End2End, Inc. End2End, Inc. 6366 Commerce Blvd #330 Rohnert Park, CA 94928 PLEASE READ THIS LICENSE AND DISCLAIMER OF WARRANTY

More information

TrashMagic 2 User Guide

TrashMagic 2 User Guide TrashMagic 2 User Guide Licensing and Copyright Agreement This software is Copyright 2010 TED and TRI-EDRE. Except as permitted under copyright law, no part of the program or this manual may be reproduced

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

PrintShop Web. Release Notes

PrintShop Web. Release Notes PrintShop Web Release Notes PrintShop Web Release Notes Document version: PSW 2.1 R3250 Date: October, 2007 Objectif Lune - Contact Information Objectif Lune Inc. 2030 Pie IX, Suite 500 Montréal, QC Canada

More information

DME-N Network Driver Installation Guide for M7CL

DME-N Network Driver Installation Guide for M7CL DME-N Network Driver Installation Guide for M7CL ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

DocuPrint C55/C55mp Quick Network Install Guide

DocuPrint C55/C55mp Quick Network Install Guide DocuPrint C55/C55mp Quick Network Install Guide Windows for Workgroups / Windows 95 Peer-to-Peer Network Windows NT 3.5X Network Windows NT 4.X Network Macintosh EtherTalk/TokenTalk Network Novell NetWare

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

MIMIX. Version 7.0 Using License Manager. Installation and Security Information for MIMIX Products

MIMIX. Version 7.0 Using License Manager. Installation and Security Information for MIMIX Products MIMIX Version 7.0 Using License Manager Installation and Security Information for MIMIX Products Published: September 2010 level 7.0.01.00 Copyrights, Trademarks, and Notices Contents Who this book is

More information

EnterpriseOne Release 8.9 Installing and Running the Convert CCSID Tool PeopleBook

EnterpriseOne Release 8.9 Installing and Running the Convert CCSID Tool PeopleBook EnterpriseOne Release 8.9 Installing and Running the Convert CCSID 66535 Tool PeopleBook September 2003 Copyright 2003 PeopleSoft, Inc. All rights reserved. All material contained in this documentation

More information

Toad Data Point - Professional Edition

Toad Data Point - Professional Edition Toad Data Point Version 3.6 New in This Release Thursday, October 23, 2014 Contents Toad Data Point - Professional Edition Toad Data Point - Base and Professional Editions Idea Pond Toad Data Point - Professional

More information

Access for Mobile Client (5770-XH2) IBM i Access Client Solutions (5733-XJ1) HTTP vs. Java. Speaker. Ray Johnson. isolutions Consulting, Inc 2

Access for Mobile Client (5770-XH2) IBM i Access Client Solutions (5733-XJ1) HTTP vs. Java. Speaker. Ray Johnson. isolutions Consulting, Inc 2 Access for Mobile Client (5770-XH2) IBM i Access Client Solutions (5733-XJ1) HTTP vs. Java isolutions Consulting, Inc 1 Speaker Ray Johnson isolutions Consulting, Inc. Phone: 541-684-8371 Email: ray@iscllc.biz

More information

Relativity for Windows Workstations 2.2

Relativity for Windows Workstations 2.2 Relativity for Windows Workstations 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS,

More information

FX RFID READER SERIES Embedded SDK Sample Application

FX RFID READER SERIES Embedded SDK Sample Application FX RFID READER SERIES Embedded SDK Sample Application User Guide MN000539A01 FX RFID READER SERIES EMBEDDED SDK SAMPLE APPLICATIONS USER GUIDE MN000539A01 Revision A December 2017 Copyright 2017 ZIH Corp.

More information

NetServer ToolKit User s Guide

NetServer ToolKit User s Guide NetServer ToolKit User s Guide Version V1R1M0 January 2007 ariadne software ltd. cheltenham, england Table of Contents Introduction... 3 Warranty... 3 Minimum OS/400 Release Level... 3 Licensed Program

More information

WebFacing Applications with. Leonardo LLames IBM Advanced Technical Support Rochester, MN. Copyright IBM 2002 ebusinessforu Pages 1

WebFacing Applications with. Leonardo LLames IBM Advanced Technical Support Rochester, MN. Copyright IBM 2002 ebusinessforu Pages 1 WebFacing 5250 Applications with Leonardo LLames IBM Advanced Technical Support Rochester, MN Copyright IBM 2002 ebusinessforu Pages 1 Disclaimer Acknowledgement: This presentation is a collaborative effort

More information

Proficy* HMI/SCADA - ifix LAN R EDUNDANCY

Proficy* HMI/SCADA - ifix LAN R EDUNDANCY Proficy* HMI/SCADA - ifix LAN R EDUNDANCY Version 5.5 February 2012 All rights reserved. No part of this publication may be reproduced in any form or by any electronic or mechanical means, including photocopying

More information

Week - 01 Lecture - 04 Downloading and installing Python

Week - 01 Lecture - 04 Downloading and installing Python Programming, Data Structures and Algorithms in Python Prof. Madhavan Mukund Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 04 Downloading and

More information

Semester 2, 2018: Lab 1

Semester 2, 2018: Lab 1 Semester 2, 2018: Lab 1 S2 2018 Lab 1 This lab has two parts. Part A is intended to help you familiarise yourself with the computing environment found on the CSIT lab computers which you will be using

More information

PDG Shopping Cart Quick Start Guide

PDG Shopping Cart Quick Start Guide PDG Shopping Cart 2002 Quick Start Guide , Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2001 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")

More information

HP OmniBook DiagTools. User s Guide

HP OmniBook DiagTools. User s Guide HP OmniBook DiagTools User s Guide Notice This manual and any examples contained herein are provided as is and are subject to change without notice. Hewlett-Packard Company makes no warranty of any kind

More information

CL Database IO commands

CL Database IO commands CL Database IO commands User s Guide Version V2R1M0 January 2007 ariadne software ltd. cheltenham, england Table of Contents Introduction... 3 Warranty... 3 Minimum OS/400 Release Level... 3 Licensed Program

More information

MobiControl v13: Package Rules to Profiles Migration Guide. January 2016

MobiControl v13: Package Rules to Profiles Migration Guide. January 2016 MobiControl v13: Package Rules to Profiles Migration Guide January 2016 Copyright 2016 SOTI Inc. All rights reserved. This documentation and the software described in this document are furnished under

More information

Network-MIDI Driver Installation Guide

Network-MIDI Driver Installation Guide Network-MIDI Driver Installation Guide ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE

More information

One Identity Manager Target System Synchronization Reference Guide

One Identity Manager Target System Synchronization Reference Guide One Identity Manager 8.0.1 Target System Synchronization Reference Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Improved Web Development using HTML-Kit

Improved Web Development using HTML-Kit Improved Web Development using HTML-Kit by Peter Lavin April 21, 2004 Overview HTML-Kit is a free text editor that will allow you to have complete control over the code you create and will also help speed

More information

Metalogix ControlPoint 7.6

Metalogix ControlPoint 7.6 Metalogix ControlPoint 7.6 October 2018 These release notes provide information about the latest Metalogix ControlPoint release. New Features Resolved Issues Known Issues About Us New Features Version

More information

SignWare-Pro. User s Guide. SignWare-Pro v1.2.

SignWare-Pro. User s Guide. SignWare-Pro v1.2. SignWare-Pro User s Guide SignWare-Pro v1.2 www.smartavi.com Table of Contents Introduction... 3 Disclaimer Notice... 4 What s in the Box?... 5 Limited Warranty Statement... 6 Section 1 -Setting up the

More information

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE

KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE KNOWLEDGE FORUM 4 MACINTOSH SERVER ADMINISTRATOR S GUIDE Knowledge Forum is a registered trademark of Knowledge Building Concepts. Administrator s Guide Macintosh Server--Version 4.1 or above Macintosh

More information

JD Edwards World Quick Installation Guide. Version A9.2 Update 1

JD Edwards World Quick Installation Guide. Version A9.2 Update 1 JD Edwards World Quick Installation Guide Version A9.2 Update 1 Revised August 11, 2010 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of

More information

Veritas Desktop and Laptop Option 9.2

Veritas Desktop and Laptop Option 9.2 1. Veritas Desktop and Laptop Option 9.2 Quick Reference Guide for DLO Installation and Configuration 24-Jan-2018 Veritas Desktop and Laptop Option: Quick Reference Guide for DLO Installation and Configuration.

More information

CLIENT SERVER ARCHITECTURE:

CLIENT SERVER ARCHITECTURE: CLIENT SERVER ARCHITECTURE: Client-Server architecture is an architectural deployment style that describe the separation of functionality into layers with each segment being a tier that can be located

More information

One Identity Manager 8.0. Administration Guide for Connecting to LDAP

One Identity Manager 8.0. Administration Guide for Connecting to LDAP One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

One Identity Manager 8.0. Administration Guide for Connecting to Active Directory

One Identity Manager 8.0. Administration Guide for Connecting to Active Directory One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Start the HTTP Administration Server. Sign On to the Administration Server

Start the HTTP Administration Server. Sign On to the Administration Server How to create an SSL Application The following instructions can be used to create an SSL Application Identifier for klink. If you would like klink to use SSL (Secure Sockets Layer) to use an HTTPS secure

More information

TSM Studio Server and TSM Studio Operational Reporting

TSM Studio Server and TSM Studio Operational Reporting TSM Studio Server and TSM Studio Operational Reporting Table of Contents Disclaimer... 3 What is Operational Reporting?... 4 Getting Started... 5 Custom Summary... 8 Adding your own items to the Custom

More information

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE Quest Enterprise Reporter 2.0 Report Manager USER GUIDE 2014 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Veritas System Recovery 18 Management Solution Administrator's Guide

Veritas System Recovery 18 Management Solution Administrator's Guide Veritas System Recovery 18 Management Solution Administrator's Guide Documentation version: 18 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are

More information

WebLearning IBM Curriculum

WebLearning IBM Curriculum WebLearning IBM Curriculum WebSphere Commerce Suite Marketplace Edition Implementation Table of Contents: Overview Who Should Take This Course What You Are Taught Topics Include Prerequisites Duration:

More information

One Identity Manager 8.0. Administration Guide for Connecting to Cloud Applications

One Identity Manager 8.0. Administration Guide for Connecting to Cloud Applications One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Manual NEWBASE WebShot 1.4. Copyright by NEWBASE GmbH, Hamburg, Germany

Manual NEWBASE WebShot 1.4. Copyright by NEWBASE GmbH, Hamburg, Germany Manual NEWBASE WebShot 1.4 Copyright by NEWBASE GmbH, Hamburg, Germany Table of contents Copyright... 3 NEWBASE License Agreement... 3 Maintenance... 4 Manual Conventions... 5 Installation 6 Starting and

More information

IBM i Version 7.2. Security Object signing and signature verification IBM

IBM i Version 7.2. Security Object signing and signature verification IBM IBM i Version 7.2 Security Object signing and signature verification IBM IBM i Version 7.2 Security Object signing and signature verification IBM Note Before using this information and the product it

More information

Jerry Cain Handout #5 CS 106AJ September 30, Using JSKarel

Jerry Cain Handout #5 CS 106AJ September 30, Using JSKarel Jerry Cain Handout #5 CS 106AJ September 30, 2017 Using JSKarel This handout describes how to download and run the JavaScript version of Karel that we ll be using for our first assignment. 1. Getting started

More information

Tanium Asset User Guide. Version 1.3.1

Tanium Asset User Guide. Version 1.3.1 Tanium Asset User Guide Version 1.3.1 June 12, 2018 The information in this document is subject to change without notice. Further, the information provided in this document is provided as is and is believed

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide One Identity Active Roles 7.2 Replication: Best Practices and Troubleshooting Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The

More information

Create-a-Product API. User Guide. - Updated: 6/2018 -

Create-a-Product API. User Guide. - Updated: 6/2018 - Create-a-Product API User Guide - Updated: 6/2018 - Copyright (c) 2018, Zazzle Inc. All rights reserved. Zazzle is a registered trademark of Zazzle Inc. All other trademarks and registered trademarks are

More information

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0 First Published: July 31, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text

More information

Security Removable Media Manager

Security Removable Media Manager Security Removable Media Manager Version 9.9.0.0 (January 2018) Protect your valuable data 2011 Squadra Technologies, LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by

More information

Actian Hybrid Data Conference 2017 London Actian Corporation

Actian Hybrid Data Conference 2017 London Actian Corporation Actian Hybrid Data Conference 2017 London 1 2017 Actian Corporation Disclaimer This document is for informational purposes only and is subject to change at any time without notice. The information in this

More information

UNIT - 5 EDITORS AND DEBUGGING SYSTEMS

UNIT - 5 EDITORS AND DEBUGGING SYSTEMS UNIT - 5 EDITORS AND DEBUGGING SYSTEMS 5.1 Introduction An Interactive text editor has become an important part of almost any computing environment. Text editor acts as a primary interface to the computer

More information

Pocket ESA. Version 1. User s Guide. Copyright (c) GAEA Technologies Ltd. All rights reserved.

Pocket ESA. Version 1. User s Guide. Copyright (c) GAEA Technologies Ltd. All rights reserved. Pocket ESA Version 1 User s Guide Copyright (c) 2004. GAEA Technologies Ltd. All rights reserved. Not to be reprinted without the written consent of GAEA Technologies Ltd. Printed in Canada Pocket ESA

More information

DawnMailer Troubleshooting

DawnMailer Troubleshooting DawnMailer Troubleshooting DawnMailer Troubleshooting... 1 Setting Up DawnMailer: checklist... 2 Run-time Error 380 invalid property value.... 5 Error: -2146697210, the system cannot locate the object

More information

Testing. Testing. Web-based Applications. Analyzing and reproducing errors in a Web environment. by Hung Q. Nguyen

Testing. Testing. Web-based Applications. Analyzing and reproducing errors in a Web environment. by Hung Q. Nguyen Testing Testing QUICK LOOK Why errors in Web-based applications are hard to reproduce Analyzing these errors in a way that saves testing time Web-based Applications Analyzing and reproducing errors in

More information

TestBase's Patented Slice Feature is an Answer to Db2 Testing Challenges

TestBase's Patented Slice Feature is an Answer to Db2 Testing Challenges Db2 for z/os Test Data Management Revolutionized TestBase's Patented Slice Feature is an Answer to Db2 Testing Challenges The challenge in creating realistic representative test data lies in extracting

More information

Chapter 6: Connecting Windows Workstations

Chapter 6: Connecting Windows Workstations Chapter 6: Connecting Windows Workstations 153 Chapter 6 Connecting Windows Workstations Because this is a book about using Linux on a Microsoft Windows-based network, this chapter shows you how to connect

More information

Veritas NetBackup for Lotus Notes Administrator's Guide

Veritas NetBackup for Lotus Notes Administrator's Guide Veritas NetBackup for Lotus Notes Administrator's Guide for UNIX, Windows, and Linux Release 8.0 Veritas NetBackup for Lotus Notes Administrator's Guide Document version: 8.0 Legal Notice Copyright 2016

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

T-Invoicer User Guide

T-Invoicer User Guide - 1 - T-Invoicer User Guide Introduction T-Invoicer is an entry level invoicing system designed for small & startup business's who need to invoice customers quickly & easily. T-Invoicer has all the basic

More information

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Revision 1.0 February 2000 Revision History Revision Revision History Date 1.0 Initial Release 02/10/00 Intel Corporation

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Scribe Insight Installation Guide. Version August 10, 2011

Scribe Insight Installation Guide. Version August 10, 2011 Scribe Insight Installation Guide Version 7.0.2 August 10, 2011 www.scribesoft.com Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form

More information

0Introduction. Overview. This introduction contains general information and tips for using your Avaya CD-ROM.

0Introduction. Overview. This introduction contains general information and tips for using your Avaya CD-ROM. 0 Overview Purpose This introduction contains general information and tips for using your Avaya CD-ROM. Features This offer is designed for all users who want the ease of accessing documentation electronically.

More information

About the Domino for AS/400 Release Notes

About the Domino for AS/400 Release Notes About the Domino for AS/400 Release Notes Domino for AS/400 Release Notes is a Notes Database which provides supplementary information about Domino for AS/400. Choose Help - Using This Database for information

More information

Oracle Insurance. Implementing a. Release 5.6

Oracle Insurance. Implementing a. Release 5.6 Oracle Insurance Insbridge Enterprise Rating Implementing a Shared Workfiles Location Guide Release 5.6 November 2018 Copyright 2005, 2018, Oracle and/or its affiliates. All rights reserved. Oracle Insurance

More information

HP OpenView Service Desk

HP OpenView Service Desk HP OpenView Service Desk OpenView Operations Integration Administrator s Guide Software Version: 5.10 For the Windows and UNIX Operating Systems Manufacturing Part Number: None Document Release Date: August

More information

Veritas System Recovery 16 Management Solution Administrator's Guide

Veritas System Recovery 16 Management Solution Administrator's Guide Veritas System Recovery 16 Management Solution Administrator's Guide Documentation version: 2017 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information