INSTALLATION AND CONFIGURATION MANUAL ENCODER

Size: px
Start display at page:

Download "INSTALLATION AND CONFIGURATION MANUAL EMAILENCODER"

Transcription

1 INSTALLATION AND CONFIGURATION MANUAL ENCODER P R O F E S S I O N A L S O F T W A R E E N G I N E E R I N G Meridium AB 1 (19) 1(19)

2 CONTENTS 1 INTRODUCTION How does it work? Browser software supported Server software supported Web Accessibility Initiative (WAI) support INSTALLATION Installation Step 1 Choose web server Installation Step 2 Choose license file Installation Step 3 - Finish CONFIGURATION ConfigSections Http Modules Http Handlers EncoderModule section Activate loose mailto filtering Activate loose callto filtering Activate strip not filtered mailto Activate strip not filtered callto Disable paths (start) for Encoder Disable files/types for Encoder Disable sessions for Encoder Disable query string parameters for Encoder Set alt text on mailto text-images Set alt text on callto text-images Force Content Encoding encoding modes Activate encoding on cached pages Add title to mailto links Disable encoding for authenticated users Control css style of generated image tags Control css class of generated image tags Log file Continue on error Embedded Handler section Meridium AB 2 (19) 2(19)

3 3.5.1 Set font for mailto text-images Set text color for mailto text-images Set background color for mailto text-images Set mailto text-images cache EPISERVER CONFIGURATION Activate strip not filtered mailto Disable paths for Encoder Disable encoding for authenticated users UNINSTALLATION Disabling Encoder Full uninstallation Remove configuration entries in the web.config file Remove installed files Meridium AB 3 (19) 3(19)

4 1 INTRODUCTION Encoder protects addresses and Skype 1 links from being picked up by robots/sniffers by converting them to images with encrypted links. Encoder can be applied to any ASP.NET solution without modifications, and works as a filter towards the web client. 1.1 How does it work? Encoder is added as a HTTP module on the dot net web server and scans all ASP.NET pages that are delivered to the clients. When an , mailto or callto 2 -link is found, this is encoded and is not readable by normal means to the reader of the page. When the browser then loads the page, the information is decoded in runtime in the browser and made visible to the reader. This restricts reading the source of the page for retrieving or Skype information since the and Skype addresses are not visible in clear text. 1.2 Browser software supported Encoder can be used on all Web browsers supporting JavaScript (according to the ECMA 262 specification 3 ) and W3C DOM specification 4 (Core version 2.0 and Events version ). Encoder also supports the major browser versions including (but not limited to): Browser Reference Microsoft Internet Explorer 5 or later Mozilla Firefox 1.0 or later Mozilla Firebird 0.7 or later Mozilla (1.7.3 verified) Opera (7.23 verified) Netscape 6.01 or later Server software supported The Encoder is installed on a website running asp.net on a machine running Internet Information Services (IIS). It can be run under version 1.0, 1.1 and 2.0 of the dotnet framework. 1.4 Web Accessibility Initiative (WAI) 6 support Since version , Encoder does not alter the encoded pages support for WAI in any way. If you choose to increase security by using generated images replacing the visible s, you will hamper WAI support a bit, since no information besides the static alt text is added to the images. 1 Skype is software for IP-telephony. See for more information. 2 Callto links are used by Skype Meridium AB 4 (19) 4(19)

5 2 INSTALLATION Encoder is installed by running the installation application. The installation application copies the needed files, and makes the necessary modifications of the system configuration. The system configuration is modified by adding some keys to the web.config. Some of these keys are configurable as explained below. 2.1 Installation Step 1 Choose web server The installation application lets you choose the web server you wish to install Encoder on by showing a drop down list with all web servers available on the computer. Meridium AB 5 (19) 5(19)

6 2.2 Installation Step 2 Choose license file Browse to the license file that you received with the installation package and choose it. The license file is named meridiumlicense.config. 2.3 Installation Step 3 - Finish Click on Finish to complete the installation. Meridium AB 6 (19) 6(19)

7 3 CONFIGURATION The installation program adds the following keys to web.config. 3.1 ConfigSections The ConfigSections need to contain two configuration sections for the Encoder to work; one for the EncoderModule and one for the EmbeddedHandler. <configsections> <sectiongroup name="se.meridiumkalmar.web"> <section name="embeddedhandler" type="system.configuration.namevaluesectionhandler, System, = , Culture=neutral,PublicKeyToken=b77a5c561934e089"/> <section name=" encodermodule" type="system.configuration.namevaluesectionhandler, System, = , Culture=neutral,PublicKeyToken=b77a5c561934e089"/> </sectiongroup> </configsections> 3.2 Http Modules This activates the Encoder module. If you want to deactivate Encoder, just comment this add tag. <httpmodules> <add name=" encodermodule" type="se.meridiumkalmar.web. encodermodule, Encoder.Core" /> </httpmodules> 3.3 Http Handlers This activates the EmbeddedHandler. Without this Encoder cannot deliver any images for addresses. <httphandlers> <add verb="*" path="embed.aspx" type="se.meridiumkalmar.web.embeddedhandler, Encoder.Core" /> </httphandlers> Meridium AB 7 (19) 7(19)

8 3.4 EncoderModule section The Encoder section contains all configuration settings for the encoding process, what to encode and how to do it. <se.meridiumkalmar.web> < encodermodule> <! -insert configuration items here--> </ encodermodule> </se.meridiumkalmar.web> Activate loose mailto filtering If activated, Encoder will filter mailto links inside page links. If value is set to true, the following text will be filtered. <add key="loos tohref" value="true"/> Activate loose callto filtering If activated, Encoder will filter callto links inside page links. If value is set to true, the following text will be filtered. href="mylink.aspx?action=callto://nisse_mklsd_as/" <add key="loosecalltohref" value="true"/> Activate strip not filtered mailto If activated Encoder will strip texts that contains a mailto address but not are links. If value is set to true <a href=" orgurl="mailto:info@meridium.se"/> Will be filtered to <a href=" orgurl=""/> <add key="stripnotfilteredmailto" value="true"/> Meridium AB 8 (19) 8(19)

9 3.4.4 Activate strip not filtered callto If activated Encoder will strip texts that contains a mailto address but not are links. If value is set to true <a href=" callid="callto://meridium/"/> Will be filtered to <a href=" callid=""/> <add key="stripnotfilteredcallto" value="true"/> Disable paths (start) for Encoder To disable the encoding for one or more virtual paths set value to the paths that you want to disable Encoder for, separated by & Always start and end the path with a slash if it is a folder. Always start the path with a slash if it is a complete path to a document. Values are case insensitive. <add key="disablevirtualpathstartingwith" value="/edit/"/> Disables Encoder for all Requests to a path that starts with /edit/. <add key="disablevirtualpathstartingwith" value="/edit/&/admin/default.aspx"/> Disables Encoder for all requests to a path that starts with /edit/ and requests for the file /admin/default.aspx. <add key="disablevirtualpathstartingwith" value=""/> Meridium AB 9 (19) 9(19)

10 3.4.6 Disable files/types for Encoder To disable the encoding for one or more files or file types the requested path is scanned and compared to the DisableVirtualPathEndingWith parameter. This parameter works like the DisableVirtualPathStartingWith and you can separate multiple values with an virtual paths set value to the paths that you want to disable Encoder for, separated by & Values are case insensitive. <add key="disablevirtualpathendingwith" value=".asmx"/> Disables Encoder for all web services. <add key="disablevirtualpathendingwith" value="news.aspx&.asmx "/> Disables Encoder for all requests to files named news.aspx wherever they are located and all web services. <add key="disablevirtualpathendingwith" value=".asmx "/> Disable sessions for Encoder To disable the encoding for one or more session keys and/or key-value pairs set value to the session keys and - if needed - their corresponding value that Encoder should be disabled for, separated by & <add key="disablesession" value="user"/> Disables Encoder for all Requests that have a session key named user. <add key="disablesession" value="user=peter&user=tom"/> Disables Encoder for all Requests that have a session key named user with value peter or tom. <add key="disablesession" value=""/> Meridium AB 1010(19)

11 3.4.8 Disable query string parameters for Encoder To disable the encoding for one or more parameters and/or parameter-value pairs set value to the parameters and - if needed - their corresponding value that Encoder should be disabled, for separated by & <add key="disableparam" value="editmode"/> Disables Encoder for all requests that have a query string parameter named editmode. <add key="disableparam" value="editmode=true&user=peter"/> Disables Encoder for all Requests that have a query string parameter named editmode with value true or a query string parameter named user with value peter. <add key="disableparam" value=""/> Set alt text on mailto text-images The text specified as value will appear as alt-text on the mailto text-image. <add key="alttextonimages" value="this is a mailto link"/> Set alt text on callto text-images The text specified as value will appear as alt-text on the mailto text-image. <add key="alttextoncalltoimages" value="this is a callto link"/> Force Content Encoding The content encoding of the encoding output can be forced if the automatic parsing fails. <add key="contentencoding" value="iso "/> Meridium AB 1111(19)

12 encoding modes The way the addresses are encoded can be configured to the following values. Value Text Image TextAndImage None Description Encodes all visible addresses as text (requires JavaScript support on the client) Encodes all visible addresses as an image. Uses a combination of the above choices, when JavaScript is not supported by the client, the Address image is still visible Does not encode addresses at all (disables the Encoder) <add key=" encodermode" value="textandimage"/> Activate encoding on cached pages Normally encoding is done to pages before they are added to the cache, and encoding is not needed for cached pages. If you want to force encoding on cached pages, set the EncodeCache configuration to true. <add key="encodecache" value="true"/> Add title to mailto links To increase WAI support you can activate this option that will add a title attribute to a mailto link that will contain the linked mailto: @domain.com text. <add key="addtitleonmailtolinks" value="true"/> Meridium AB 1212(19)

13 Disable encoding for authenticated users Sometimes you want to disable encoding for authenticated users since you have already taken steps to validate the user. In that case you can add the following option to the configuration. Default is false. <add key="disableencodingforauthenticatedusers" value="true"/> Control css style of generated image tags When Encoder generates images for the visible addresses, the image is added without any attributes set to the image tag. Use the CssStyle property to set the style attribute for the rendered image tags. <add key="cssstyle" value="border:0;text-align:middle;"/> Control css class of generated image tags When Encoder generates images for the visible addresses, the image is added without any attributes set to the image tag. Use the CssClass property to set the class attribute for the rendered image tags. <add key="cssclass" value="myimageclass"/> Log file If an error occurs in the Encoder engine, you can activate logging by entering a path to a file where the errors will be logged. The path can either be relative from the websites root folder or if entered with the drive letter, an absolute path. <add key="logfile" value="errorlog.txt"/> Make sure that the server process has access rights to write to/create the file. Meridium AB 1313(19)

14 Continue on error If encoding of a page results in an error, this error is logged (if the log file is activated) and the error is displayed on the page. These error pages can be suppressed and instead of breaking the page, the original, non encoded page can be displayed. To activate this behavior set the ContinueOnError setting to true. Observe that if this option is activated, use the logfile to keep track of pages that are failing and fix these errors in these pages so they aren t unprotected. <add key="continueonerror" value="true"/> Meridium AB 1414(19)

15 3.5 Embedded Handler section The EmbeddedHandler is a part of encoder that controls the images that is generated instead of visible addresses. This section controls all settings regarding the image creation process. <se.meridiumkalmar.web> <embeddedhandler> <! -insert configuration items here--> </embeddedhandler> </se.meridiumkalmar.web> Set font for mailto text-images If the displayed text for a mailto link contains the Encoder replaces the text with a text-image. To specify the font to be used in these cases use the following format: font name, size, fontstyle1, fontstyle2, etc. Font styles can be bold, italic, underline or strikeout. Replaces the display text that for all mailto links with a text-image with font verdana 8pt bold italics. <add key="font" value="verdana, 8, bold, italics"/> Set text color for mailto text-images If the display text for a mailto link contains the Encoder replaces the text with a text-image. Set value to the text color that should be used in the text-image. <add key="foregroundcolor" value="#c0c0c0"/> Set background color for mailto text-images The resulting image of a mailto link is created as a transparent gif. If the background of the page is another color than white, the resulting image can look jaggy or even disappear (especially if the foreground color is set to white). The solution is then to assign a background color to use when rendering the images. <add key="backgroundcolor" value="white"/> Meridium AB 1515(19)

16 3.5.4 Set mailto text-images cache If a special temporary path should be used for storing the images cache. The ASPNET user s temp path is used by default. <add key="temppath" value="c:\temp"/> Meridium AB 1616(19)

17 4 EPISERVER CONFIGURATION Use the following settings for Encoder when running an EPiServer solution. (These settings are automatically configured if you use the installation package for EPiServer.) Activate strip not filtered mailto For EPiServer you want to set StripNotFilteredMailto to true in order to strip orgurl attributes on mailto links. <add key="stripnotfilteredmailto" value="true"/> Disable paths for Encoder For EPiServer you want to disable the admin, edit and util paths. <add key="disablevirtualpathstartingwith" value="/edit/&/admin/&/util/"/> Disable encoding for authenticated users For DOPE to function correctly with addresses, we have to disable encoding for authenticated users. <add key="disableencodingforauthenticatedusers" value="true"/> Meridium AB 1717(19)

18 5 UNINSTALLATION 5.1 Disabling Encoder 1. To disable Encoder, just comment the Encoder httpmodule in the web.config file located at /configuration/system.web/httpmodules <add name=" encodermodule" type="se.meridiumkalmar.web. encodermodule, Encoder.Core" /> 5.2 Full uninstallation Uninstallation can be performed manually by following the steps below Remove configuration entries in the web.config file. 2. Remove the Encoder http module located at /configuration/system.web/httpmodules <add name=" encodermodule" type="se.meridiumkalmar.web. encodermodule, Encoder.Core" /> 3. Remove the Encoder http handler located at /configuration/system.web/httphandlers <add verb="*" path="embed.aspx" type="se.meridiumkalmar.web.embeddedhandler, Encoder.Core" /> 4. Remove configuration for the encodermodule located at /configuration/se.meridiumkalmar.web/ encodermodule < encodermodule> <add key=" encodermode" value="textandimage" /> <add key="addtitleonmailtolinks" value="true" />... </ encodermodule> 5. Remove configuration for the embeddedhandler located at /configuration/se.meridiumkalmar.web/embeddedhandler <embeddedhandler> <add key="font" value="verdana,14, underline" /> <add key="foregroundcolor" value="#33ccaa" />... </embeddedhandler> 6. If the se.meridiumkalmar.web element is empty, remove it aswell. (located at /configuration/se.meridiumkalmar.web) <se.meridiumkalmar.web> </se.meridiumkalmar.web> 7. Remove the section groups for encodermodule located at /configuration/configsections/sectiongroup[name= se.meridiumkalmar.web ]/section [name= encodermodule ] <section name=" encodermodule" type="system.configuration.namevaluesectionhandler, System, = , Culture=neutral,PublicKeyToken=b77a5c561934e089" /> Meridium AB 1818(19)

19 8. Remove the section groups for embeddedhandler located at /configuration/configsections/sectiongroup[name= se.meridiumkalmar.web ]/section [name= embeddedhandler ] <section name="embeddedhandler" type="system.configuration.namevaluesectionhandler, System, = , Culture=neutral,PublicKeyToken=b77a5c561934e089" /> 9. If the se.meridiumkalmar.web sectiongroup definition is empty, remove it as well. configuration/configsections/sectiongroup[name= se.meridiumkalmar.web ] <sectiongroup name="se.meridiumkalmar.web"> </sectiongroup> Remove installed files Remove the Encoder.Core folder (and its included files) from the webservers bin folder. Meridium AB 1919(19)

Log Service Installation Instructions

Log Service Installation Instructions Log Service Installation Instructions Abstract The purpose of the Log Service is to centrally handle log messages in one place for the entire Web site. This document describes how to install the Log Service

More information

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

metaengine DataConnect For SharePoint 2007 Configuration Guide

metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect for SharePoint 2007 Configuration Guide (2.4) Page 1 Contents Introduction... 5 Installation and deployment... 6 Installation...

More information

ScanJour PDF 2014 R8. Configuration Guide

ScanJour PDF 2014 R8. Configuration Guide Configuration Guide Contents 1. Configuration Guide for ScanJour PDF 2014 R8 3 2. What's new 4 3. Installing ScanJour PDF WebService 5 4. Features 10 5. Connecting with WorkZone Content Server 14 6. The

More information

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com FrontDesk (Server Software Installation) Ver. 1.0.1 www.frontdeskhealth.com This document is the installation manual for installing the FrontDesk Server, Kiosk/Touch Screen, and License Management Tool

More information

Cache Configuration Reference

Cache Configuration Reference Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...

More information

JISIS and Web Technologies

JISIS and Web Technologies 27 November 2012 Status: Draft Author: Jean-Claude Dauphin JISIS and Web Technologies I. Introduction This document does aspire to explain how J-ISIS is related to Web technologies and how to use J-ISIS

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

RMCS Installation Guide

RMCS Installation Guide RESTRICTED RIGHTS Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (C)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS

More information

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3. Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

Sitecore Security Hardening Guide

Sitecore Security Hardening Guide Sitecore CMS 6.5-6.6 Sitecore Security Hardening Guide Rev: 2012-09-19 Sitecore CMS 6.5-6.6 Sitecore Security Hardening Guide Recommendations for making Sitecore more secure Table of Contents Chapter 1

More information

EPiServer Operator's Guide

EPiServer Operator's Guide EPiServer Operator's Guide Abstract This document is mainly intended for administrators and developers that operate EPiServer or want to learn more about EPiServer's operating environment. The document

More information

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches

Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release Notes: J-Web Application Package Release 15.1A1 for Juniper Networks EX Series Ethernet Switches Release 15.1A1 4 June 2015 Revision 1 Contents Release Notes: J-Web Application Package Release

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

Using LDAP for User Authentication

Using LDAP for User Authentication Using LDAP for User Authentication Product version: 4.60 Document version: 1.0 Document creation date: 31-03-2006 Purpose This technical note describes how to configure and set up EPiServer to use an LDAP

More information

Using LDAP for User Authentication

Using LDAP for User Authentication Using LDAP for User Authentication Product version: 4.50 Document version: 1.1 Document creation date: 03-06-05 Purpose This technical note describes how to configure and set up EPiServer to use an LDAP

More information

Configuring Microsoft Internet Information Service (IIS6 & IIS7)

Configuring Microsoft Internet Information Service (IIS6 & IIS7) Configuring Microsoft Internet Information Service (IIS6 & IIS7) Configuring Microsoft Internet Information Service (IIS6 & IIS7) Guide Last revised: June 25, 2012 Copyright 2012 Nexent Innovations Inc.

More information

Wakanda Studio Features

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

More information

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers Installation guide for administrators and developers Table of Contents Chapter 1 Introduction... 2 1.1 Preparing to Install Sitecore Ecommerce Enterprise Edition... 2 1.2 Required Installation Components...

More information

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.

More information

Kiwi Syslog Web Access. 2010 SolarWinds, Inc.

Kiwi Syslog Web Access. 2010 SolarWinds, Inc. TM I Table of Contents Part I Welcome 1 1 What is Kiwi Syslog... Web Access? 1 2 Configuration... 1 Part II Login Gateway 2 1 Overview... 2 2 Pass-through... Authentication 3 Part III Events 3 1 Overview...

More information

Cyclope Internet Filtering Proxy. - Installation Guide -

Cyclope Internet Filtering Proxy. - Installation Guide - Cyclope Internet Filtering Proxy - Installation Guide - 1. Overview 3 2. Installation 4 2.1 System requirements 4 2.2 Cyclope Internet Filtering Proxy Installation 4 2.3 Client Browser Configuration 6

More information

MSOW. MSO for the Web MSONet Workstation Configuration Guide

MSOW. MSO for the Web MSONet Workstation Configuration Guide MSOW MSO for the Web MSONet Workstation Configuration Guide For personal and public computer users accessing MSOW Practitioner Home Page (PHP) and Primary Source Verification (PSV) Updated June 4, 2013

More information

4.2 Understand Microsoft ASP.NET Web Application Development

4.2 Understand Microsoft ASP.NET Web Application Development L E S S O N 4 4.1 Understand Web Page Development 4.2 Understand Microsoft ASP.NET Web Application Development 4.3 Understand Web Hosting 4.4 Understand Web Services MTA Software Fundamentals 4 Test L

More information

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 WITHOUT TEMPLATE LOCALIZATION, WITHOUT WEBDAV AND IN ONE WAR FILE Simona Bracco Table of Contents Introduction...3 Extract theme dynamic and static resources...3

More information

Access It! Universal Web Client Integration

Access It! Universal Web Client Integration Page 1 of 6 Last Updated: Friday, November 16, 2012 Access It! Universal Web Client Integration Overview This document outlines the steps needed to setup the Access It! Universal Web Client. The following

More information

Dashboard Skin Tutorial. For ETS2 HTML5 Mobile Dashboard v3.0.2

Dashboard Skin Tutorial. For ETS2 HTML5 Mobile Dashboard v3.0.2 Dashboard Skin Tutorial For ETS2 HTML5 Mobile Dashboard v3.0.2 Dashboard engine overview Dashboard menu Skin file structure config.json Available telemetry properties dashboard.html dashboard.css Telemetry

More information

IceWarp to IceWarp Server Migration

IceWarp to IceWarp Server Migration IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone

More information

Administrator's Guide

Administrator's Guide Active Directory Module AD Module Administrator's Guide Rev. 090923 Active Directory Module Administrator's Guide Installation, configuration and usage of the AD module Table of Contents Chapter 1 Introduction...

More information

Ingenious Testcraft Technical Documentation Installation Guide

Ingenious Testcraft Technical Documentation Installation Guide Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6.1

SafeGuard Enterprise Web Helpdesk. Product version: 6.1 SafeGuard Enterprise Web Helpdesk Product version: 6.1 Document date: February 2014 Contents 1 SafeGuard web-based Challenge/Response...3 2 Scope of Web Helpdesk...4 3 Installation...5 4 Allow Web Helpdesk

More information

Fusion Installer Instructions

Fusion Installer Instructions Fusion Installer Instructions This is the installation guide for the Fusion NaviLine installer. This guide provides instructions for installing, updating, and maintaining your Fusion REST web service.

More information

Create Email Signature for the Scott County Family Y

Create Email Signature for the Scott County Family Y Create Email Signature for the Scott County Family Y This document details the procedure for creating the Y logo ed email signature for each of the email clients used at the Scott County Family Y Use the

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

Adding ELMAH to an ASP.NET Web Application

Adding ELMAH to an ASP.NET Web Application Logging Error Details with ELMAH Introduction The preceding tutorial examined ASP.NET's health monitoring system, which offers an out of the box library for recording a wide array of Web events. Many developers

More information

Web Testing. Main Concepts of Web Testing. Software Quality Assurance Telerik Software Academy http://academy.telerik.com

Web Testing. Main Concepts of Web Testing. Software Quality Assurance Telerik Software Academy http://academy.telerik.com Web Testing Main Concepts of Web Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Snejina Lazarova Product Manager Business Services Team Dimo Mitev QA

More information

TARGETPROCESS INSTALLATION GUIDE

TARGETPROCESS INSTALLATION GUIDE TARGETPROCESS INSTALLATION GUIDE v.2.19 Installation Guide This document describes installation of TargetProcess application and common problems with resolutions. 1 PREREQUISITES... 3 SERVER REQUIREMENTS...

More information

1/4/12 Installing and Configuring WebDAV on IIS 7 : WebDAV for IIS 7.0 : Publishing Content to Web Sites : T

1/4/12 Installing and Configuring WebDAV on IIS 7 : WebDAV for IIS 7.0 : Publishing Content to Web Sites : T Home > Learn > Deploying Web Sites on IIS 7 > Publishing Content to Web Sites > WebDAV for IIS 7.0 > Installing and Configuring WebDAV on IIS 7 Installing and Configuring WebDAV on IIS 7 Author: Robert

More information

McAfee One Time Password

McAfee One Time Password McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System

More information

ConvincingMail.com Email Marketing Solution Manual. Contents

ConvincingMail.com Email Marketing Solution Manual. Contents 1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which

More information

versasrs HelpDesk quality of service

versasrs HelpDesk quality of service versacat v2.1.0 Date: 24 June 2010 Copyright 2002-2010 VersaDev Pty. Ltd. All Rights Reserved. *************************************************************** Contents ***************************************************************

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

OTP Server. Integration module. Nordic Edge AD Membership Provider for Microsoft ASP.NET. Version 1.0, rev. 6. Nordic Edge 2009-02-25

OTP Server. Integration module. Nordic Edge AD Membership Provider for Microsoft ASP.NET. Version 1.0, rev. 6. Nordic Edge 2009-02-25 OTP Server Integration module Nordic Edge AD Membership Provider for Microsoft ASP.NET Version 1.0, rev. 6 Nordic Edge 2009-02-25 Summary: Installation guide for a Custom ISS web site www.nordicedge.se

More information

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved.

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved. Citrix StoreFront Customizing the Receiver for Web User Interface 2012 Citrix. All rights reserved. Customizing the Receiver for Web User Interface Introduction Receiver for Web provides a simple mechanism

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

Taleo Enterprise. Career Section Branding Definition. Version 7.5

Taleo Enterprise. Career Section Branding Definition. Version 7.5 Taleo Enterprise Career Section Branding Definition Version 7.5 March 2010 Confidential Information It shall be agreed by the recipient of the document (hereafter referred to as the other party ) that

More information

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158 Index A Active Directory Active Directory nested groups, 96 creating user accounts, 67 custom authentication, 66 group members cannot log on, 153 mapping certificates, 65 mapping user to Active Directory

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

Administrator s Guide

Administrator s Guide SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your

More information

Analytics Configuration Reference

Analytics Configuration Reference Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators

More information

Creating a Resume Webpage with

Creating a Resume Webpage with Creating a Resume Webpage with 6 Cascading Style Sheet Code In this chapter, we will learn the following to World Class CAD standards: Using a Storyboard to Create a Resume Webpage Starting a HTML Resume

More information

Installing Autodesk Vault Server 2012 on Small Business Server 2008

Installing Autodesk Vault Server 2012 on Small Business Server 2008 Installing Autodesk Vault Server 2012 on Small Business Server 2008 Please follow the following steps to ensure a successful installation of the Autodesk Vault Server 2012 on Microsoft Small Business Server

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4 CMS Editor How-To Saving work in the CMS... 2 Edit an existing page... 2 Create a new page... 4 Create a side bar section... 4 Upload an image and add to your page... 5 Add an existing image to a Page...

More information

Sitecore Dynamic Links

Sitecore Dynamic Links Sitecore CMS 6.2 or later Sitecore Dynamic Links Rev: 2015-03-04 Sitecore CMS 6.2 or later Sitecore Dynamic Links A Developer's Guide to Constructing URLs with Sitecore Table of Contents Chapter 1 Introduction...

More information

32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems

32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems 32-Bit Workload Automation 5 for Windows on 64-Bit Windows Systems Overview 64-bit Windows Systems Modifying the Working Folder for Universal Server Components Applications Installed in the Windows System

More information

Installation & User Guide

Installation & User Guide SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Administrator's Guide

Administrator's Guide Search Engine Optimization Module Administrator's Guide Installation and configuration advice for administrators and developers Sitecore Corporation Table of Contents Chapter 1 Installation 3 Chapter 2

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

Webapps Vulnerability Report

Webapps Vulnerability Report Tuesday, May 1, 2012 Webapps Vulnerability Report Introduction This report provides detailed information of every vulnerability that was found and successfully exploited by CORE Impact Professional during

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

FileMaker Server 15. Custom Web Publishing Guide

FileMaker Server 15. Custom Web Publishing Guide FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

More information

INSTALLATION GUIDE V2.1 (DRAFT)

INSTALLATION GUIDE V2.1 (DRAFT) INSTALLATION GUIDE V2.1 (DRAFT) Table of Contents Quick Install Sheet Guide (If you have installed AppTracker before)... 2 Assumptions... 2 SQL... 2 IIS... 2 Configuration... 2 Prerequisites... 3 Windows

More information

TIBCO Spotfire Automation Services Installation and Configuration

TIBCO Spotfire Automation Services Installation and Configuration TIBCO Spotfire Automation Services Installation and Configuration Software Release 7.0 February 2015 Updated March 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Entrust Managed Services PKI Administrator s Quick Start Guide

Entrust Managed Services PKI Administrator s Quick Start Guide Entrust Managed Services PKI Administrator s Quick Start Guide Each Managed Services PKI organization requires an administrator also known as a local registration authority (LRA) whose duty it is to manage

More information

Web Security School Final Exam

Web Security School Final Exam Web Security School Final Exam By Michael Cobb 1.) Which of the following services is not required to run a Windows server solely configured to run IIS and publish a Web site on the Internet? a. IIS Admin

More information

Using Logon Agent for Transparent User Identification

Using Logon Agent for Transparent User Identification Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

Identikey Server Windows Installation Guide 3.1

Identikey Server Windows Installation Guide 3.1 Identikey Server Windows Installation Guide 3.1 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012 SafeGuard Enterprise Web Helpdesk Product version: 6 Document date: February 2012 Contents 1 SafeGuard web-based Challenge/Response...3 2 Installation...5 3 Authentication...8 4 Select the Web Helpdesk

More information

FileMaker Server 9. Custom Web Publishing with PHP

FileMaker Server 9. Custom Web Publishing with PHP FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP

More information

Web Portal User Guide. Version 6.0

Web Portal User Guide. Version 6.0 Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries

More information

Sophos Mobile Control Installation guide. Product version: 3

Sophos Mobile Control Installation guide. Product version: 3 Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External

More information

Entrust Managed Services PKI Administrator Guide

Entrust Managed Services PKI Administrator Guide Entrust Managed Services PKI Entrust Managed Services PKI Administrator Guide Document issue: 3.0 Date of issue: May 2009 Copyright 2009 Entrust. All rights reserved. Entrust is a trademark or a registered

More information

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS GUIDE INSTALLATION X-POS v3.4 2015 SmartOSC and X-POS 1. Prerequisites for Installing and Upgrading Server has Apache/PHP 5.2.x/MySQL installed. Magento Community version 1.7.x or above already installed

More information

AD Phonebook 2.2. Installation and configuration. Dovestones Software

AD Phonebook 2.2. Installation and configuration. Dovestones Software AD Phonebook 2.2 Installation and configuration 1 Table of Contents Introduction... 3 AD Self Update... 3 Technical Support... 3 Prerequisites... 3 Installation... 3 Adding a service account and domain

More information

Notes on how to migrate wikis from SharePoint 2007 to SharePoint 2010

Notes on how to migrate wikis from SharePoint 2007 to SharePoint 2010 Notes on how to migrate wikis from SharePoint 2007 to SharePoint 2010 This document describes the most important steps in migrating wikis from SharePoint 2007 to SharePoint 2010. Following this, we will

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Installation and configuration guide Installation & Configuration guide

Installation and configuration guide Installation & Configuration guide Installation and configuration guide Installation & Configuration guide Business Analyze 4.0 Business Analyze 4 Page 1 of 86 Business Analyze. All rights reserved. Business Analyze grants you the right

More information

Advantage for Windows Copyright 2012 by The Advantage Software Company, Inc. All rights reserved. Client Portal blue Installation Guide v1.

Advantage for Windows Copyright 2012 by The Advantage Software Company, Inc. All rights reserved. Client Portal blue Installation Guide v1. Advantage for Windows Copyright 2012 by The Advantage Software Company, Inc. All rights reserved Client Portal blue Installation Guide v1.1 Overview This document will walk you through the process of installing

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

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

More information

Acano solution. Acano Manager R1.1 FAQs. Acano. December 2014 76-1039-02-G

Acano solution. Acano Manager R1.1 FAQs. Acano. December 2014 76-1039-02-G Acano solution Acano Manager R1.1 FAQs Acano December 2014 76-1039-02-G Contents Contents 1 Installation... 3 How do I set up the two components of Acano Manager on different servers?... 3 Am I going to

More information

c360 Portal Installation Guide

c360 Portal Installation Guide c360 Portal Installation Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com Products@c360.com Table of Contents c360 Portal Installation Guide... 1 Table of Contents... 2 Overview

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

Cascaded Lookup 5.0 User Guide

Cascaded Lookup 5.0 User Guide Cascaded Lookup 5.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All material contained in this publication is protected by Copyright and no part of this publication

More information

How to test and debug an ASP.NET application

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

More information

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved. Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Further web design: HTML forms

Further web design: HTML forms Further web design: HTML forms Practical workbook Aims and Learning Objectives The aim of this document is to introduce HTML forms. By the end of this course you will be able to: use existing forms on

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information