Client-Server Creation of Complex PDF Documents

Size: px
Start display at page:

Download "Client-Server Creation of Complex PDF Documents"

Transcription

1 - Creation of Complex Documents Gregory Milman National Institute of Allergy and Infectious Diseases http(s)://grants.niaid.nih.gov

2 Reasons to Choose at Over HTML Incremental change from paper forms Multi-platform; consistent printout Free Acrobat Reader in browser WYSIWYG nothing to learn -side format, validation and calculations -side upload/download forms and data Free Adobe FDFtoolkit for functions Can merge form and non-form pages Complex Documents May Contain: s with multiple pages Multiple forms attached together s flattened to non-form format Uploaded client documents Uploaded client files in non- format that are converted into by server Tools Used to Construct a Complex Document Our -Side Process Complex Document Pages Tools Complete a Document Tools Combine or Extract Documents Tools Validate Document Tools Microsoft NT running https and using Active Pages with VB Script Free software FDFToolkit ( AspSmartUpload ( Purchased software Acrobat ( Active Professional ( Sequel ( Word Processor Pages

3 AspSmartUpload Used to Transfer s Complementary - Tools FDF Toolkit FDF s s s s Word Processor s Flat GetFieldData Receive Submit SetFieldData Short Notes on Object Programming An object has: Properties characteristics of object Methods enables object to do something Other objects components Objects created and used by our server FdfAcx FDF ActiveX Toolkit APT Active Toolkit SmartUpload AspSmartUpload DocConverter Active Document Converter Examples: Some Acrobat s Objects Field Object Properties: name, value, type, etc. Methods: getarray, deleteitemat, etc. Document Object Properties: numpages, pagenum, title, etc. Methods: exportasfdf, getfield, submit, etc. Event Object Properties: target, name, value, etc. Methods: format, validate, mouse exit, etc.

4 Tools Used to Construct a Complex Document Sample s Tools Page Complex Document Pages Tools Complete a Document Tools Combine or Extract Documents Tools Validate Document Tools Word Processor Pages Start a Save and Retrieve Data on Flat Select D a t a selects a form. sends form to client. enters data in form. saves data to server. creates flat file. Field entries are transmitted back and forth between server and client as Data (FDF) FDF files contain only data small size rapid transmission Information on form (e.g., version) can be transmitted as read-only form field. can automatically transmit changed forms to client.

5 ASP Script Snippet Send Selected Edit a Set FdfAcX=.CreateObject("FdfApp.FdfApp") REM Send blank form Set outfdf = FdfAcX.FDFCreate FDFSet=Name Response.ContentType="application/vnd.fdf" Response.BinaryWrite outfdf.fdfsavetobuf outfdf.fdfclose Flat Select selects form data. sends FDF. FDF requests and populates form from. edits data. saves FDF data to server. creates flat file. ASP Script Snippet Send Selected Set FdfAcX=.CreateObject("FdfApp.FdfApp") REM Send FDF data that calls form Set outfdf = FdfAcX.FDFOpenFrom (FDFName) Response.ContentType="application/vnd.fdf" Response.BinaryWrite outfdf.fdfsavetobuf outfdf.fdfclose Access Issues with Low Bandwith Connections Acrobat (version 4.05 and lower) stores FDF files but not forms in cache. If jumps to link outside form, then on return the form must reload from server. Cache FDF data will populate the form. Complex forms (1MB) will take 5-15 minutes to load at low bandwith (28K) Waiting this long for a form to load is usually unacceptable.

6 Edit a Low Bandwidth Option Creating FDF to Access on Flat Select selects form data. sends FDF. FDF requests and populates form from. edits data. saves FDF data to server. creates flat file. must Save form on client machine (use AspSmartUpload). Provide full path and file name of form to server. script example Set FdfAcX=.CreateObject("FdfApp.FdfApp") Set outfdf = FdfAcX.FDFOpenFrom (FDFName) outfdf.fdfset file:/// c:\\forms\\form.pdf Response.ContentType="application/vnd.fdf" Response.BinaryWrite outfdf.fdfsavetobuf outfdf.fdfclose Saves to Modifies initiates save to server. JavaScript in selects and sends field values in FDF. creates and returns new FDF to modify form. Multiple iterations possible. JavaScript in Sends Fields to var FieldsToSend= new Array() var F for (i=1; i<numfields; i++) { F=getField(getNthFieldName(i)) if (F.value!=F.defaultValue) { FieldsToSend[n]= F.name n=n+1 } } submit ("Script.asp#FDF",true,false,FieldsToSend)

7 ASP Script Snippet Get Data Set FdfAcX=.CreateObject("FdfApp.FdfApp") Set infdf = FdfAcx.FDFOpenFromBuf (Request.BinaryRead(Request.TotalBytes)) infdf.fdfsaveto(fdfname) infdf.fdfclose REM Return a new field value to form Set outfdf = FdfAcX.FDFCreate outfdf.fdfsetvalue FieldName",NewValue,False Response.ContentType="application/vnd.fdf" Response.BinaryWrite outfdf.fdfsavetobuf outfdf.fdfclose Saves to Modifies initiates save to server. JavaScript in selects and sends field values in FDF. creates and returns new FDF to modify form. Multiple iterations possible. Example: Scripts for Multiple Interations Creating Flat from Box1 (text) Box2 (text) Validate JavaScript* Box1: desired action Box2: submit ( Box.asp#FDF",true,true, "Box1") * Validate action occurs only when value of field changes. Script Box.asp#FDF sboxvalue = infdf.fdfgetvalue("box1") if sboxvalue = "1" then infdf.fdfsetvalue "Box1","0",false else infdf.fdfsetvalue "Box1","1",false end if Use Active Toolkit to place FDF data in image layer. Resulting Flat Can be saved to client computer, But cannot be edited. Use modified template for flat file. Resulting flat file is ½ size of form file.

8 Modify Template for Flat to Achieve Minimum Size Creating Flat from Delete global and field JavaScript. Adjust field colors (white). Replace combo and drop boxes with text fields. Use FDF data that does not contain empty or default value fields. Flat Template SetFieldData form sends FDF data to server that contains no empty or default value fields. uses FDF toolkit to step through and obtain FDF fields values. uses Active toolkit to writes values to same field names in template, and to flatten remaining fields. How to Store the in the Flat ASP Script Snippet Open Toolkits Multiple Fields Flatten Leave one hidden field in flat file and use to store FDF data Data Set FdfAcX=.CreateObject("FdfApp.FdfApp") Set infdf = FdfAcx.FDFOpenFromBuf (Request.BinaryRead(Request.TotalBytes)) Set APT =.CreateObject("APToolkit.Object") r = APT.OpenOutput(OutputName) r = APT.OpenInput(TemplateName) strfieldname = "" CurrentField = ""

9 ASP Script Snippet Flatten Field and Close Sample Document Tools Page Do strfieldname = infdf.fdfnextfieldname(currentfield) If strfieldname = "" then exit DO FieldValue = infdf.fdfgetvalue(strfieldname) APT.SetFieldData strfieldname,fieldvalue,-997 CurrentFieldName = strfieldname Loop APT.SetFieldData "Data", infdf.fdfsavetostr, 0 APT.FlattenRemainingFields = true x = APT.Copy(0,0) APT.CloseInput() APT.CloseOutput() Document Tools Word Processor to Narrative at Narrative WP at uploads word processor document which converts to. uploads document for merge. views documents on. Use AspSmartUpload to upload files. Use Active DocConverter on server to convert uploaded files to. Currently support Word (with active links) and WordPerfect. Expect to include hundreds of other file types.

10 ASP Script Snippet Smart Upload Response.Buffer = true server.scripttimeout = 180 Set SmartUpload =.CreateObject("aspSmartUpload.SmartUpload") SmartUpload.AllowedsList = "doc,txt,wpd" SmartUpload.Upload For each file In U.s file.saveas(name) intcount = intcount + 1 Next Set SmartUpload = nothing ASP Script Snippet Convert Document to Set DocConverter =.CreateObject("APdocConv.Object") lret = DocConverter.Submit (IPAddress,Port,ToConvert, OutputDirectory,ErrorsDirectory, OrigDirectory,ScriptName,ScriptLang, SuportsZip,ProcessorOptions) Rem Add script to catch errors Set DocConverter = nothing Sample Merge Documents Page Merged or Extracted Pages Combine or Extract Documents Tools Select Flat s WP in at selects and orders documents. merges documents into new file. selects pages from document. extracts pages into a new file.

11 Merge and Extract Pages Use Active Toolkit to complete document by merging flat file copy of form pages with pages from uploaded word processor document and Other uploaded pages ASP Script Snippet Merge s set =.CreateObject("APToolkit.Object").AddBookmarks = false.numbering = 1 r =.OpenOutput(sMergedPath) REM For each file to merge r =.Merge(sPdf,Request.(sPageFrom), Request.(sPageTo)).CloseOutput() set = Nothing Some Closing Remarks Simple and Complex s Simple On-Line completion Single page and few fields (<50) Simple calculations with built-in Adobe functions usually accessed on server Complex Off-Line completion Multiple pages and many fields (>200) Calculations require JavaScript as Validate function may be stored on client with slow speed connection

Web Conferencing Version 8.3 Troubleshooting Guide

Web Conferencing Version 8.3 Troubleshooting Guide System Requirements General Requirements Web Conferencing Version 8.3 Troubleshooting Guide Listed below are the minimum requirements for participants accessing the web conferencing service. Systems which

More information

Novell ZENworks 10 Configuration Management SP3

Novell ZENworks 10 Configuration Management SP3 AUTHORIZED DOCUMENTATION Software Distribution Reference Novell ZENworks 10 Configuration Management SP3 10.3 November 17, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties

More information

IBM FileNet eforms Designer

IBM FileNet eforms Designer IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 Note

More information

Xtreeme Search Engine Studio Help. 2007 Xtreeme

Xtreeme Search Engine Studio Help. 2007 Xtreeme Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to

More information

PHP Tutorial From beginner to master

PHP Tutorial From beginner to master PHP Tutorial From beginner to master PHP is a powerful tool for making dynamic and interactive Web pages. PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.

More information

Presentation Reporting Quick Start

Presentation Reporting Quick Start Presentation Reporting Quick Start Topic 50430 Presentation Reporting Quick Start Websense Web Security Solutions Updated 19-Sep-2013 Applies to: Web Filter, Web Security, Web Security Gateway, and Web

More information

Presentation Layer: Three different approaches. Database Access Layer: same as above.

Presentation Layer: Three different approaches. Database Access Layer: same as above. Overview of web application development Overview of ASP HTTP request/response processing State management of the script logic Microsoft Scripting Runtime library Remote Scripting Ch 5 - ASP 1 Presentation

More information

WebSphere Business Monitor V7.0 Script adapter lab

WebSphere Business Monitor V7.0 Script adapter lab Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 Script adapter lab What this exercise is about... 1 Changes from the previous

More information

Web Hosting Features. Small Office Premium. Small Office. Basic Premium. Enterprise. Basic. General

Web Hosting Features. Small Office Premium. Small Office. Basic Premium. Enterprise. Basic. General General Basic Basic Small Office Small Office Enterprise Enterprise RAID Web Storage 200 MB 1.5 MB 3 GB 6 GB 12 GB 42 GB Web Transfer Limit 36 GB 192 GB 288 GB 480 GB 960 GB 1200 GB Mail boxes 0 23 30

More information

Sage CRM Technical Specification

Sage CRM Technical Specification Sage CRM Technical Specification Client Software This document outlines the recommended minimum software and hardware requirements for running Sage CRM. Please note that while this document refers to Sage

More information

WEB PRODUCTS SYSTEM REQUIREMENTS

WEB PRODUCTS SYSTEM REQUIREMENTS Web Products System Requirements WEB PRODUCTS SYSTEM REQUIREMENTS ICSA Software International Limited Waterman House, 41 Kingsway, London WC2B 6TP Tel: +44 (0)20 7497 5511 Fax: +44 (0)20 7497 5533 Email:

More information

Sage CRM Technical Specification

Sage CRM Technical Specification Sage CRM Technical Specification Client Software This document outlines the recommended minimum software and hardware requirements for running Sage CRM. Please note that while the document refers to Sage

More information

Sage CRM Technical Specification

Sage CRM Technical Specification Sage CRM Technical Specification Client Software This document outlines the recommended minimum software and hardware requirements for running Sage CRM. Please note that while the document refers to Sage

More information

MEGA Web Application Architecture Overview MEGA 2009 SP4

MEGA Web Application Architecture Overview MEGA 2009 SP4 Revised: September 2, 2010 Created: March 31, 2010 Author: Jérôme Horber CONTENTS Summary This document describes the system requirements and possible deployment architectures for MEGA Web Application.

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision C Issued February 2014 1 Table of Contents Overview... 3 Before You Begin... 4 Supported and Unsupported

More information

How-To: Submitting PDF forms to SharePoint from custom websites

How-To: Submitting PDF forms to SharePoint from custom websites How-To: Submitting PDF forms to SharePoint from custom websites Introduction This How-To document describes the process of creating PDF forms using PDF Share Forms tools, and posting the form on a non-sharepoint

More information

NYS OCFS CMS Contractor Manual

NYS OCFS CMS Contractor Manual NYS OCFS CMS Contractor Manual C O N T E N T S CHAPTER 1... 1-1 Chapter 1: Introduction to the Contract Management System... 1-2 CHAPTER 2... 2-1 Accessing the Contract Management System... 2-2 Shortcuts

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

What is new in Switch 12

What is new in Switch 12 What is new in Switch 12 New features and functionality: Remote Designer From this version onwards, you are no longer obliged to use the Switch Designer on your Switch Server. Now that we implemented the

More information

Documentum Desktop Client on Windows 2000 Terminal Services

Documentum Desktop Client on Windows 2000 Terminal Services Documentum Desktop Client on Windows 2000 Terminal Services Docbase Version 1.0 May 10, 2001 Documentum Desktop Client on Windows Terminal Services Page 2 Revision History Docbase Version Revised Date

More information

User-password application scripting guide

User-password application scripting guide Chapter 2 User-password application scripting guide You can use the generic user-password application template (described in Creating a generic user-password application profile) to add a user-password

More information

THE GOVERNMENT OF THE REPUBLIC OF SINGAPORE MINISTRY OF MANPOWER WP ONLINE. Technical Guidelines

THE GOVERNMENT OF THE REPUBLIC OF SINGAPORE MINISTRY OF MANPOWER WP ONLINE. Technical Guidelines THE GOVERNMENT OF THE REPUBLIC OF SINGAPORE MINISTRY OF MANPOWER WP ONLINE Technical Guidelines Last Updated: 12-July-2013 Content 1. Technical Guidelines... 3 1.1 Minimum PC Configuration... 4 1.2 Internet

More information

OHIO S EAUDIT PROCESSES RON POTTORF, EXECUTIVE ADMINISTRATOR OHIO DEPARTMENT OF TAXATION AUDIT DIVISION

OHIO S EAUDIT PROCESSES RON POTTORF, EXECUTIVE ADMINISTRATOR OHIO DEPARTMENT OF TAXATION AUDIT DIVISION OHIO S EAUDIT PROCESSES RON POTTORF, EXECUTIVE ADMINISTRATOR OHIO DEPARTMENT OF TAXATION AUDIT DIVISION File Structure within OFAST File structure viewed through Index Viewer Red Folders note empty Expanded

More information

WebEx Remote Access White Paper. The CBORD Group, Inc.

WebEx Remote Access White Paper. The CBORD Group, Inc. WebEx Remote Access White Paper The CBORD Group, Inc. Document Revision: 1 Last revised: October 30, 2007 Changes are periodically made to the information contained in this document. While every effort

More information

Porting Legacy Windows Applications to the Server and Web

Porting Legacy Windows Applications to the Server and Web Porting Legacy Windows Applications to the Server and Web About TX Text Control.NET Server: TX Text Control.NET Server is a fully programmable word processing engine for deployment in an ASP.NET server

More information

PDF Portable Document Format

PDF Portable Document Format PDF Portable Document Format Q & A: PDF...1 What is a PDF file?... 1 What are the benefits?... 1 How simple is it to use?... 1 Is it possible to cut and paste text from a.pdf file?... 2 PDF Programs: (free,

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

Government Girls Polytechnic, Bilaspur

Government Girls Polytechnic, Bilaspur Government Girls Polytechnic, Bilaspur Name of the Lab: Internet & Web Technology Lab Title of the Practical : Dynamic Web Page Design Lab Class: CSE 6 th Semester Teachers Assessment:20 End Semester Examination:50

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: NN40040-302 Document Status: Standard Document Version: 04.00 Part Code: N0060637 Date: June 2006 Copyright 2005

More information

The Commerce Trust Company

The Commerce Trust Company The Commerce Trust Company WEALTH MANAGER Overview Guide New Page Layout The pages within Wealth Manager have been designed to provide a consistent experience throughout a vast array of features. Each

More information

Simulation Trading Table of Contents

Simulation Trading Table of Contents Simulation Trading Table of Contents 1. Systems Requirements for Simulation (Mock) Trading 2. Ports to be opened 3. How to Download ODIN DIET software and Installation Process? 4. Log in to SSL 5. Log

More information

Polycom CMA System Upgrade Guide

Polycom CMA System Upgrade Guide Polycom CMA System Upgrade Guide 5.0 May 2010 3725-77606-001C Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks and/or

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision E Issued April 2014 1 Table of Contents Overview... 3 Before You Begin... 4 Supported and Unsupported Web

More information

PLATO Learning Environment System and Configuration Requirements for workstations. October 27th, 2008

PLATO Learning Environment System and Configuration Requirements for workstations. October 27th, 2008 PLATO Learning Environment System and Configuration Requirements for workstations October 27th, 2008 Windows 2000 Professional with SP4 Windows XP Professional with SP2 Windows XP Home Edition with SP2

More information

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06 Business Intelligence Launch Pad User Guide Table of Contents 1 Document history....7 2 Getting started

More information

Book em! Email Attachments

Book em! Email Attachments Book em! Email Attachments 2003 Outside Technology All Rights Reserved General Info and Overview As of version 4.5, documents saved on your computer s hard drive may be attached to confirmation and mail

More information

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic. OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does

More information

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration

User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves

More information

JAVASCRIPT AND COOKIES

JAVASCRIPT AND COOKIES JAVASCRIPT AND COOKIES http://www.tutorialspoint.com/javascript/javascript_cookies.htm Copyright tutorialspoint.com What are Cookies? Web Browsers and Servers use HTTP protocol to communicate and HTTP

More information

Serving PDFs on the Web

Serving PDFs on the Web Serving PDFs on the Web Leonard Rosenthol Chief Technology Officer PDF Sages, Inc. Overview Static Files Forms Simple Data Exchange Server-Side Processing Form Merging Stamping/Overlaying Dynamic Production

More information

User Management Resource Administrator 7.2

User Management Resource Administrator 7.2 User Management Resource Administrator 7.2 Table Of Contents What is User Management Resource Administrator... 1 UMRA Scripts... 1 UMRA Projects... 1 UMRA Software... 1 Quickstart - Sample project wizard...

More information

Version 1.0.0 USER GUIDE

Version 1.0.0 USER GUIDE Magento Extension Grid Manager Version 1.0.0 USER GUIDE Last update: Aug 13 th, 2013 DragonFroot.com Grid Manager v1-0 Content 1. Introduction 2. Installation 3. Configuration 4. Troubleshooting 5. Contact

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Remote Deposit Capture Installation Guide

Remote Deposit Capture Installation Guide Remote Deposit Capture Installation Guide Please contact businessbanking@farmingtonbankct.com or call 860-284-6549 with any questions. Remote Deposit Capture Installation Instructions It is necessary to

More information

eform Suite for TeleForm Create and Process Intelligent eforms in PDF and HTML

eform Suite for TeleForm Create and Process Intelligent eforms in PDF and HTML eform Suite for TeleForm Create and Process Intelligent eforms in PDF and HTML Double the Value of your TeleForm Solution The product eform Suite extends your TeleForm solution with the ability to create

More information

ReadMe ManageX 4.23. June 12, 2000

ReadMe ManageX 4.23. June 12, 2000 ReadMe ManageX 4.23 June 12, 2000 Contents New Features & Enhancements Upgrade Procedures System Requirements For ManageX 4.23 For Novell NetWare support For Active Directory support For the WebServer

More information

Contents. Introduction... 2. Downloading the Data Files... 2

Contents. Introduction... 2. Downloading the Data Files... 2 Creating a Web Page Using HTML Part 3: Multi-page Management and Uploading INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.1 Summer 2009 Contents Introduction... 2 Downloading

More information

Validating Digital Signatures in Adobe

Validating Digital Signatures in Adobe Validating Digital Signatures in Adobe Table of Contents Validating Digital Signatures in Adobe...1 1. Validate the Signature using Windows Integration...3 2. Add the Root Certificate on Adobe Trusted

More information

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing User s Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Sage ERP MAS 90 Sage ERP MAS 200 Sage ERP MAS 200 SQL. Installation and System Administrator's Guide 4MASIN450-08

Sage ERP MAS 90 Sage ERP MAS 200 Sage ERP MAS 200 SQL. Installation and System Administrator's Guide 4MASIN450-08 Sage ERP MAS 90 Sage ERP MAS 200 Sage ERP MAS 200 SQL Installation and System Administrator's Guide 4MASIN450-08 2011 Sage Software, Inc. All rights reserved. Sage, the Sage logos and the Sage product

More information

BU Digital Print Service. High Resolution PDFs

BU Digital Print Service. High Resolution PDFs BU Digital Print Service High Resolution PDFs Introduction As part of the BU Digital Print service files can be uploaded to the Web to Print (W2P) portal for printing however the quality of the print is

More information

Hardware/Software Specifications for Self-Hosted Systems (Multi-Server)

Hardware/Software Specifications for Self-Hosted Systems (Multi-Server) Hardware/Software Specifications for Self-Hosted Systems (Multi-Server) EBIX, INC. 1 Ebix Way, Johns Creek, GA 30097 Rev. 07/2015 2015 Ebix, Inc. and its subsidiaries. All Rights Reserved. This software

More information

UNGASS CRIS 2008

UNGASS CRIS 2008 version 1.0 UNGASS DATA ENTRY SOFTWARE: GLOBAL REPORTING 2008 TROUBLESHOOTING GUIDE Prepared by UNAIDS Evidence, Monitoring, and Policy Department UNAIDS 20, Avenue Appia 1211 Geneva 27 Switzerland Tel.

More information

Inmagic Content Server v9 Standard Configuration Technical Guidelines

Inmagic Content Server v9 Standard Configuration Technical Guidelines Inmagic Content Server v9.0 Standard Configuration Technical Guidelines 5/2006 Page 1 of 15 Inmagic Content Server v9 Standard Configuration Technical Guidelines Last Updated: May, 2006 Inmagic, Inc. All

More information

Internet Technologies

Internet Technologies QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies HTML Forms Dr. Abzetdin ADAMOV Chair of Computer Engineering Department aadamov@qu.edu.az http://ce.qu.edu.az/~aadamov What are forms?

More information

AvePoint Record Rollback for Microsoft Dynamics CRM

AvePoint Record Rollback for Microsoft Dynamics CRM AvePoint Record Rollback for Microsoft Dynamics Release Notes 1 AvePoint Record Rollback 3.1.2 for Microsoft Dynamics Release Date: January 30, 2014 Required Minimum Version for Direct Update Supported

More information

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

webmethods Certificate Toolkit

webmethods Certificate Toolkit Title Page webmethods Certificate Toolkit User s Guide Version 7.1.1 January 2008 webmethods Copyright & Document ID This document applies to webmethods Certificate Toolkit Version 7.1.1 and to all subsequent

More information

Needles The Customizable Case Management Software for Law Firms

Needles The Customizable Case Management Software for Law Firms Needles The Customizable Case Management Software for Law Firms Technical Specifications Server Workstation Operating System 1 RECOMMENDED: Windows Server 2012 R2 Windows Small Business Server 2011 Windows

More information

Web Dashboard User Guide

Web Dashboard User Guide Web Dashboard User Guide Version 10.2 The software supplied with this document is the property of RadView Software and is furnished under a licensing agreement. Neither the software nor this document may

More information

Needles The Customizable Case Management Software for Law Firms

Needles The Customizable Case Management Software for Law Firms Needles The Customizable Case Management Software for Law Firms Technical Specifications Server Workstation Operating System 1 RECOMMENDED: Windows Server 2012 or 2012 R2 Windows Small Business Server

More information

BillQuick Web i Time and Expense User Guide

BillQuick Web i Time and Expense User Guide BillQuick Web i Time and Expense User Guide BQE Software Inc. 1852 Lomita Boulevard Lomita, California 90717 USA http://www.bqe.com Table of Contents INTRODUCTION TO BILLQUICK... 3 INTRODUCTION TO BILLQUICK

More information

Adobe Acrobat 6.0 Professional

Adobe Acrobat 6.0 Professional Adobe Acrobat 6.0 Professional Manual Adobe Acrobat 6.0 Professional Manual Purpose The will teach you to create, edit, save, and print PDF files. You will also learn some of Adobe s collaborative functions,

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

Web Pages. Static Web Pages SHTML

Web Pages. Static Web Pages SHTML 1 Web Pages Htm and Html pages are static Static Web Pages 2 Pages tagged with "shtml" reveal that "Server Side Includes" are being used on the server With SSI a page can contain tags that indicate that

More information

New Features Overview

New Features Overview Master Web Site Development AceHTML 6 Pro is a highly effective tool that allows you to build and manage professional Web sites with ease, control, and efficiency. By balancing power and flexibility, AceHTML

More information

Fig. 1-5 The "Settings have been changed." confirmation screen appears. Click Reboot. Fig. 1-1 Click Properties.

Fig. 1-5 The Settings have been changed. confirmation screen appears. Click Reboot. Fig. 1-1 Click Properties. Note: If you do not have a FTP server running contact your local IT Administrator or use another method to retrieve your scanned document(s). For instance the Scan Driver or Web Browser. Fig. 1-3 Place

More information

Quick Guide EDI/IDoc Interfacing to SAP ECC from External System

Quick Guide EDI/IDoc Interfacing to SAP ECC from External System Quick Guide EDI/IDoc Interfacing to SAP ECC from External System Applies to: Up to ECC 6.0. For more information, visit the ABAP homepage. Summary IDoc Interface: EDI Application Scenario The application

More information

Using PDF Files in CONTENTdm

Using PDF Files in CONTENTdm Using PDF Files in CONTENTdm CONTENTdm uses the Adobe PDF Library to provide features for efficient processing of born-digital documents in Portable Document Format (PDF). PDF files and PDF compound objects

More information

Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7

Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7 Citrix EdgeSight for Load Testing User s Guide Citrx EdgeSight for Load Testing 2.7 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Adobe LiveCycle : Release overview and migration planning for business managers

Adobe LiveCycle : Release overview and migration planning for business managers Adobe LiveCycle : Release for business managers BUSINESS WHITE PAPER TABLE OF CONTENTS 1 Purpose of the document 1 Background 1 Why migration is recommended 1 Migration strategy 2 Overview of 8 Available

More information

Previewing & Publishing

Previewing & Publishing Getting Started 1 Having gone to some trouble to make a site even simple sites take a certain amount of time and effort it s time to publish to the Internet. In this tutorial we will show you how to: Use

More information

Exemplary Audit Report vonage.com

Exemplary Audit Report vonage.com Exemplary Audit Report vonage.com Prepared by Robert Drózd on 15 July 2007. Reviewed and published on 11 October 2009. For more information, see: www.webaudit.pl This work is licensed under a Creative

More information

(These instructions are only meant to get you started. They do not include advanced features.)

(These instructions are only meant to get you started. They do not include advanced features.) FrontPage XP/2003 HOW DO I GET STARTED CREATING A WEB PAGE? Previously, the process of creating a page on the World Wide Web was complicated. Hypertext Markup Language (HTML) is a relatively simple computer

More information

Adobe Acrobat X Pro Forms

Adobe Acrobat X Pro Forms Adobe Acrobat X Pro Forms Course objectives: Create interactive forms Manage form fields and properties Use forms in Adobe Reader Use PDF Actions Digital Signatures This course does not cover LiveCycle.

More information

AssetWise Performance Management. APM Remote Upgrade Guide

AssetWise Performance Management. APM Remote Upgrade Guide AssetWise Performance Management APM Remote Upgrade Guide Trademark Notice Bentley, the B Bentley logo, AssetWise, Ivara, the Ivara EXP logo, Ivara Work Smart, Aladon and RCM2 are either registered or

More information

How to Mail Merge PDF Documents

How to Mail Merge PDF Documents How to Mail Merge PDF Documents A step-by-step guide to creating personalized documents Table of Contents What is a mail merge?... 2 What do I need to start?... 2 Step 1: How to create a PDF document?...

More information

Digital Workflow How to make & use digital signatures

Digital Workflow How to make & use digital signatures Last updated: 11/25/08 Digital Workflow How to make & use digital signatures Digital Signatures make sense Digital signatures save time, which obviously translates into monetary savings as well. And, by

More information

PLATO Learning Environment 2.0 System and Configuration Requirements. Dec 1, 2009

PLATO Learning Environment 2.0 System and Configuration Requirements. Dec 1, 2009 PLATO Learning Environment 2.0 System and Configuration Requirements Dec 1, 2009 Table of Contents About this document... 3 Document Change Log... 4 System & Configuration Requirements... 5 Workstation

More information

Create a PDF File. Tip. In this lesson, you will learn how to:

Create a PDF File. Tip. In this lesson, you will learn how to: Create a PDF File Now that you ve seen what an ETD looks like and how to browse the contents, it s time to learn how to convert your own thesis or dissertation into a PDF file. There are several different

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Scanning Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Scanning Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Scanning Guide 2009 KYOCERA MITA Corporation All rights reserved Preface Thank you for purchasing Multifunctional Digital Color Systems. This manual provides instructions

More information

BreezingForms Guide. 18 Forms: BreezingForms

BreezingForms Guide. 18 Forms: BreezingForms BreezingForms 8/3/2009 1 BreezingForms Guide GOOGLE TRANSLATE FROM: http://openbook.galileocomputing.de/joomla15/jooml a_18_formulare_neu_001.htm#t2t32 18.1 BreezingForms 18.1.1 Installation and configuration

More information

Generating lesson plans with. Adobe Acrobat

Generating lesson plans with. Adobe Acrobat Generating lesson plans with Adobe Acrobat Introduction Being a teacher requires so many non-teaching administrative tasks that sometimes just teaching gets lost in the paper shuffle. You can automate

More information

1. Chat4Support Introduction

1. Chat4Support Introduction 1. Chat4Support Introduction Chat4Support is a CodingBest product that helps businesses to improve their sales and customer service on the Internet. Website visitors just only need to click on the chat

More information

Installing and Configuring vcenter Support Assistant

Installing and Configuring vcenter Support Assistant Installing and Configuring vcenter Support Assistant vcenter Support Assistant 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

AvePoint Record Rollback for Microsoft Dynamics CRM. Release Notes

AvePoint Record Rollback for Microsoft Dynamics CRM. Release Notes AvePoint Record Rollback for Microsoft Dynamics Release Notes Table of Contents What s New in This Doucment... 3 AvePoint Record Rollback 3.1.3 for Microsoft Dynamics... 4 AvePoint Record Rollback 3.1.2

More information

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 22 Ref: GC349_v1.1

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 22 Ref: GC349_v1.1 Web Hosting Training Guide Safari version Doc Ref: GC349_v1.1 Author: Glow Team Page 1 of 22 Ref: GC349_v1.1 Contents Introduction... 3 What is the Glow Web Hosting service?... 3 Why use the Glow Web Hosting

More information

Introduction to ASP. Are you sick of static HTML pages? Do you want to create dynamic web pages? Do you

Introduction to ASP. Are you sick of static HTML pages? Do you want to create dynamic web pages? Do you Introduction to ASP Introduction Are you sick of static HTML pages? Do you want to create dynamic web pages? Do you want to enable your web pages with database access? If your answer is Yes, ASP might

More information

PLATO Learning Environment System and Configuration Requirements. for workstations. April 14, 2008

PLATO Learning Environment System and Configuration Requirements. for workstations. April 14, 2008 PLATO Learning Environment System and Configuration Requirements Version 1.1 (for use with Academic Systems Algebra only) for workstations April 14, 2008 Windows 2000 Professional with SP4 Windows XP Professional

More information

Hardware/Software Requirements For Self-Hosting Multi Server

Hardware/Software Requirements For Self-Hosting Multi Server Hardware/Software Requirements For Self-Hosting Multi Server Ebix recommends two or more servers for sites with more than 20 active users. The first step is deciding which type of configuration would best

More information

FAQ. F-Secure Online Backup

FAQ. F-Secure Online Backup F-Secure Online Backup Before installation... 3 Does the F Secure Online Backup program work if there are other online backup programs installed on my computer?... 4 Are two online backup programs better

More information

Aspera Connect User Guide

Aspera Connect User Guide Aspera Connect User Guide Windows XP/2003/Vista/2008/7 Browser: Firefox 2+, IE 6+ Version 2.3.1 Chapter 1 Chapter 2 Introduction Setting Up 2.1 Installation 2.2 Configure the Network Environment 2.3 Connect

More information

Creating Web-Based EDI Applications with AJAX Joseph R. McVerry American Coders, Ltd & Ralph Naylor June 28, 2006

Creating Web-Based EDI Applications with AJAX Joseph R. McVerry American Coders, Ltd & Ralph Naylor June 28, 2006 Creating Web-Based EDI Applications with AJAX Joseph R. McVerry, Ltd & Ralph Naylor June 28, 2006, Ltd. Post Office Box 97462 Raleigh, NC 27624 (919) 846-2014 www.americancoders.com Table of Contents Creating

More information

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.3 Prepared for: Directorate of Preparedness and Response (FEMA) Prepared by:

More information

Lecture 2. Internet: who talks with whom?

Lecture 2. Internet: who talks with whom? Lecture 2. Internet: who talks with whom? An application layer view, with particular attention to the World Wide Web Basic scenario Internet Client (local PC) Server (remote host) Client wants to retrieve

More information

Handling of "Dynamically-Exchanged Session Parameters"

Handling of Dynamically-Exchanged Session Parameters Ingenieurbüro David Fischer AG A Company of the Apica Group http://www.proxy-sniffer.com Version 5.0 English Edition 2011 April 1, 2011 Page 1 of 28 Table of Contents 1 Overview... 3 1.1 What are "dynamically-exchanged

More information

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide INFOIMAGE FOLDER ON WINDOWS NT Connector for Microsoft Exchange Unisys Getting Started Guide Copyright 1999 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

Rich-Internet Anwendungen auf Basis von ColdFusion und Ajax

Rich-Internet Anwendungen auf Basis von ColdFusion und Ajax Rich-Internet Anwendungen auf Basis von ColdFusion und Ajax Sven Ramuschkat SRamuschkat@herrlich-ramuschkat.de München & Zürich, März 2009 A bit of AJAX history XMLHttpRequest introduced in IE5 used in

More information