WLprinter Web-to-local print solution Version 0.9

Size: px
Start display at page:

Download "WLprinter Web-to-local print solution Version 0.9"

Transcription

1 WLprinter Web-to-local print solution Version 0.9 Tekki October 7, 2010 Contents 1 Introduction What is WLprinter? System requirements Limitations Disclaimer Installation Installation of the WLprinter server Installation of the WLprinter client Integration with SQL-Ledger Installation of the WLprinter modules Edit the menu Working with WLprinter Printing within SQL-Ledger Using the client application Technical details etc/wlprinter.conf bin/fileprinter.pl bin/getlink.pl www/wlprinter.pl sql-ledger/bin/mozilla/wlprinter.pl

2 Figure 1: Application server in the local network 1 Introduction 1.1 What is WLprinter? WLprinter is a web-to-local print solution that allows an web-based application to print PDF and Postscript files to Windows or Linux printers behind a firewall. It was designed primarily for the ERP solution SQL-Ledger (see but can easily be adapted to other applications too. A web application server that runs in the same subnetwork as its clients sends its print jobs to IP addresses that are directly accessible to it, either to network printers or using a share on a client PC (Figure 1). If the server is placed in the web, or if the application runs on a service like Amazon EC2, this procedure fails, because the printers are part of a private network that is hidden behind a firewall (Figure 2). The users have to download files and print them out manually. WLprinter establishes a connection between client and server and allows the latter to print to the client without user interaction, as if both machines were placed in the same 2

3 Figure 2: Server placed outside subnet (Figure 3). A second case where WLprinter may be useful is when the application is accessed by many and often changing clients, so that it would be too complicated to register every printer to the application. Using WLprinter, for example a notebook attached ad-hoc to the network can print immediately to its own USB printer (Figure 4). 1.2 System requirements Server: a web application that produces PDF or Postscript outputs a web server that support Perl Client: Java runtime (JRE) or development kit (JDK) or higher a printer with PDF or Postscript support Adobe Reader for Windows PCs without Postscript printer 1.3 Limitations PDF, PS: At the moment, WLprinter supports only documents in PDF or Postscript format. 3

4 Figure 3: WLprinter connects server and client Figure 4: WLprinter used to connect a big number of clients 4

5 SSL: WLprinter doesn t work on SSL connections with self-signed certificates. If you use a self-signed certificate, you have to move the WLprinter server to an unencrypted connection. In this case, you can t call it directly, but have to use the redirect function described in the technical details. javax.print: WLprinter partially uses the Java Print Service API, that unfortunately isn t very reliable. In some constellations, for example when printing to virtual printers like FreePDF or when printing PDF instead of PS on a Linux client, documents disappear in the nowhere without producing an error message. For this reason, it is recommended either to print PS to printers with native Postscript support, or on Windows to print PDF, so WLprinter can make use of the Adobe Reader s print features. 1.4 Disclaimer THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CON- TRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUD- ING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABIL- ITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSE- QUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (IN- CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2 Installation 2.1 Installation of the WLprinter server The following instructions assume that you have Opensuse with Apache2 installed on your server. 1. log in to your server as root 2. create the folder /usr/local/wlprinter 1 mkdir /usr/local/wlprinter 3. download the program from to the wlprinter folder 1 If you change the folder names, you have to modify the paths in the configuration file 5

6 cd /usr/local/wlprinter/ wget 4. untar the program tar -xvzf wlprinter.tar.gz 5. create a spool directory mkdir spool 6. restrict the access to the spool directory to the web server process chown «wwwuser».«wwwgroup» spool chmod 700 spool «wwwuser» and «wwwgroup» are placeholders that you have to replace with the correct values 7. copy the web server configuration file cd /etc/apache2/vhosts.d/ cp /usr/local/wlprinter/etc/apache2/wlprinter-httpd.conf. 8. restart the web server /etc/init.d/apache2 restart The user and group names of the web server, indicated with «wwwuser» and «wwwgroup» change from distribution to distribution. If you don t know them, type: ps ax -o user,group,command grep apache2 Or, if you get no result: ps ax -o user,group,command grep httpd On Opensuse, the output will look like this: root root /usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf... wwwrun www /usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf... wwwrun www /usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf... This means you have to use wwwrun as user and www as group name. The location of the config file differs, too. In Ubuntu, where the names to use are the same www-data for the group and the user, you copy the file to sites_available and link it to sites_enabled. cd /etc/apache2/sites_available cp /usr/local/wlprinter/etc/wlprinter-httpd.conf. cd../sites_enabled ln -s../sites_available/wlprinter-httpd.conf. 6

7 2.2 Installation of the WLprinter client The WLprinter client needs no installation. It will be downloaded, installed and updated automatically using Java Network Launch Protocol (JNLP) from tekki.ch or, depending on your configuration, from your own server. NOTE: The beta version doesn t include the client code yet, it can only be downloaded from tekki.ch. 2.3 Integration with SQL-Ledger In this section, you see how to use WLprinter together with SQL-Ledger ( Imitating this model, it should be simple to integrate it with other web applications Installation of the WLprinter modules To install in SQL-Ledger the modules required to work with WLprinter, you call the script./sl-install.pl that you find in the base directory of WLprinter. It asks you for the path to your SQL-Ledger installation. If it s /usr/local/sql-ledger, just press ENTER. The script does a lot of work. Here are some details: Instead of printing to a real printer using lpr, SQL-Ledger has to send the print jobs to WLprinter, more exact to its module fileprinter.pl. The command to use is: «some output» /usr/bin/wlprinter/bin/fileprinter.pl «username» WLprinter needs to know the user name to identify which document belongs to which user. In SQL-Ledger, the user name is stored in $form-»{login}, but this field is not available yet at the moment when sql-ledger.conf with the definition of the printers is read in. For this reason, the install script creates a custom_«filename».pl for all the modules in bin/mozilla, that adds WLprinter to the printer list. If it finds already existing custom files, it adds the WLprinter code at the beginning of them and leaves the rest untouched. Next, it creates a gateway script in the SQL-Ledger base directory and copies the WLprinter startup module to bin/mozilla. An existing bin/mozilla/wlprinter.pl will be copied to wlprinter.pl.old. If you have modified it, check the new file for changes and copy your modifications back to it. Now WLprinter is available as a print target Edit the menu To be able to open the WLprinter client, you need a new entry in the SQL-Ledger menu. Edit your custom_menu.ini or create a new one, and add this or a similar text: 7

8 Figure 5: Choose the printer with your user name Figure 6: WLprinter in the SQL-Ledger menu [Tools] [Tools--WLprinter] module=wlprinter.pl action=open After such changes and if you don t use the default English language, don t forget to move to your translation folder and run./locales.pl. 3 Working with WLprinter 3.1 Printing within SQL-Ledger You print to WLprinter in the same way you would print to any other printer. Just choose the printer with your user name and the appropriate file format and click the Print or Print and Post button (Figure 5). If you always use WLprinter, you can set it as your default printer in your Preferences. 3.2 Using the client application It doesn t matter at what moment you start the client application, before you print the first document or later. If it isn t running yet when you print, your jobs will be stored on the server until the WLprinter client connects. You can even create print jobs when you work on your mobile phone and print the documents out later when you are back in your office. To start the client from SQL-Ledger, click on the WLprinter menu entry you created before (Figure 6). 8

9 Figure 7: WLprinter client connected to the server The WLprinter client is downloaded and started automatically. If you open it for the first time or if it was updated, you will be prompted to accept the certificate and with this allow the program to access your computer. The WLprinter client first searches your PC for available printers and displays them on a list. Besides the names of the printers, you see what kind of documents they accept. If you run a Windows computer, WLprinter looks for an Adobe Reader that can be used to print PDF files. Finally, it connects to the WLprinter server (Figure 7). Now you have 10 seconds 2 to change the printer, if necessary. You will see virtual printers like Fax, FreePDF or Windows XPS Document Writer on the list, but as it was said in the introduction, the Java Print API doesn t work with them, so you can t send a Postscript file to FreePDF, even if the list tells you that it supports it. For PDF, these printers are available, because PDF format uses the WLprinter s own driver that calls the Adobe Reader on your PC. 3 This means for example that you can print a fax from SQL-Ledger, if the fax service of your PC is configured properly. After the waiting time is over, the client asks the server for open printing jobs, receives them and sends them to the selected printer (Figure 8). If the format of the document isn t supported by the selected printer, WLprinter displays an error message that gives you the possibility either to change the printer, or to delete this or all the pending jobs (Figure 9). Normally, you always print to your default printer, so the WLprinter client doesn t need any interaction at all. 2 or the time you have set in wlprinter.conf 3 The problem is known that Adobe Reader keeps jumping to the foreground while printing to a nondefault printer. 9

10 Figure 8: WLprinter client printing Figure 9: Error message for unsupported file format 10

11 4 Technical details 4.1 etc/wlprinter.conf wlprinter.conf is the configuration file. It contains the following keys: $version The version of the server software. Don t change this, it is used by the client to check its compatibility with the server. $spooldir The directory where the print jobs are stored before they are sent to the clients. You can change it to another value, but make sure the new directory is available and the web server has exclusive access to it. $tokenfile The file where the access keys are stored. You can move it somewhere else, but consider the precautions mentioned above. $alias The alias name of the wlprinter/www/ directory on the web server. It has to correspond with the Alias value in wlprinter-httpd.conf, without leading and trailing slashes. $interval The time in seconds between the attempts of the client to download printing jobs. Values smaller than 10 are ignored. $headlength The number of bytes that are sent to the client to identify the format of the document. $codebase The URL from where the client code can be downloaded. For the Beta version, the code is only available on tekki.ch, later it will be possible to install it on your own server. 4.2 bin/fileprinter.pl fileprinter.pl is the virtual printer that accepts jobs sent from the web application. It stores the documents in the spool folder until they are forwarded to the clients. The way to call it is: «some output» /usr/bin/wlprinter/bin/fileprinter.pl «username» The user name is necessary for the program to identify the owner of the print job. 4.3 bin/getlink.pl getlink.pl is called from the web application with: /usr/bin/wlprinter/bin/getlink.pl «username» 11

12 and returns a link that can be sent to the user to connect to the WLprinter server. The link contains the path to the server application, starting with the directory alias defined in wlprinter.conf, and an access key that identifies the user. The web application, in our case SQL-Ledger, is responsible to control that only authenticated users are supplied with this key. 4.4 www/wlprinter.pl wlprinter.pl is the web frontend that communicates with the WLprinter client. always accessed in the following way: It is «your server»/«wlprinter alias»/wlprinter.pl?id=... where id is the access key created with getlink.pl. Without an id or a wrong one, you will get an error messages that you are not authenticated. Additional arguments are: action=main or no argument, will return the JNLP page that invokes the client application. action=redirect redirects to main. This function has to be used when the WLprinter server isn t immediately able to find out its own address when called from the web application, for example when the latter runs on and the first on action=version returns the version number of the WLprinter server. action=list creates a list with the id numbers of the pending jobs. These numbers are used as docid for the following commands. action=head&docid=... returns the n first bytes of the document identified by docid, where n is the number set in $headlength. action=get&docid=... downloads the content of the job as an application/octet-stream. action=delete&docid=... deletes the specified document from the spool directory. action=deleteall cancels all pending jobs for this user. action=logout invalidates the access key. After calling this function, the user can t connect to the server anymore until the web application asks getlink.pl to create a new key for him. 4.5 sql-ledger/bin/mozilla/wlprinter.pl This is the module that redirects from SQL-Ledger to WLprinter. The first important command is where it calls getlink.pl to create the link and the access key for the user: my $wllink = qx /usr/local/wlprinter/bin/getlink.pl $form-»{login} ; 12

13 Later it uses this value to replace the frame in the browser with WLprinter: «script type="text/javascript"» window.location.href="../$wllink"; «/script» This code works when your SQL-Ledger runs in «yourserver»/sql-ledger and WLprinter in «yourserver»/wlprinter. If you have an other configuration, you may have to tune this script until it produces the desired result. 13

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG Version: 12.10 December 2012 SNP Schneider-Neureither & Partner AG Dossenheimer Landstr. 100 D-69121 Heidelberg Tel.: +49 6221 6425-0 Fax: +49 6221 6425-20 E-Mail: info@snp-ag.com www.snp-ag.com Page 1

More information

Avaya VPN Client Software Release 10.05_100

Avaya VPN Client Software Release 10.05_100 Avaya VPN Client Software Release 10.05_100 1. Release Summary Release Date: September 1 st, 2011 Purpose: Software maintenance release to address customer requests and software issues. 2. Important Notes

More information

JPdfBookmarks Manual. by Flaviano Petrocchi

JPdfBookmarks Manual. by Flaviano Petrocchi JPdfBookmarks Manual by Flaviano Petrocchi JPdfBookmarks Manual 1 Introduction 3 Installation and Uninstallation 4 Linux Instructions 4 Debian Instructions 6 Windows Instructions 6 Universal Archive Instructions

More information

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Introduction Installation Start using W4S Selecting a folder to monitor Setting the threshold Setting actions Starting the monitor Live Log Using monitor

More information

Definiens. Image Miner bit and 64-bit Editions. Release Notes

Definiens. Image Miner bit and 64-bit Editions. Release Notes Definiens Image Miner 2.0.2 32-bit and 64-bit Editions Release Notes Definiens Documentation: Image Miner 2.0.2 Release Notes Imprint 2012 Definiens AG. All rights reserved. This document may be copied

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses Copyright GoldSim Technology Group LLC, 1998-2016. All rights reserved. GoldSim is a registered trademark of GoldSim Technology

More information

Installing AudioLinux (Alternative way with GUI)

Installing AudioLinux (Alternative way with GUI) Installing AudioLinux (Alternative way with GUI) By Maarten van Druten Version 1.0 6 September 2017 Disclaimer: THIS SOFTWARE INSTALLATION MANUAL IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,

More information

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 By Falko Timme Published: 2007-12-06 19:24 Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 Version 1.0 Author: Falko Timme Last edited 12/03/2007 In this tutorial

More information

User Manual for Video Codec

User Manual for Video Codec User Manual for Video Codec CONTENTS OF THIS DOCUMENT This document contains the following sections: 1 Overview 2 System Requirements 3 Language Support 4 Installing the Software jdk installation jmf installation

More information

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide for the Oracle Application Server April 2006 JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide Copyright 2006, Oracle.

More information

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC.

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC. Control4/HomeKit Appliance User Manual User Manual June 2017 Version 1.0.3 Varietas Software, LLC http://www.varietassoftware.com/control4 i Control4/HomeKit Appliance Quick Start Document Revisions Date

More information

calio / form-input-nginx-module

calio / form-input-nginx-module https://github.com/ 1 of 5 2/17/2015 11:27 AM Explore Gist Blog Help itpp16 + calio / form-input-nginx-module 5 46 9 This is a nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-formurlencoded",

More information

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0.

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0. PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together PDF Share Forms Enterprise 3.0 Install Guide SharePoint 2013 Contents Disclaimer...3 Copyright...3 About this guide...3

More information

Definiens. Tissue Studio Release Notes

Definiens. Tissue Studio Release Notes Definiens Tissue Studio 3.0.1 Release Notes Definiens Documentation: Definiens Tissue Studio 3.0.1 Release Notes Imprint 2012 Definiens AG. All rights reserved. This document may be copied and printed

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

Use in High-Safety Applications

Use in High-Safety Applications ------ ScanSnap Organizer V5.6L20 README File ------ - Contents - 1. Cautions for using environment-dependent characters 2. Cautions Concerning Installation 3. Cautions Concerning the Operation 4. Connecting

More information

File Servant User Manual

File Servant User Manual File Servant User Manual Serve files over FTP and HTTP - at the snap of a finger! File Servant is free software (see copyright notice below). This document was last revised Monday 28 February 2011. Creator:

More information

Graphic Inspector 2 User Guide

Graphic Inspector 2 User Guide www.zevrix.com support@zevrix.com Graphic Inspector 2 User Guide Installation & System Requirements 2 Scanning Files and Folders 2 Checkup Presets 3 File Table and Info Panel 4 Export Data 5 Support 6

More information

Open Source Used In TSP

Open Source Used In TSP Open Source Used In TSP 3.5.11 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at www.cisco.com/go/offices.

More information

LGR Toolset (beta) User Guide. IDN Program 24 October 2017

LGR Toolset (beta) User Guide. IDN Program 24 October 2017 LGR Toolset (beta) User Guide IDN Program 24 October 2017 1 Introduction to LGR Toolset (beta) Label Generation Rulesets (LGRs) specify metadata, code point repertoire, variant rules and Whole Label Evaluation

More information

openresty / array-var-nginx-module

openresty / array-var-nginx-module 1 of 6 2/17/2015 11:20 AM Explore Gist Blog Help itpp16 + openresty / array-var-nginx-module 4 22 4 Add support for array variables to nginx config files 47 commits 1 branch 4 releases 2 contributors array-var-nginx-module

More information

Cluster and SVM Peering Express Guide

Cluster and SVM Peering Express Guide ONTAP 9 Cluster and SVM Peering Express Guide December 2017 215-11182_E0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Prerequisites

More information

PageScope Box Operator Ver. 3.2 User s Guide

PageScope Box Operator Ver. 3.2 User s Guide PageScope Box Operator Ver. 3.2 User s Guide Box Operator Contents 1 Introduction 1.1 System requirements...1-1 1.2 Restrictions...1-1 2 Installing Box Operator 2.1 Installation procedure...2-1 To install

More information

QuarkXPress Server Manager 8.0 ReadMe

QuarkXPress Server Manager 8.0 ReadMe QuarkXPress Server Manager 8.0 ReadMe CONTENTS Contents QuarkXPress Server Manager 8.0 ReadMe...3 What's New in QuarkXPress Server Manager 8...4 Deprecated features, new stubs, and deploying SDK classes...4

More information

Xerox Mobile Print Solution

Xerox Mobile Print Solution Software Version 1.5 Version 1.2 Xerox Mobile Print Solution Information Assurance Disclosure Xerox Mobile Print Solution Copyright 2011 Xerox Corporation. All rights reserved. Includes Material Copyright

More information

MUMPS IO Documentation

MUMPS IO Documentation MUMPS IO Documentation Copyright (c) 1999, 2000, 2001, 2002, 2003 Raymond Douglas Newman. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted

More information

openresty / encrypted-session-nginx-module

openresty / encrypted-session-nginx-module 1 of 13 2/5/2017 1:47 PM Pull requests Issues Gist openresty / encrypted-session-nginx-module Watch 26 127 26 Code Issues 7 Pull requests 1 Projects 0 Wiki Pulse Graphs encrypt and decrypt nginx variable

More information

SkyPilot EMS Installation

SkyPilot EMS Installation SkyPilot EMS Installation 671-00004-01 Rev B 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose. Product

More information

Design document for content delivery tool Brahaspati 1

Design document for content delivery tool Brahaspati 1 Design document for content delivery tool Brahaspati 1 Y.N.Singh, A. Roy, Vijay Singh, A.P.Das, Aloukik Khuntia August 23, 2002 1 Guru of Devas Abstract Design and development of platform independent,

More information

Migration Tool. Migration Tool (Beta) Technical Note

Migration Tool. Migration Tool (Beta) Technical Note Migration Tool (Beta) Technical Note VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

TheGreenBow VPN Client ios User Guide

TheGreenBow VPN Client ios User Guide www.thegreenbow.com TheGreenBow VPN Client ios User Guide Property of TheGreenBow 2018 Table of Contents 1 Presentation... 3 1.1 TheGreenBow VPN Client... 3 1.2 TheGreenBow VPN Client main features...

More information

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2 Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades 2017-2018 Q2 Facultat d Informàtica de Barcelona This first lab session is focused on getting experience in working

More information

iscsi Configuration for ESXi using VSC Express Guide

iscsi Configuration for ESXi using VSC Express Guide ONTAP 9 iscsi Configuration for ESXi using VSC Express Guide May 2018 215-11181_E0 doccomments@netapp.com Updated for ONTAP 9.4 Table of Contents 3 Contents Deciding whether to use this guide... 4 iscsi

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Trimble. ecognition. Release Notes

Trimble. ecognition. Release Notes Trimble ecognition Release Notes Trimble Documentation: ecognition 8.9 Release Notes Imprint and Version Document Version 8.9 Copyright 2013 Trimble Germany GmbH. All rights reserved. This document may

More information

Quick Installation Guide. CereusReporting - Standard Edition

Quick Installation Guide. CereusReporting - Standard Edition Quick Installation Guide CereusReporting - Standard Edition Version 2.90 1 Introduction 1.1 About CereusReporting CereusReporting is a plugin designed to enhance the reporting functionality of the Cacti

More information

Definiens. Image Miner bit and 64-bit Edition. Release Notes

Definiens. Image Miner bit and 64-bit Edition. Release Notes Definiens Image Miner 2.1.1 32-bit and 64-bit Edition Release Notes Definiens Documentation: Image Miner 2.1.1 Release Notes Imprint 2013 Definiens AG. All rights reserved. This document may be copied

More information

NetApp SolidFire Element OS. Setup Guide. Version March _A0

NetApp SolidFire Element OS. Setup Guide. Version March _A0 NetApp SolidFire Element OS Setup Guide Version 10.2 March 2018 215-12911_A0 doccomments@netapp.com Table of Contents 3 Contents SolidFire system overview... 4 Configuring a storage node... 5 Configuring

More information

How to create a long running request for use in testing Or How to register a concurrent program. A step by step guide. By Gary Piper.

How to create a long running request for use in testing Or How to register a concurrent program. A step by step guide. By Gary Piper. How to create a long running request for use in testing Or How to register a concurrent program A step by step guide By Gary Piper June 2012 IMPORTANT NOTES: The long running request defined in this document

More information

FiRe server-2 Installation Manual

FiRe server-2 Installation Manual FiRe server-2 Installation Manual P/N 00-3230-501-0003-01 ISS 07JAN15 Copyright Trademarks and patents Manufacturer Version 2015 UTC Fire & Security. All rights reserved. The FiRe server-2 name and logo

More information

MagicInfo Express Content Creator

MagicInfo Express Content Creator MagicInfo Express Content Creator MagicInfo Express Content Creator User Guide MagicInfo Express Content Creator is a program that allows you to conveniently create LFD content using a variety of templates.

More information

LGR Toolset (beta) User Guide. IDN Program October 2016

LGR Toolset (beta) User Guide. IDN Program October 2016 LGR Toolset (beta) User Guide IDN Program October 2016 Introduction to LGR Toolset (beta) Label Generation Rulesets (LGRs) specify code point repertoire, variant rules and Whole Label Evaluation (WLE)

More information

TWAIN driver User s Guide

TWAIN driver User s Guide 4037-9571-05 TWAIN driver User s Guide Contents 1 Introduction 1.1 System requirements...1-1 2 Installing the TWAIN Driver 2.1 Installation procedure...2-1 To install the software...2-1 2.2 Uninstalling...2-1

More information

Preface. Audience. Cisco IOS Software Documentation. Organization

Preface. Audience. Cisco IOS Software Documentation. Organization This preface describes the audience, organization, and conventions of this publication, and provides information on how to obtain related documentation. Cisco documentation and additional literature are

More information

Nokia Client Release Notes. Version 2.0

Nokia  Client Release Notes. Version 2.0 Nokia Email Client Release Notes Version 2.0 Published June 9, 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync, and Intellisync logo

More information

Explaining & Accessing the SPDX License List

Explaining & Accessing the SPDX License List Explaining & Accessing the SPDX License List SOFTWARE PACKAGE DATA EXCHANGE Gary O Neall Source Auditor Inc. Jilayne Lovejoy ARM August, 2014 Copyright Linux Foundation 2014 1 The SPDX License List 2 The

More information

SkyPilot OS Installation: Fedora Core 5

SkyPilot OS Installation: Fedora Core 5 SkyPilot OS Installation: Fedora Core 5 PN 671-00024-01 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose.

More information

If you re the administrator on any network,

If you re the administrator on any network, Let s do an inventory! If you re the administrator on any network, chances are you ve already faced the need to make an inventory. In fact, keeping a list of all the computers, monitors, software and other

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

Installation. List Wrangler - Mailing List Manager for GTK+ Part I. 1 Requirements. By Frank Cox. September 3,

Installation. List Wrangler -  Mailing List Manager for GTK+ Part I. 1 Requirements. By Frank Cox. September 3, List Wrangler - Email Mailing List Manager for GTK+ By Frank Cox September 3, 2012 theatre@melvilletheatre.com Abstract Do you have a mailing list of people that you send periodic emails to? If so, List

More information

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP)

iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) iwrite technical manual iwrite authors and contributors Revision: 0.00 (Draft/WIP) June 11, 2015 Chapter 1 Files This section describes the files iwrite utilizes. 1.1 report files An iwrite report consists

More information

ProgressBar Abstract

ProgressBar Abstract Doc type here 1(21) ProgressBar Abstract The WireFlow progressbar module is an easy way to add progress bars to an application. It is easy to customize the look of the displayed progress window, since

More information

Carbonite Server Backup Portal 8.6. Administration Guide

Carbonite Server Backup Portal 8.6. Administration Guide Carbonite Server Backup Portal 8.6 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Carbonite Server Backup Portal 8.5. Administration Guide

Carbonite Server Backup Portal 8.5. Administration Guide Carbonite Server Backup Portal 8.5 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

JD Edwards EnterpriseOne Date Utility

JD Edwards EnterpriseOne Date Utility JD Edwards EnterpriseOne Date Utility June 2010 JD Edwards EnterpriseOne Date Utility Releases Xe thru 9.0 Copyright Notice Copyright 2010, Oracle and/or its affiliates. All rights reserved. Trademark

More information

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8 Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Sourcefire Sensor on Nokia v4.8 Part No. N450000774 Rev 001 Published September 2008 COPYRIGHT 2008 Nokia. All rights reserved. Rights

More information

Polycom RealPresence Media Manager

Polycom RealPresence Media Manager RELEASE NOTES Software 6.0.5.1 February 2013 3725-75300-001 Rev C1 Polycom RealPresence Media Manager 6.0.5.1 About these Release Notes The newest release of Polycom RealPresence Media Manager software,

More information

Definiens. Definiens XD 2.1. Release Notes

Definiens. Definiens XD 2.1. Release Notes Definiens Definiens XD 2.1 Release Notes Definiens Documentation: Definiens XD 2.1 Release Notes Imprint 2013 Definiens AG. All rights reserved. This document may be copied and printed only in accordance

More information

USER GUIDE. MailMeter. Individual Search and Retrieval. User Guide. Version 4.3.

USER GUIDE. MailMeter. Individual Search and Retrieval. User Guide. Version 4.3. USER GUIDE MailMeter Individual Search and Retrieval User Guide Version 4.3 www.mailmeter.com MailMeter ISR User Guide Version 4.3 May 2009 Published by: Waterford Technologies www.mailmeter.com 2009 Waterford

More information

CompuCal Version 6 Installation Guide (Windows 2008/R2) Release

CompuCal Version 6 Installation Guide (Windows 2008/R2) Release CompuCal Version 6 Installation Guide (Windows 2008/R2) Release 6.3.0.4 Copyright CompuCal Calibration Solutions 2015 Page 1 of 17 Table of Contents 1. MINIMUM SPECIFICATIONS... 3 1.1 Client Server Spec...

More information

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition Nokia Intellisync Mobile Suite Client Guide S60 Platform, 3rd Edition Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync,

More information

Installing nginx for DME Server

Installing nginx for DME Server for DME Server Document version 1.3 Published 10-05-2017 nginx installation guide Contents nginx installation guide... 2 nginx... 4 Windows... 5... 6 Supported platforms... 6 Step 1: Install or upgrade

More information

sptrans Documentation

sptrans Documentation sptrans Documentation Release 0.1.0 Diogo Baeder October 31, 2013 CONTENTS 1 Changelog 3 1.1 0.1.0................................................... 3 2 sptrans Package 5 2.1 v0 Module................................................

More information

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Technical Report Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Dhiman Chakraborty, Yuvaraju B, Tom Onacki, NetApp March 2018 TR-4589 Version 1.2 Abstract NetApp OnCommand Unified Manager

More information

Monitoring Netflow with NFsen

Monitoring Netflow with NFsen Monitoring Netflow with NFsen Network Monitoring and Management Contents 1 Introduction 1 1.1 Goals................................. 1 1.2 Notes................................. 2 2 Configure Your Collector

More information

NEC Display Solutions MultiProfiler for Linux x64 Versions Installation Guide

NEC Display Solutions MultiProfiler for Linux x64 Versions Installation Guide NEC Display Solutions MultiProfiler for Linux x64 Versions 1.3.60 Installation Guide 1 ABOUT MULTIPROFILER... 4 2 SYSTEM REQUIREMENTS... 5 2.1 SUPPORTED NEC DISPLAY MODELS AND DESCRIPTION... 5 2.1.1 Minimum

More information

Copyright 2010 by Microtek International, Inc. Trademarks. Important. All rights reserved.

Copyright 2010 by Microtek International, Inc. Trademarks. Important. All rights reserved. Reference Manual Copyright 2010 by Microtek International, Inc. All rights reserved. Trademarks Microtek, the MII logo, MiPAX, MiDOCM and ScanWizard are trademarks or registered trademarks of Microtek

More information

TECHILA WORKER INSTALLATION GUIDE LINUX ADMINISTRATOR GUIDE

TECHILA WORKER INSTALLATION GUIDE LINUX ADMINISTRATOR GUIDE ADMINISTRATOR GUIDE 17 OCTOBER 2016 2/12 17 OCTOBER 2016 Disclaimer Techila Technologies Ltd. disclaims any and all warranties, express, implied or statutory regarding this document or the use of thereof

More information

Instructions for use of the FRAM Model Visualiser (FMV)

Instructions for use of the FRAM Model Visualiser (FMV) FRAM Model Visualiser instructions Page 1 Instructions for use of the FRAM Model Visualiser (FMV) Background These instructions refer to FMV version 0.2.0 June 2014 The FRAM Model Visualiser (FMV) is the

More information

Grid Engine Users Guide. 7.0 Edition

Grid Engine Users Guide. 7.0 Edition Grid Engine Users Guide 7.0 Edition Grid Engine Users Guide : 7.0 Edition Published Dec 01 2017 Copyright 2017 University of California and Scalable Systems This document is subject to the Rocks License

More information

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3 NetXplorer Centralized NetEnforcer Management Software Installation Guide P/N D357006 R3 Important Notice Important Notice Allot Communications Ltd. ("Allot") is not a party to the purchase agreement

More information

Moodle. Moodle. Deployment Guide

Moodle. Moodle. Deployment Guide Moodle Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered

More information

RAVENNA-2-SAP Converter Installation + Operation Guide

RAVENNA-2-SAP Converter Installation + Operation Guide RAVENNA-2-SAP Converter Installation + Operation Guide Version 1.0 September 2016 RAVENNA-2-SAP Converter Guide 1 Table of Contents: 1 LEGAL 3 1.1 LICENSE 3 1.2 DISCLAIMER 3 2 INTRODUCTION 4 2.1 BACKGROUND

More information

Volume Disaster Recovery Preparation Express Guide

Volume Disaster Recovery Preparation Express Guide ONTAP 9 Volume Disaster Recovery Preparation Express Guide August 2018 215-11187_F0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to use this guide... 4 Volume disaster recovery

More information

ESI Voice Router Public-Installation Guide

ESI Voice Router Public-Installation Guide ESI Voice Router Public-Installation Guide Disclaimer Every effort has been made to eliminate errors and ambiguities in the information contained in this document. Any questions concerning information

More information

Dictation Blue Manual

Dictation Blue Manual Dictation Blue Manual Dictation Blue is a professional dictation app for iphone, ipod touch and ipad. This manual describes setup and use of Dictation Blue version 10. 1 Settings 2 1.1 General 2 1.2 Dictation

More information

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2

Documentation Roadmap for Cisco Prime LAN Management Solution 4.2 Documentation Roadmap for Cisco Prime LAN Thank you for purchasing Cisco Prime LAN Management Solution (LMS) 4.2. This document provides an introduction to the Cisco Prime LMS and lists the contents of

More information

Version 1.1 March 22, Secure Installation and Operation of Your WorkCentre 4250/4260

Version 1.1 March 22, Secure Installation and Operation of Your WorkCentre 4250/4260 Version 1.1 March 22, 2010 Secure Installation and Operation of Your WorkCentre 4250/4260 Secure Installation and Operation of Your WorkCentre 4250/4260 Purpose and Audience This document provides information

More information

The Cron service allows you to register STAF commands that will be executed at a specified time interval(s).

The Cron service allows you to register STAF commands that will be executed at a specified time interval(s). Cron Service User's Guide Version 1.2.6 Last updated: March 29, 2006 Overview The Cron service allows you to register STAF commands that will be executed at a specified time interval(s). Note that Cron

More information

IF61. IBM Data Capture and Delivery Platform. User s Guide

IF61. IBM Data Capture and Delivery Platform. User s Guide IF61 IBM Data Capture and Delivery Platform User s Guide Intermec Technologies Corporation Worldwide Headquarters 6001 36th Ave.W. Everett, WA 98203 U.S.A. www.intermec.com The information contained herein

More information

NCD ThinPATH PC Installation Guide and Release Notes

NCD ThinPATH PC Installation Guide and Release Notes NCD ThinPATH PC Installation Guide and Release s Copyright Copyright 2001 by Network Computing Devices, Inc. (NCD).The information contained in this document is subject to change without notice. Network

More information

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions

ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions ColdFusion Builder 3.2 Third Party Software Notices and/or Additional Terms and Conditions Date Generated: 2018/09/10 Apache Tomcat ID: 306 Apache Foundation and Contributors This product includes software

More information

OAM Integration Kit. Version 3.0. User Guide

OAM Integration Kit. Version 3.0. User Guide OAM Integration Kit Version 3.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate OAM Integration Kit User Guide Version 3.0 May, 2016 Ping Identity Corporation 1001 17th Street,

More information

RF Scientific GPIB logger v1.0 User's manual v.1 (C) RF Scientific

RF Scientific GPIB logger v1.0 User's manual v.1 (C) RF Scientific User's manual v.1 Page 1 of 14 Table of Contents 1. 2. 3. 4. General information...3 Features...3 System requirements...3 Getting started...3 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9 Drivers and configuration...3

More information

Installing the Shrew Soft VPN Client

Installing the Shrew Soft VPN Client Windows Install Installing the Shrew Soft VPN Client ShrewVPNWindows201211-01 Global Technology Associates 3505 Lake Lynda Drive Suite 109 Orlando, FL 32817 Tel: +1.407.380.0220 Fax. +1.407.380.6080 Email:

More information

HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE

HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE HYDRODESKTOP VERSION 1.1 BETA QUICK START GUIDE A guide to help you get started using this free and open source desktop application for discovering, accessing, and using hydrologic data. September 15,

More information

OnCommand Unified Manager 7.2: Best Practices Guide

OnCommand Unified Manager 7.2: Best Practices Guide Technical Report OnCommand Unified : Best Practices Guide Dhiman Chakraborty August 2017 TR-4621 Version 1.0 Abstract NetApp OnCommand Unified is the most comprehensive product for managing and monitoring

More information

AltaVault Cloud Integrated Storage Installation and Service Guide for Cloud Appliances

AltaVault Cloud Integrated Storage Installation and Service Guide for Cloud Appliances AltaVault Cloud Integrated Storage 4.4.1 Installation and Service Guide for Cloud Appliances March 2018 215-13006_A0 doccomments@netapp.com Table of Contents 3 Contents Introduction to AltaVault cloud-based

More information

Technical Support 1600 N. Lorraine

Technical Support 1600 N. Lorraine Technical Support 1600 N. Lorraine 1-800-283-7543 Hutchinson, KS www.pdsmed.com PDS Cortex/Pervasive Version 9 Configuration and Troubleshooting Revised 8-22-2007 Disclaimer: Professional Data Services

More information

Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads

Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads Technical Report Performance Characterization of ONTAP Cloud in Amazon Web Services with Application Workloads NetApp Data Fabric Group, NetApp March 2018 TR-4383 Abstract This technical report examines

More information

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform Intellisync Mobile Suite Client Guide S60 3rd Edition Platform Published July 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright laws of the United States. RESTRICTED RIGHTS

More information

modpoll is a command line based Modbus master simulator and test utility. It is free software.

modpoll is a command line based Modbus master simulator and test utility. It is free software. Read Me Notes Revision 3.4, 2013-01-30 This Read Me file contains last-minute product information for the FieldTalk modpoll utility. modpoll is a command line based Modbus master simulator and test utility.

More information

Static analysis for quality mobile applications

Static analysis for quality mobile applications Static analysis for quality mobile applications Julia Perdigueiro MOTODEV Studio for Android Project Manager Instituto de Pesquisas Eldorado Eric Cloninger Product Line Manager Motorola Mobility Life.

More information

Internet Connection Guide

Internet Connection Guide Internet Connection Guide v1.10 CVP-509/505/503/501 PSR-S910/S710 Enjoy your instrument with Internet Direct Connection This instrument can be directly connected to the Internet, conveniently letting you

More information

AccuTerm 7 Internet Edition Connection Designer Help. Copyright Schellenbach & Assoc., Inc.

AccuTerm 7 Internet Edition Connection Designer Help. Copyright Schellenbach & Assoc., Inc. AccuTerm 7 Internet Edition Connection Designer Help Contents 3 Table of Contents Foreword 0 Part I AccuTerm 7 Internet Edition 6 1 Description... 6 2 Connection... Designer 6 3 Internet... Client 6 4

More information

Desktop Notification System 2.0

Desktop Notification System 2.0 2.0 Corporate Headquarters: Singlewire Software 2601 West Beltline Highway #510 Madison, WI 53713 2012 Singlewire. All rights reserved. 2012 Singlewire. All rights reserved. Desktop Notification System

More information

OnCommand Cloud Manager 3.2 Provisioning NFS Volumes Using the Volume View

OnCommand Cloud Manager 3.2 Provisioning NFS Volumes Using the Volume View OnCommand Cloud Manager 3.2 Provisioning NFS Volumes Using the Volume View April 2017 215-12036_B0 doccomments@netapp.com Table of Contents 3 Contents Logging in to Cloud Manager... 4 Creating NFS volumes...

More information