.NET Programming Guide. Server

Size: px
Start display at page:

Download ".NET Programming Guide. Server"

Transcription

1 .NET Programming Guide Server

2 1 Overview Installation Prerequisites Internet Information Server (IIS) API Proxy Global Assembly Cache The.NET Sample Project Architecture Call Sequence Samples Filter Cache EngineFactory PropertiesChecker Further examples Printing Dynamic Properties NET Viewer Example... 19

3 1 Overview i-net Clear Reports.NET is a fully-featured reporting solution. With i-net Clear Reports Server.NET you have the possibility to embed report rendering and printing into your existing.net application. This guide gives a few examples on how to do this. For further information have a look at the API for Clear Reports.NET Page 2

4 2 Installation In order to embed i-net Clear Reports Server.NET into your application, you first need an installation of i-net Clear Reports Server.NET 2011 or higher. You can download the setup file from our website. 2.1 Prerequisites.NET framework 3.0 or higher Windows XP, Vista or Windows 7 Windows 2003 and newer 32-bit and 64-bit compatible about 250MB free disk space 2.2 Internet Information Server (IIS) This is for the case that you are using the IIS for your applications. You can invoke the Clear Reports API from within you web appliction. Additionally you could use the Proxy example if you need a proxy API For using the API for your web projects that run on the IIS it is recommended to install i-net Clear Reports in the Global Assembly Cache (GAC). This improves the startup speed and reduces the needed resources of the IIS. It can also eliminate some problems with security restrictions Proxy There is an example proxy that can be used with the IIS. Find this example in the folder "\client\documentation\samples\asp.net" of the installation Page 3

5 folder. There is a small *.aspx file that forwards the client requests to the i- net Clear Reports service. If you call this script in your aspx application then you can control the report generation with the URL parameters. 2.3 Global Assembly Cache The setup of i-net Clear Reports Server.NET installs all available assemblies to the subfolder 'bin'. Instead of linking the dll files from the installation folder, you can add them to the Global Assembly Cache (GAC). This is done by simply copying the required files into the folder '%SystemRoot%\assembly'. Using the Global Assembly Cache has the following advantages: The loading from GAC needs less overhead and your application will always load the correct versions The assemblies run with full trust by default and therefore will work in every web application 2.4 The.NET Sample Project This project contains all the classes of the samples used in this guide. You will find some more examples in that project. To find the samples go the folder "\client\documentation\samples\" of the Clear-Reports.NET installation folder. When using the sample project, make sure the references link to the installation folder of i-net Clear Reports. By default this is "c:\program Files\inet Clear Reports.NET\bin". If you need to change the references, the easiest is to simple use a text editor and change them manually in the Page 4

6 .csproj File. If dlls from the lib directory are needed, for example the database drivers, the dlls need to be copied to the output directory. To do this add the folder "lib" in Visual Studio project and copy the needed dlls there. Add the dlls to the project and set the property "Build Action" to "Content" and the property "Copy to output directory" to "Copy if newer". Note: Microsoft Visual Studio 2010 was used for the creation of the project. Page 5

7 3 Architecture To help you to understand the possible changes and implementations that can be done, this call sequence shows you the main entry points for an adaption. Most of the named classes and methods can be overwritten to provide own functionality. 3.1 Call Sequence This graph shows the call sequence of a request for static content, the report viewer and the report rendering. It helps to identify the entry points for your own program logic. Page 6

8 Page 7

9 Page 8

10 Page 9

11 4 Samples The following samples are a selection of what is possible with your installation of i-net Clear Reports Server.NET. They only cover the basics to fulfill the given scenario. Have a look at the chapter The.NET Sample Project for the source files. Each sample requires the IKVM assembly files in order to be executed successfully. The following assemblies must be added as references: IKVM.AWT.WinForms.dll IKVM.OpenJDK.Beans.dll IKVM.OpenJDK.Core.dll IKVM.OpenJDK.Jdbc.dll IKVM.OpenJDK.Media.dll IKVM.OpenJDK.Misc.dll IKVM.OpenJDK.Naming.dll IKVM.OpenJDK.Remoting.dll IKVM.OpenJDK.Security.dll IKVM.OpenJDK.SwingAWT.dll IKVM.OpenJDK.Text.dll IKVM.OpenJDK.Util.dll IKVM.OpenJDK.XML.API.dll IKVM.Runtime.dll IKVM.Runtime.JNI.dll If there are further assemblies required, they will be listed in the according sample. Note that the examples in the sample files contain the needed references. 4.1 Filter When using a servlet filter, you have complete control over the Page 10

12 input(javax.servlet.httpservletrequest) and output(javax.servlet.httpservletresponse). Have a look at the class UserInjection.cs in the samples directory for a detailed example. Create a class that extends from the interface javax.servlet.filter. Because it is executed before all other classes the filter has an effect both on the rendering and on the remote access. The important method to implement is: public void dofilter(servletrequest request, ServletResponse response, FilterChain chain){} To add a servlet filter to i-net Clear Reports.NET firstly build it into a dll or a executable and put those into a lib folder that is defined the Category "Customization" in the Configuration Manager. Secondly, add the class name (with namespace) In the category "Customization" in property "Servlet Filter". Now a restart of the server is necessary. 4.2 Cache Reports, rendered by i-net Clear Reports, are stored in a cache mechanism which can be administrated in the Configuration Manager. The available cache types depend on the purchased license. For some output formats like the Applet Viewer or HTML the server will send the rendering result in multiple steps. Therefore it is necessary to cache the results between different requests. Also, with the cache it is possible to share the rendered results between multiple users. Please have a look at the Cache settings in the Confiugration Manager to check your current settings. Page 11

13 This examples shows how to use the cache to execute an existing report file as PDF and retrieve the page data. For further details on the possible cache features, have a look at the Cache API documentation. The following assembly is required for this sample: ClearReports.dll // Get the current cache instance according to the // administrated type Cache cache = Cache.GetCache(); // Define the report and optional properties for rendering. // Note: The report "mysamplereport.rpt" must exist in the current // working directory. Properties reportproperties = new Properties(); reportproperties.put("report", "mysamplereport.rpt"); // Adding the PDF export property as the target format reportproperties.put("export_fmt", "pdf"); // Create a new cache key to the provided properties ReportCacheKey cachekey = cache.getkey(reportproperties); // Now execute the report and return the number of pages. If the // report is already cached, // the method will return immediately. int pagecount = cache.getpagecountandwait(cachekey); // Now iterate through the pages and request the data for // each page for (int pagenumber = 1; pagenumber <= pagecount; pagenumber++) { byte[] pagedata = cache.getpageandwait(cachekey, pagenumber); // Now this page can be processed further... } Page 12

14 You can find more samples for the usage of the Cache API in the Java code samples directory: "<installation directory>/client/documentation/samples/cache". 4.3 EngineFactory The implementation of an own EngineFactory allows the manipulation of the requested properties to generate a cache key or engine with specified parameters. This example shows how to create an own EngineFactory that caches the executed reports independently from the specified parameters (prompts etc.). The created engine uses another report file if the requested report file name ends with "Report1.rpt". More manipulation of the report properties is possible. The easiest way is to extend EngineFactoryImpl and to override the method you want to change. Alternatively the interface EngineFactory must be implemented in its entirety. The Cache class itself allows the setting of the own EngineFactory instance which then is used for each report rendering by the cache API. Have a look at the Cache API documentation and EngineFactory API for further details on what is possible. The following assembly is required for this sample: ClearReports.dll Page 13

15 class MyEngineFactory : EngineFactoryImpl { public override Engine CreateEngine(Properties p) { // Check the report from the properties and replace all // "report1.rpt" files with another report. Object report = p.get("report"); if (report!= null && report.tostring().endswith("report1.rpt")) { p.put("report", "file:/c:/linkedreports/linked1.rpt"); } // Now create the engine and set the report. Engine engine = new Engine(p.get("export_fmt").ToString()); engine.setreportfile(p.get("report").tostring()); // Other properties can be set here to the engine // (prompts and so on) return engine; } public override ReportCacheKey GetKey(Properties p) { String report = p.get("report").tostring(); String exportformat = p.get("export_fmt").tostring(); // Use no parameters for key generation. This will ensure // that the cache's report is independent from the // parameters the user has set. String parameters = null; } } return new ReportCacheKey(report, parameters, exportformat, 0); After the implementation of the EngineFactory, it must be activated with the following code which must be called before the reports are executed. Page 14

16 EngineFactory myfactory = new MyEngineFactory(); Cache.SetEngineFactory(myFactory); 4.4 PropertiesChecker In order to manipulate the properties before executing a report file, the interface PropertiesChecker has be implemented. It allows you to change, remove or add properties at several points in time. Before the report server creates and sends back a HTML page with the viewer embedded. Right before the engine examines the report file. Right after the engine has examined the report file. This example shows how to create your own PropertiesChecker and activate it in the current configuration. See PropertyChecker.cs in the examples. Have a look at the PropertiesChecker API documentation for further details. The following assembly is required for this sample: ClearReports.dll Page 15

17 public class MyPropertyChecker : PropertiesChecker { public void CheckHtmlPageProperties(java.util.Properties p) { // before returning viewer HTML page } public void CheckProperties(java.util.Properties p, object obj) { // before engine check } public void CheckProperties(Engine e, java.util.properties p, object obj) { // after engine check } } After the implementation of the PropertiesChecker, it can be activated with the following code which must be called before the report server is started. Configuration current = ConfigurationManager.GetInstance().Current; current.put("propertychecker", typeof(mypropertychecker).fullname); // Start the server now Listener.Main(null); Page 16

18 5 Further examples 5.1 Printing i-net Clear Reports allows you to embed the printing of a report from your server without showing the viewer window. You need to specify an URL to a running i-net Clear Reports Server with the report parameter set. This example shows how to create the render data instance, configure the printer and start the printing process. A "RenderData" object is created from an HTTP report URL to a report on a i-net Clear Reports Server. The i-net Clear Reports Server is running on the same machine, listening on port To print the report directly, the default printer of the system is used. The paper size, orientation and margins are retrieved from the report settings. The following assembly is required for this sample: CR-Viewer.dll Page 17

19 // create RenderData for the requested report RenderData data = new URLRenderData (" HashPrintRequestAttributeSet attributeset = PrinterJob job = PrinterJob.getPrinterJob(); new HashPrintRequestAttributeSet(); // use default print service job.setprintservice(printservicelookup.lookupdefaultprintservice()) ; // create the viewer print job and start it PrinterJobProgress progress = new PrinterJobProgress (null, job, attributeset, data); progress.startprogress(); The following code sets additional print attributes like paper format, printable area and orientation. There are more attributes available, than currently used. Each attribute is an instance of the class javax.print.attribute.printrequestattribute: Page 18

20 // selecting a paper type attributeset.add(mediasizename.na_letter); // force form print (ignores margins and resize), should be used // for form reports attributeset.add(new FormPrint()); // Changing the margins of the selected paper // (to 1 inch on all sides) MediaSize size = MediaSize.getMediaSizeForName (MediaSizeName.NA_LETTER); float width = size.getx(mediaprintablearea.inch); float height = size.gety(mediaprintablearea.inch); MediaPrintableArea area = new MediaPrintableArea(1, 1, width - 2, height - 2, MediaPrintableArea.INCH); // switching from portrait to landscape attributeset.add(orientationrequested.landscape); 5.2 Dynamic Properties Dynamic Properties are a feature of the Scheduler (Plus license needed) to create property sets via customized code. Please have a look at the guide for the scheduler for more details. 5.3.NET Viewer Example The.NET Viewer shows an example of how you could visualize a report in you.net application. Internally it is using a Web-control to show the reports. Find this example in the samples folder. This example comes with source files. Page 19

.NET Programming Guide

.NET Programming Guide .NET Programming Guide 1 Overview... 2 2 Installation... 3 2.1 Prerequisites... 3 2.2 Internet Information Server (IIS)... 3 2.2.1 API... 3 2.2.2 Proxy... 3 2.3 Global Assembly Cache... 4 3 Samples...

More information

1 Overview Packages Important Classes... 7

1 Overview Packages Important Classes... 7 .NET Guide Viewer 1 Overview... 2 1.1 Where do I find the example files?... 2 1.2 Introduction... 2 1.3 Implemented features... 2 1.4 URL Parameter... 3 1.4.1 Implemented URL Parameter... 3 1.4.2 Ignored

More information

1. Brief introduction of PDF Pinter

1. Brief introduction of PDF Pinter User Manual of VeryDOC PDF Printer 1. Brief introduction of PDF Pinter... 1 2. How to use... 2 2.1 Download and install... 2 2.2 How to register it... 2 3. When use it as virtual printer... 3 3.1 Set PDF

More information

EASYLABEL Net Print Server

EASYLABEL Net Print Server EASYLABEL Net Print Server Introduction EASYLABEL Net Print Server (ELNPS) is an application that provides a web browser-based interface for label selection and printing. Users of web browsers on Windows

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

WPF Viewer for Reporting Services 2008/2012 Getting Started

WPF Viewer for Reporting Services 2008/2012 Getting Started WPF Viewer for Reporting Services 2008/2012 Getting Started Last modified on: July 9, 2012 Table of Content Introduction... 3 Prerequisites... 3 Creating application using Microsoft SQL 2008/2008 R2 /2012

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation Software Release 6.1 January 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Measurement Studio Measurement Computing Edition

Measurement Studio Measurement Computing Edition RELEASE NOTES Measurement Studio Measurement Computing Edition Installation Requirements These release notes introduce Measurement Studio Measurement Computing Edition 8.1.1. Refer to this document for

More information

The Printer Out plugin PRINTED MANUAL

The Printer Out plugin PRINTED MANUAL The Printer Out plugin PRINTED MANUAL Printer Out plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

Copyright 2017 Softerra, Ltd. All rights reserved

Copyright 2017 Softerra, Ltd. All rights reserved Copyright 2017 Softerra, Ltd. All rights reserved Contents Introduction Security Considerations Installation Configuration Uninstallation Automated Bulk Enrollment Troubleshooting Introduction Adaxes Self-Service

More information

The following information is intended to get you up and running as quickly as possible and covers the following: m contents of the box m about online

The following information is intended to get you up and running as quickly as possible and covers the following: m contents of the box m about online 1 Installing Your Software The following information is intended to get you up and running as quickly as possible and covers the following: m contents of the box m about online help m Shake 3 system requirements

More information

Addoro Local 3.0. Installation and Configuration

Addoro Local 3.0. Installation and Configuration Addoro Local 3.0 Installation and Configuration Overview of Addoro Local Addoro Local consists of two Windows Service applications that Addoro customers installs on their local network. Addoro Local Print

More information

ECWePA (Easily Create Web Photo Album)

ECWePA (Easily Create Web Photo Album) 1. General ECWePA (Easily Create Web Photo Album) The ECWePA (Easily Create Web Photo Album) application was developed to easily create HTML photo albums. With minimal effort, you can quickly create photo

More information

INSTALLING ADOBE LIVECYCLE WORKBENCH 11

INSTALLING ADOBE LIVECYCLE WORKBENCH 11 INSTALLING ADOBE LIVECYCLE WORKBENCH 11 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: About This Document 1.1 Who should

More information

OrgPublisher 11 EChart Rich and Thin Client Comparison

OrgPublisher 11 EChart Rich and Thin Client Comparison OrgPublisher 11 EChart Rich and Thin Client Comparison Table of Contents Table of Contents EChart Rich Client... 3 EChart publishing can:... 3 In order to publish an EChart, you must:... 4 EChart Thin

More information

VM PACS Administrator Manual VM PACS. Administrators Manual.

VM PACS Administrator Manual VM PACS. Administrators Manual. VM PACS Administrators Manual 1 Table of contents RIS Integration Tab 3 Paths 4 User Control 5 Create User Roles 5 User Roles Configuration 6 User Creation 6 Report Options 7 Dicom Nodes 8 Send advanced

More information

Legal Notes. Regarding Trademarks. Models supported by the GX printer driver KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. Models supported by the GX printer driver KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Connect Install Guide

Connect Install Guide Connect Install Guide Version 3.2 Publication Date: December 16, 2013 Copyright Metalogix International GmbH 2008-2013. All Rights Reserved. This software is protected by copyright law and international

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

Addoro for Axapta 2009

Addoro for Axapta 2009 Addoro for Axapta 2009 Installation and Configuration Overview of Addoro for Axapta 2009 Addoro for Axapta 2009 consists of two Windows Service applications that Addoro customers installs on their local

More information

Large images added to a webpage can have a detrimental effect to your site.

Large images added to a webpage can have a detrimental effect to your site. 1. Photo Resizing Large images added to a webpage can have a detrimental effect to your site. Large images are slow to load and can frustrate users of your site who may leave your site rather than wait

More information

Syncfusion Report Platform. Version - v Release Date - March 22, 2017

Syncfusion Report Platform. Version - v Release Date - March 22, 2017 Syncfusion Report Platform Version - v2.1.0.8 Release Date - March 22, 2017 Overview... 5 Key features... 5 Create a support incident... 5 System Requirements... 5 Report Server... 5 Hardware Requirements...

More information

Autodesk DirectConnect 2010

Autodesk DirectConnect 2010 Autodesk DirectConnect 2010 Contents Chapter 2 Installing and Licensing...................... 3 Installing Autodesk DirectConnect..................... 3 Software deployment using group policies for Windows.........

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

PDF Exporter Xpages Custom Control Documentation

PDF Exporter Xpages Custom Control Documentation PDF Exporter Xpages Custom Control Documentation 2(8) 1 What is this custom control and what it does...3 1.1 PDF template...3 1.2 How to use Open Office Impress...4 2 Technical overview...4 3 Installation

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Introduction 2 Prerequisites 2 Installation 2 Installation Overview 3 Downloading and Installing for Windows 3 Downloading and Installing for macos 4 Installing

More information

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services Software Release 7.11 LTS November 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

COURSE 9 DESIGN PATTERNS

COURSE 9 DESIGN PATTERNS COURSE 9 DESIGN PATTERNS CONTENT Applications split on levels J2EE Design Patterns APPLICATION SERVERS In the 90 s, systems should be client-server Today, enterprise applications use the multi-tier model

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

Safe Access User manual

Safe Access User manual 1 Table of contents 1. A new way to access e-banking services... 3 2. Prerequisites for installation... 3 3. Installation... 4 4. Running... 8 5. Folder shared with the PC... 9 6. Displaying documents...

More information

TIFF Image Printer. Version User Guide. PEERNET Inc.

TIFF Image Printer. Version User Guide. PEERNET Inc. Version 11.0 User Guide PEERNET Inc. Copyright 1997-2018 Updated: 3/1/2018 Table of Contents Welcome... to 1... 2 Legal Notices... 3 System Requirements... 4 Typographic Conventions Activating... 5...

More information

Microsoft Windows Servers 2012 & 2016 Families

Microsoft Windows Servers 2012 & 2016 Families Version 8 Installation Guide Microsoft Windows Servers 2012 & 2016 Families 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com Installation Guide

More information

HTMLDOC On Line Help

HTMLDOC On Line Help HTMLDOC On Line Help HTMLDOC On Line Help Table of Contents HTMLDOC On Line Help...1 Loading and Saving Books...2 The Input Tab...3 Setting the Document Type...3 Adding HTML Input Files...3 Adding URLs...3

More information

Security Classification: EIDA Toolkit v Installation and Configuration Guide

Security Classification: EIDA Toolkit v Installation and Configuration Guide Security Classification: EIDA Toolkit v2.1.0 Installation and Configuration Guide Document Details Organization Emirates Identity Authority (EIDA) Document Title Document Name Date 23-12-2010 Doc Name

More information

PrimoPDF User Guide, Version 5.0

PrimoPDF User Guide, Version 5.0 Table of Contents Getting Started... 3 Installing PrimoPDF... 3 Reference Links... 4 Uninstallation... 5 Creating PDF Documents... 5 PrimoPDF Document Settings... 6 PDF Creation Profiles... 6 Document

More information

Halcyon Spooled File Manager GUI. v8.0 User Guide

Halcyon Spooled File Manager GUI. v8.0 User Guide Halcyon Spooled File Manager GUI v8.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

Demo: Calling a.net Logging Package from Java. Version 8.2

Demo: Calling a.net Logging Package from Java. Version 8.2 Demo: Calling a.net Logging Package from Java Version 8.2 JNBridge, LLC www.jnbridge.com COPYRIGHT 2002 2017 JNBridge, LLC. All rights reserved. JNBridge is a registered trademark and JNBridgePro and the

More information

How to Add and Hide UI Elements in Cognos Connection

How to Add and Hide UI Elements in Cognos Connection Guideline How to Add and Hide UI Elements in Product(s): Cognos 8 Area of Interest: Infrastructure 2 Copyright Your use of this document is subject to the Terms of Use governing the Cognos software products

More information

PaperVision Message Manager. User Guide. PaperVision Message Manager Release 71

PaperVision Message Manager. User Guide. PaperVision Message Manager Release 71 PaperVision Message Manager User Guide PaperVision Message Manager Release 71 June 2010 Information in this document is subject to change without notice and does not represent a commitment on the part

More information

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date:

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date: Print Audit 6 Version: Date: 37 21-Apr-2015 23:07 Table of Contents Browse Documents:..................................................... 3 Database Documentation.................................................

More information

Smartsign Player Overview

Smartsign Player Overview Smartsign Player Overview System requirements Please consult the technical specifications Antivirus Software Antivirus Software can cause performance issues. To lessen the load on the Player PC, add the

More information

WinView. Getting Started Guide

WinView. Getting Started Guide WinView Getting Started Guide Version 4.3.12 June 2006 Copyright 2006 Mincom Limited All rights reserved. No part of this document may be reproduced, transferred, sold or otherwise disposed of without

More information

Copyright Notice. 2 Copyright Notice

Copyright Notice. 2 Copyright Notice 2 Copyright Notice Copyright Notice AQtrace, as described in this online help system, is licensed under the software license agreement distributed with the product. The software may be used or copied only

More information

CHAPTER 7 WEB SERVERS AND WEB BROWSERS

CHAPTER 7 WEB SERVERS AND WEB BROWSERS CHAPTER 7 WEB SERVERS AND WEB BROWSERS Browser INTRODUCTION A web browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information

More information

Writing a Client Application for Genesis II Contributors: Chris Sosa Last Modified: 06/05/2007

Writing a Client Application for Genesis II Contributors: Chris Sosa Last Modified: 06/05/2007 Writing a Client Application for Genesis II Contributors: Chris Sosa (sosa@virginia.edu) Last Modified: 06/05/2007 Introduction The purpose of this White Paper is to discuss the use of the University of

More information

Installing ArcIMS 9.1 on Windows

Installing ArcIMS 9.1 on Windows ArcGIS 9.1 Installing ArcIMS 9.1 on Windows Table Of Contents Introduction...1 Overview...2 What s included with ArcIMS 9.1?...2 ArcIMS components...2 ArcIMS Manager...3 ArcIMS Manager Applications...3

More information

X100 ARCHITECTURE REFERENCES:

X100 ARCHITECTURE REFERENCES: UNION SYSTEMS GLOBAL This guide is designed to provide you with an highlevel overview of some of the key points of the Oracle Fusion Middleware Forms Services architecture, a component of the Oracle Fusion

More information

Troubleshooting the Installation

Troubleshooting the Installation APPENDIX A Troubleshooting the Installation This appendix provides troubleshooting information for Essentials installation and setup, and contains the following sections: If the Installer Window Does Not

More information

Introduction Installation and Startup JMeter GUI

Introduction Installation and Startup JMeter GUI Introduction Apache JMeter is the industry s most popular open-source performance testing tool, offering load testing through different processing protocols, e.g. HTML, JDBC, WCF. With the right personnel

More information

Install QlikView Expressor Standard and Enterprise Editions

Install QlikView Expressor Standard and Enterprise Editions Install QlikView Expressor Standard and Enterprise Editions The QlikView Expressor Full Installer installs both the Standard and Enterprise Editions. These two Editions consist of multiple components and

More information

Administration Manual

Administration Manual Administration Manual SAP J2EE Engine 6.20 Contents About This Manual... 10 Target Audience and Prerequisites... 10 Structure... 10 Documentation Conventions... 11 Further Reading... 11 Administration

More information

Software License Agreement

Software License Agreement Software License Agreement WinPDF Converter For.NET Version 13 2005-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License Agreement

More information

TIBCO iprocess Server Objects (.NET) Installation

TIBCO iprocess Server Objects (.NET) Installation TIBCO iprocess Server Objects (.NET) Installation Software Release 11.4.1 April 2014 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Contents Introduction... 1 Prerequisites... 1 Installation... 2 Installation Overview... 2 Downloading and Installing for Windows... 3 Downloading and Installing

More information

SharePoint Authenticated Content WebPart. Formation Technology, 2006

SharePoint Authenticated Content WebPart. Formation Technology, 2006 SharePoint Authenticated Content WebPart Formation Technology, 2006 SharePoint Authenticated Content WebPart Copyright (C) 2006 Sam Critchley, Formation Technology Group http://www.formation.com.au SharePoint

More information

AppDev StudioTM 3.2 SAS. Migration Guide

AppDev StudioTM 3.2 SAS. Migration Guide SAS Migration Guide AppDev StudioTM 3.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS AppDev TM Studio 3.2: Migration Guide. Cary, NC: SAS Institute Inc.

More information

The Servlet Life Cycle

The Servlet Life Cycle The Servlet Life Cycle What is a servlet? Servlet is a server side component which receives a request from a client, processes the request and sends a content based response back to the client. The Servlet

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

SafePlace User manual

SafePlace User manual SafePlace 1 SafePlace Table of contents 1. A new way to access e-banking services... 3 2. Prerequisites for SafePlace installation... 3 3. SafePlace Installation... 3 4. Running SafePlace... 6 5. Folder

More information

Entrust Connector (econnector) Venafi Trust Protection Platform

Entrust Connector (econnector) Venafi Trust Protection Platform Entrust Connector (econnector) For Venafi Trust Protection Platform Installation and Configuration Guide Version 1.0.5 DATE: 17 November 2017 VERSION: 1.0.5 Copyright 2017. All rights reserved Table of

More information

Tzunami Deployer Lotus Notes Exporter Guide

Tzunami Deployer Lotus Notes Exporter Guide Tzunami Deployer Lotus Notes Exporter Guide Version 2.5 Copyright 2010. Tzunami Inc. All rights reserved. All intellectual property rights in this publication are owned by Tzunami, Inc. and protected by

More information

COGNOS OFFICE CONNECTION

COGNOS OFFICE CONNECTION COGNOS OFFICE CONNECTION SET UP & CONFIGURATION NOTES 01 May 2007 Page 1 of 7 1 COGNOS OFFICE CONNECTION SET UP & CONFIGURATION 1.1 WEB SERVER 1.1.1 IIS: Create a new virtual directory within Cognos8 named

More information

OGSI.NET UVa Grid Computing Group. OGSI.NET Developer Tutorial

OGSI.NET UVa Grid Computing Group. OGSI.NET Developer Tutorial OGSI.NET UVa Grid Computing Group OGSI.NET Developer Tutorial Table of Contents Table of Contents...2 Introduction...3 Writing a Simple Service...4 Simple Math Port Type...4 Simple Math Service and Bindings...7

More information

1 AdvantageLaw-Access System Installation System Requirements Installed Components... 3 Application:... 3 Database:...

1 AdvantageLaw-Access System Installation System Requirements Installed Components... 3 Application:... 3 Database:... 1 AdvantageLaw-Access System Installation... 3 1.1 System Requirements... 3 1.2 Installed Components... 3 Application:... 3 Database:... 3 Tutorial:... 3 Documentation:... 3 1.3 Standalone Installation...

More information

3.5. virtual ECUs for automotive control development. Silver Installation Guide

3.5. virtual ECUs for automotive control development. Silver Installation Guide 3.5 virtual ECUs for automotive control development Copyright QTronic GmbH Silver Guide QTronic GmbH Alt-Moabit 92 D-10559 Berlin info@qtronic.com www.qtronic.com Table of Contents 1.... 1 Using a Silver

More information

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly.

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly. The following example demonstrates how to create a basic custom module, including all steps required to create Installation packages for the module. You can use the packages to distribute the module to

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

Developing Web Views for VMware vcenter Orchestrator

Developing Web Views for VMware vcenter Orchestrator Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 4.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

OpenGeo Suite for Windows Release 3.0.1

OpenGeo Suite for Windows Release 3.0.1 OpenGeo Suite for Windows Release 3.0.1 OpenGeo February 04, 2013 Contents 1 Prerequisites i 2 New Installation i 3 Upgrading vi 3.1 Upgrading from version 2.x to 3.x....................................

More information

Symantec Endpoint Virtualization 6.1 SP8 Release Notes

Symantec Endpoint Virtualization 6.1 SP8 Release Notes Chapter 1 Symantec Endpoint Virtualization 6.1 SP8 Release Notes This chapter includes the following topics: About Symantec Endpoint Virtualization About 6.1 SP8 What's new in 6.1 SP8 Supported platforms

More information

CUTEPDF WRITER. Department of Information Technology User Support. Date October 2004

CUTEPDF WRITER. Department of Information Technology User Support. Date October 2004 CUTEPDF WRITER Department of Information Technology User Support Reference TRN1126 (OPL042) Revision 1.00 Date October 2004 This publication and any accompanying course materials are distributed for use

More information

Demo: Calling a Java Logging Package from.net. Version 8.2

Demo: Calling a Java Logging Package from.net. Version 8.2 Demo: Calling a Java Logging Package from.net Version 8.2 JNBridge, LLC www.jnbridge.com COPYRIGHT 2002 2017 JNBridge, LLC. All rights reserved. JNBridge is a registered trademark and JNBridgePro and the

More information

Enhydra 6.2 Application Architecture. Tanja Jovanovic

Enhydra 6.2 Application Architecture. Tanja Jovanovic Enhydra 6.2 Application Architecture Tanja Jovanovic Table of Contents 1.Introduction...1 2. The Application Object... 2 3. The Presentation Object... 4 4. Writing Presentation Objects with XMLC... 6 5.

More information

Apache FOP: Configuration

Apache FOP: Configuration $Revision: 562023 $ Table of contents 1 Configuration File Basics... 2 1.1 Making Configuration Available to FOP... 2 2 Summary of the General Configuration Options... 2 3 Renderer configuration... 6 3.1

More information

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You.

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You. USER GUIDE Introduction This User Guide is designed to serve as a brief overview to help you get started. There is also information available under the Help option in the various Contributor interface

More information

Web Publishing. Overview. Key Features

Web Publishing. Overview. Key Features Web Publishing Overview XLReporter produces reports automatically in Excel, PDF and HML formats. As an HTML workbook, the report can be opened in any device that supports a web browser such as laptops,

More information

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Connector for SharePoint Administrator s Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Connector

More information

!!! !!!!!!!!!!! Help Documentation. Copyright V1.7. Copyright 2014, FormConnections, Inc. All rights reserved.

!!! !!!!!!!!!!! Help Documentation. Copyright V1.7. Copyright 2014, FormConnections, Inc. All rights reserved. Help Documentation V1.7 Copyright Copyright 2014, FormConnections, Inc. All rights reserved. 1 of 32 FormConnect Help 1. Overview FormConnect is an easy to use app for creating business forms on your ipad.

More information

System Overview: eppoc Data Collection

System Overview: eppoc Data Collection System Overview: eppoc Data Collection Version 1.2 Contents Overview of the System... 2 Minimum Requirements and Installation Scenarios... 3 Minimum Hardware and Software Requirements for Client Machines...

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014 MobileFast SyncStudio A Complete Mobile Database Synchronization Solution Quick-Start Manual Release 1.61, May 2014 Copyright 2014 by MobileFast Corporation All rights reserved Page 1 of 25 Edition Notes

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 White Paper Getting Started with EPiServer 4 System requirements This is a guide for getting started with development using EPiServer 4 and it is assumed that you as a developer have access to the following:

More information

ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference. July 2017

ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference. July 2017 ZENworks 2017 Update1 Full Disk Encryption Emergency Recovery Reference July 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

AUTOMATIC PROCESSOR 1

AUTOMATIC  PROCESSOR 1 AUTOMATIC EMAIL PROCESSOR 1 PROGRAM HELP GILLMEISTER SOFTWARE WWW.GILLMEISTER-SOFTWARE.COM 1 TABLE OF CONTENTS 1 Table of contents... 1 2 Start... 4 3 Main menu... 4 3.1 Menu entries of the group Menu...

More information

Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit)

Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit) » search tips Search Products and Technologies Technical Topics Join Sun Developer Network Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit) System Requirements JDK Documentation See supported

More information

Creating Printed Output

Creating Printed Output Creating Printed Output Module Overview This module will help you to become familiar with the options that let you produce quality printed output. Module Prerequisites Fundamental knowledge of the Microsoft

More information

The Chrome or Firefox browsers are alternatives to Internet Explorer 11.

The Chrome or Firefox browsers are alternatives to Internet Explorer 11. The Chrome or Firefox browsers are alternatives to Internet Explorer 11. Firefox 51 will require additional configuration steps as it begins to drop support for NPAPI plugins. - Following the link below

More information

Getting Started with the JNBridgePro Plug-ins for Visual Studio and Eclipse

Getting Started with the JNBridgePro Plug-ins for Visual Studio and Eclipse for Visual Studio and Eclipse Version 8.2 www.jnbridge.com JNBridge, LLC www.jnbridge.com COPYRIGHT 2002 2017 JNBridge, LLC. All rights reserved. JNBridge is a registered trademark and JNBridgePro and

More information

Sony Ericsson. Panel SDK for Xperia X2. EXE Panelizer Tutorial

Sony Ericsson. Panel SDK for Xperia X2. EXE Panelizer Tutorial Sony Ericsson Panel SDK for Xperia X2 EXE Panelizer Tutorial Sony Ericsson Developer World At www.sonyericsson.com/developer, developers can find the latest technical documentation and development tools

More information

APPENDIX B: INSTALLATION AND SETUP

APPENDIX B: INSTALLATION AND SETUP APPENDIX B: INSTALLATION AND SETUP Page A. Overview... B:1 How do I install and setup ICMS?... B:1 Do I need special security rights to install ICMS?... B:1 Installation Basics... B:1 How do I get a quick

More information

Elixir Repertoire supports any Java SE version 6.x Runtime Environment (JRE) or later compliant platforms such as the following:

Elixir Repertoire supports any Java SE version 6.x Runtime Environment (JRE) or later compliant platforms such as the following: 1. Installing Repertoire 8.x The Elixir toolset now combines Ensemble (Data Designer), Report (Report Designer) and Perspective (Dashboard Designer) into a single Repertoire Designer. This is the standalone

More information

Detects Potential Problems. Customizable Data Columns. Support for International Characters

Detects Potential Problems. Customizable Data Columns. Support for International Characters Home Buy Download Support Company Blog Features Home Features HttpWatch Home Overview Features Compare Editions New in Version 9.x Awards and Reviews Download Pricing Our Customers Who is using it? What

More information

LAB 1 PREPARED BY : DR. AJUNE WANIS ISMAIL FACULTY OF COMPUTING UNIVERSITI TEKNOLOGI MALAYSIA

LAB 1 PREPARED BY : DR. AJUNE WANIS ISMAIL FACULTY OF COMPUTING UNIVERSITI TEKNOLOGI MALAYSIA LAB 1 PREPARED BY : DR. AJUNE WANIS ISMAIL FACULTY OF COMPUTING UNIVERSITI TEKNOLOGI MALAYSIA Setting up Java Development Kit This step involves downloading an implementation of the Java Software Development

More information

Training Quick Steps Internet Explorer (v7) Settings. Adding Your URL as a Trusted Site

Training Quick Steps Internet Explorer (v7) Settings. Adding Your URL as a Trusted Site Adding Your URL as a Trusted Site In order to access PrognoCIS, you must add your URL as a Trusted Site, which will enable the Security Certificate to allow you to access the secured web site. Refer to

More information

Key Concepts in EPiServer 7

Key Concepts in EPiServer 7 Key Concepts in EPiServer 7 (for developers) Jeff Wallace Solution Architect #epi2012 episerver.com/epi2012 Definitions A Property is a content item an editor can assign a value to A Block Type is set

More information

Apache FOP: Configuration

Apache FOP: Configuration $Revision: 446928 $ Table of contents 1 Configuration File Basics... 2 1.1 Making Configuration Available to FOP... 2 2 Summary of the General Configuration Options... 2 3 Renderer configuration... 4 3.1

More information

User Manual pdoc Signer

User Manual pdoc Signer User Manual pdoc Signer August 11, 2014 Copyright 1995-2014 Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks, visit www.topazsystems.com/information/legal.htm#trademarks. www.topazsystems.com

More information