Setup. Introduction. SSL VPN Instructions. Open workshop launchpad. See separate handout for detailed instructions.

Size: px
Start display at page:

Download "Setup. Introduction. SSL VPN Instructions. Open workshop launchpad. See separate handout for detailed instructions."

Transcription

1 Setup SSL VPN Instructins See separate handut fr detailed instructins. Cnnect t the clear-guest wifi netwrk. Use the daily passwrd prvided. Access a public site (like t verify cnnectivity. Cnnect t the Array SSL-VPN site at the prvided URL using IE/Firefx/Safari (Chrme is nt supprted). Sign in using the username/passwrd cmbinatin prvided by the HL instructrs. Once VPN is enabled use Remte Desktp t cnnect t the HL client machine using the machine IP and credentials prvided by the HL instructrs will. Once cnnected t the client machine in Remte Desktp, start up Firefx. Open wrkshp launchpad Using Firefx in the client machine, navigate t [ip address]:7777 using the server IP address prvided by the HL instructrs. Fr example, fr an address , pint the brwser t :7777. Yu shuld see the fllwing page. Intrductin The purpse f this lab is t prvide hands-n experience with a new feature f MapViewer that renders a theme as tiles generated at run-time (i.e., when queried). This feature is knwn as Dynamic Tile Layers (r DTL) and is useful fr displaying frequently updated cntent, such as smart meter data r mving asset lcatins, in peratinal applicatins.

2 A DTL is a theme (Vectr, Raster, WMS) which is rendered as tiles at run-time. DTLs are particularly effective when used in cncert with UTF Grids (explained belw) fr relatively static layers t prvide additinal cntext that can be turned n r ff in a map display. Strm dem with DTL This is a mdified versin f the strm dem which is part f the MVDEMO sample that displays all 50 years f strm lcatins (wind, hail, trnad), instead f year by year. The layers (wind, hail, trnad) are rendered as tiles at query time. The query includes nn-spatial clumns such as Year, Mnth, Day, Lss (prperty lss in millins), Crp Lss, Fatalities, and Injuries. This infrmatin is used t ppulate a grid f a specified cell size (e.g. 4x4 pixels) which cntains the clumn values fr ne f the pints (the default is the ne with a max value fr a clumn such as Lss) that fall within the grid. S if 4 wind strm lcatins fall within a grid cell then the inf-windw which is displayed when the user clicks n that grid cell is the strm with the max (prperty) lss value. While the dem shws fixed (histrical) strm lcatins the layers culd equally well have been lcatins f mbile assets, smart-meter readings, r lcatins f peple Tweeting abut the Patrits frm their Andrid device. Since the layers are just JDBC queries r predefined themes, they can als be filtered by nn-spatial attributes such as prperty lss > 1 (millin). Similarly they can be rendered using an advanced style.

3 The next few sectins briefly intrduce MapViewer, Dynamic Tile Layers, UTF Grids, and the MVDEMO sample applicatin. Oracle MapViewer MapViewer is a tlkit cnsisting f server and client JEE and Javascript cmpnents fr incrprating interactive maps and spatial analysis in brwser-based applicatins. While it is ptimized t wrk with Oracle Spatial & Graph, the data and backgrund maps can cme frm external surces such as GeJSON, WFS, WMS,and nline map services such as HERE, Bing, r OpenStreetMap. The Javascript library (aka Oracle Maps V2) leverages HTML5 and prvides rich interactivity. The server cmpnent (deplyed in a JEE cntainer such as Weblgic Server r Glassfish) perfrms the database queries and serves up the data t be rendered in the HTML5 client.

4 Dynamic Tile Layers Dynamic tile layers (DTL) are layers (themes) that are defined prgrammatically (i.e. nly by using the OM.layer.DynamicTileLayer Oracle Maps V2 API bject). Unlike predefined layers (themes) the definitin is nt stred in the USER_SDO_THEMES r USER_SDO_CACHED_MAPS metadata views. A DTL is similar t a JDBC theme r layer in the sense that it is defined in client cde via the API. It differs frm a JDBC layer in that it must have an assciated tile layer cnfiguratin bject which specifies the Universe (SRID, zm levels, extent) and tile image size (e.g. 256x256 pixels). This is because a DTL is rendered as tiles at run-time. DTLs are rendered as tiles and require a Tile Layer cnfiguratin which specifies tile size, number f zm levels, and extent. When displayed n a backgrund map tile layer, a DTL can inherit the cnfiguratin f the backgrund map tile layer. When displayed alne a DTL requires a fully specified tile cnfiguratin bject as described belw. A DTL cde example A DTL needs a tile layer cnfiguratin, i.e. a Universe and tile image size. The fllwing tw lines create thse cnfiguratin bjects. The third line specifies the MapViewer URL. var myuniv = new OM.universe.LatLnUniverse(); var mycnfig = new OM.layer.TileLayerCnfig( { tileimagewidth: 256, tileimageheight: 256 }); var basemvurl = //a MapViewer instance URL Once we have the tile specificatin we can define a DTL using OM.layer.DynamicTileLayer. We ll use the SQL (JDBC) query based Trnad layer frm the Strm dem described abve as an example. First we define the <theme> xml fragment which includes SQL statement fr the query. var themesxml = "<themes>" + "<theme name=\"theme_trnad\">" + "<jdbc_query" + " datasurce=\"mvdemo\"" + " jdbc_srid=\"3857\"" + " x_clumn=\"lng_lc\"" + " y_clumn=\"lat_lc\"" + ">SELECT s.gem.sd_pint.x lng_lc,s.gem.sd_pint.y lat_lc,lss,year,mnth,day,state,fatalities,injuries,crplss frm trnad_3857 s " + "<hidden_inf>" + "<field clumn=\"year\" name=\"year\"/>" + "<field clumn=\"month\" name=\"mnth\"/>" + "<field clumn=\"day\" name=\"day\"/>" + "<field clumn=\"state\" name=\"state\"/>" + "<field clumn=\"loss\" name=\"lss\"/>" + "<field clumn=\"croploss\" name=\"crp_lss\"/>" + "<field clumn=\"fatalities\" name=\"fatalities\"/>" + "<field clumn=\"injuries\" name=\"injuries\"/>" + "</hidden_inf>" + "</jdbc_query>" + "<rendering>" +"<style name=\"v.tornado_64\" value_clumns=\"loss\" min_scale=\" \" max_scale=\"0.0\" scale_mde=\"ratio\"/>" +"<style name=\"v.tornado\" value_clumns=\"loss\" min_scale=\"8.0e10\" max_scale=\" \" scale_mde=\"ratio\"/>"

5 + "</rendering>" + "</theme>" + "</themes>"; The <hidden_inf> clumns define what is displayed in an inf-windw n click. The fllwing statement defines the trnad_damage DTL. Nte: the tileserverurl must be the MapViewer URL (base_url) + the OM servlet (i.e. mserver) since a DTL is a map image created at run-time and a cached tile image fetched via the map cache servlet (mcserver). var imagetltrnad = new OM.layer.DynamicTileLayer("trnad_damage", { tileserverurl : baseurl + "/mserver", tilelayercnfig : mycnfig, universe : myuniv, ptins : { "datasurce" : "MVDEMO", "transparent" : true, "enableutfgrid" : true, "UTFGrid_reslutin" : 4, enableutfgridinfwindw : false, //use a custm inf-windw handler "themes_xml" : themesxml } }); The abve is a cde snippet frm the strm dem applicatin. It illustrates the fllwing characteristics f a dynamic tile layer: 1) The map applicatin fetches map images frm a MapViewer server. Therefre, it can take the advantage f all available features that a MapViewer server prvides. 2) The map image tiles are set t be transparent (i.e., the value fr prperty "transparent" is true). This setting makes all f the nn-verlapping features visible when multiple dynamic tile layers are displayed ne n tp f the ther in ne map applicatin. Fr example, when yu verlay a 'trnad-damage' layer n tp f a 'hail-damage' layer, yu may see bth layers n the map when they are nt verlapping. This setting is especially useful when multiple layers cntaining linear r pint features. Nte that since the V2 API allws yu t turn n/ff a layer's visibility, s yu can always make a layer f interest standut and visible in yur applicatin. 3) This dynamic tile layer als enables MapViewer server's UTFGrid supprt (i.e., the value fr prperty " enableutfgrid" is true with a reslutin f 4 be specified as the value f prperty "UTFGrid_reslutin"). This setting instructs V2 API t request an additinal file as a cmpanin f each map image tile. That file cntains a JSON bject. One cmpnent f it is a tw-dimensinal grid that matches the tile image. Anther cmpnent f it is text attributes data fr each grid cell. When a muse event is triggered (e.g., a muse click) at an image pixel, its crrespnding grid cell can then be lcated and thus the text attributes f that grid cell can be retrieved. Then the map applicatin may custmize a MapViewer inf windw t display the text attributes. Ding s, mre infrmatin is passed frm the surce data t an end user. The text attributes in a JSON dcument are defined in a MapViewer theme's <hidden_inf> element. The theme can be either a predefined gemetry theme, r a dynamically frmatted JDBC theme. In the abve cde snippet, a JDBC theme was emplyed. A reslutin value (e.g., "UTFGrid_reslutin":4) indicates the windw width and height in the map image tile a grid cell represents. In this example, ne grid cell in the UTFGrid dcument represents 16 pixels (4x4=16). We had prefix UTF in 'UTFGrid' is because it uses UTF-8 encding.

6

7 When this UTF Grid is included with a map tile layer, a muse click will be assciated with a cell in the UTF Grid. If a feature is present at the muse click lcatin, the cell will cntain a character which in turn will be assciated with attribute(s). Thse attributes are then leveraged fr interactin such as inf windws. It is imprtant t recgnize the inherit trade ff assciated with a gridded representatin f layer attributes: perfrmance and scalability are imprved while detailed accuracy is reduced. MVDEMO Sample Applicatin The mvdem sample applicatin cnsists f a tutrial and sme feature dems, such as the strm dem. We will use the tutrial sectin fr the hands-n lab. The tutrials cnsist f cde snippets that demnstrate the use f varius Oracle Maps V2 bjects. The cde snippets (Javascript) can be edited and re-run t see the effect f any cde changes. The hands-n lab will fcus n Tutrial sectin named Dynamic Tile Layers and UTF Grid. The first entry C00: Dyn TL Lab is a placehlder fr cpying and pasting cde snippets frm ther examples r attempting t build yur wn example frm scratch.

8 Lab MapViewer Cnsle - Open MapViewer Cnsle frm launchpad - lg in using admin/welcme1 - Review Admin, Metadata, Cnfiguratin tabs

9 MVDEMO verview Open MVDMEO frm launchpad Click n Oracle Maps Html5 Tutrial link at bttm f page Explre dem categries and bserve Run buttn used t refresh map with cde changes

10 Click n dem A00 Display a map Scrll dwn in Javascript t basemap definitin. Nte map used in dem_map. Making a basic change: change dem_map t wrld_map and click Run abve map

11 Dynamic Tile Layers Dynamic Tile Layer based n predefined basemap Open C01 - Dyn TL: MV basemap Observe Dynamic Tile Layer defined using basemap Change basemap frm dem_map t wrld_map and click Run

12 Dynamic Tile Layer based n predefined Themes Open C02 Dyn TL: MV Themes Observe Dynamic Tile Layer defined using themes Remve Highways theme (THEME_DEMO_HIGHWAYS) and click Run Add cunties (THEME_DEMO_COUNTIES) and click Run Observe updated Dynamic Tile Layer

13 Dynamic Tile Layer frm multiple MapViewer server instances Open CO3 Dyn TL: Multiple servers fr themes Nte ability t surce frm alternate MapViewer server instance Exercise nt part f lab as ur envirnment des nt allw external internet access

14 Dynamic Tile Layer frm JDBC Theme Open C05 Dyn TL: Filter a JDBC Theme Observe JDBC query definitin fr Dynamic Tile Layer

15 Dynamic Tile Layer frm JDBC Theme with filter Open C05 Dyn TL: Filter a JDBCTheme Observe SQL filter Update SQL filter changing 25 t 75 and click Run Observe change in Dynamic Tile layer

16 UTF Grid UTF Grid n predefined tile layer Open C06 UTF Grid n Tile Layer Observe UTF Grid enabled Click n map and bserve UTF Grid-based inf windw Update tile layer surce frm cunty_utf_grid_tl t utfgrid_tl and click Run Click n map and bserve UTF Grid-based inf windw

17 UTF Grid n Dynamic Tile Layer Open C02 Dyn TL: MV Themes Observe updated Dynamic Tile Layer des nt have inf windw behavir Insert enableutfgrid:true in ptins sectin f Dynamic Tile Layer definitin Add a cmma at end f previus line Click Run, click in map and bserve UTF Grid-based inf windw Nte, attributes will nly include State as Highways and Cities themes are nt cnfigured with Hidden Attributes. Replace "THEME_DEMO_HIGHWAYS" "THEME_DEMO_CITIES" with THEME_DEMO_COUNTIES Click Run, click in map and bserve UTF Grid-based inf windw including state and cunty attributes Nte, Cunty theme is cnfigured with Hidden Attributes, hence included in UTF Grid-based inf windw.

18 Custmize attributes fr UTF Grid n Dynamic Tile Layer Open C04 Dyn TL: JDBC Theme Observe updated Dynamic Tile Layer des nt have inf windw behavir UTF Grid attributes are cntrlled using a theme s Hidden Inf. We will add Hidden Inf t the JDBC theme. Insert the fllwing Hidden Inf definitin inside the jdbc_query XML tags: '<hidden_inf><field clumn="cunty" name="cunty Name"/><field clumn="ttpp" name="ttal Ppulatin"/></hidden_inf> \n'+ Insert enableutfgrid:true in ptins sectin f Dynamic Tile Layer definitin Add a cmma at end f previus line Click Run and click in map t bserve UTF Grid-based inf windw

19 UTF Grid n Dynamic Tile Layer with custm inf windw Open C07 Dyn TL with UTF Grid Set enableutfgridinfwindw t true Cmment ut event listener Observe default UTF grid inf windw Set enableutfgridinfwindw t false Uncmment event listener Observe custm UTF grid inf windw This cncludes ur Hands n Lab, thank yu fr attending!

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

SAS Viya 3.2 Administration: Mobile Devices

SAS Viya 3.2 Administration: Mobile Devices SAS Viya 3.2 Administratin: Mbile Devices Mbile Devices: Overview As an administratr, yu can manage a device s access t SAS Mbile BI, either by exclusin r inclusin. If yu manage by exclusin, all devices

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0 Upgrading Kaltura MediaSpace TM Enterprise 1.0 t Kaltura MediaSpace TM Enterprise 2.0 Assumptins: The existing cde was checked ut f: svn+ssh://mediaspace@kelev.kaltura.cm/usr/lcal/kalsurce/prjects/m ediaspace/scial/branches/production/website/.

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

PAGE NAMING STRATEGIES

PAGE NAMING STRATEGIES PAGE NAMING STRATEGIES Naming Yur Pages in SiteCatalyst May 14, 2007 Versin 1.1 CHAPTER 1 1 Page Naming The pagename variable is used t identify each page that will be tracked n the web site. If the pagename

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

Product Documentation. New Features Guide. Version 8.7.5/XE6

Product Documentation. New Features Guide. Version 8.7.5/XE6 Prduct Dcumentatin New Features Guide Versin 8.7.5/XE6 2015 Embarcader Technlgies, Inc. Embarcader, the Embarcader Technlgies lgs, and all ther Embarcader Technlgies prduct r service names are trademarks

More information

Quick Guide on implementing SQL Manage for SAP Business One

Quick Guide on implementing SQL Manage for SAP Business One Quick Guide n implementing SQL Manage fr SAP Business One The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage fr SAP B1 SQL Server databases. SQL Manage is a ttal

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

How to use DCI Contract Alerts

How to use DCI Contract Alerts Hw t use DCI Cntract Alerts Welcme t the MyDCI Help Guide series Hw t use DCI Cntract Alerts In here, yu will find a lt f useful infrmatin abut hw t make the mst f yur DCI Alerts which will help yu t fully

More information

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as:

$ARCSIGHT_HOME/current/user/agent/map. The files are named in sequential order such as: Lcatin f the map.x.prperties files $ARCSIGHT_HOME/current/user/agent/map File naming cnventin The files are named in sequential rder such as: Sme examples: 1. map.1.prperties 2. map.2.prperties 3. map.3.prperties

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Using UB Stream and UBlearns

Using UB Stream and UBlearns Using UB Stream and UBlearns Instructrs can nw uplad vides/audi r create a vide using their webcam in UBLearns. There is a new mashup tl (MEDIAL) that allws yu t uplad yur media files t UB s streaming

More information

MOS PowerPoint 2013 Quick Reference

MOS PowerPoint 2013 Quick Reference MOS PwerPint 2013 Quick Reference Exam 77-422: MOS PwerPint 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-422 YuTube Vides: http://www.yutube.cm/user/3mit1/playlists Create and Manage

More information

TUTORIAL --- Learning About Your efolio Space

TUTORIAL --- Learning About Your efolio Space TUTORIAL --- Learning Abut Yur efli Space Designed t Assist a First-Time User Available t All Overview Frm the mment yu lg in t yur just created myefli accunt, yu will find help ntes t guide yu in learning

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

ME Week 5 Project 2 ilogic Part 1

ME Week 5 Project 2 ilogic Part 1 1 Intrductin t ilgic 1.1 What is ilgic? ilgic is a Design Intelligence Capture Tl Supprting mre types f parameters (string and blean) Define value lists fr parameters. Then redefine value lists autmatically

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Design Document: LinkedIn Basics

Design Document: LinkedIn Basics Design Dcument: LinkedIn Basics Class Descriptin Learn hw LinkedIn--the Internet's number ne prfessinal netwrking website--allws yu t create and prmte wrkplace skills, experience, and successes in this

More information

Australian Statistics API Specification

Australian Statistics API Specification Australian Statistics API Specificatin Versin: 1.2 Date Mdified: 23 March 2017 Page 1 The cntext... 2 Functins f the API... 2 2.1 Retail Trade API... 2 Input Parameters fr API... 3 Output Specificatin

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Chalkable Classroom For Students

Chalkable Classroom For Students Chalkable Classrm Fr Students Abut This Dcument This dcument cntains an verview f the Chalkable Classrm Hme Prtal, which is used by students. Table f Cntents Chalkable Classrm Fr Students 1 Abut This Dcument...1

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

VMware Horizon Mirage Web Manager Guide v4.2

VMware Horizon Mirage Web Manager Guide v4.2 VMware Hrizn Mirage Web Manager Guide v4.2 June 2013 Cntents Overview... 3 Installatin Ntes... 3 Lgging In... 3 Perfrming a Quick Search... 4 Perfrming an Advanced Search... 5 Selecting a User-Device...

More information

Andrid prgramming curse UI Overview User Interface By Võ Văn Hải Faculty f Infrmatin Technlgies All user interface elements in an Andrid app are built using View and ViewGrup bjects. A View is an bject

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Exosoft Backup Manager

Exosoft Backup Manager Exsft Backup Manager 2018 Exsft Backup Manager Ensuring databases are backed up regularly is a critical part f any cmpany data recvery prcess. Mst mnth end as well as end f financial year prcesses shuld

More information

Kaltura Video Navigator for ECM Installation and Deployment Guide. Version: 2.0

Kaltura Video Navigator for ECM Installation and Deployment Guide. Version: 2.0 Kaltura Vide Navigatr fr ECM Installatin and Deplyment Guide Versin: 2.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015 Kaltura Inc.

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview Essentials fr IBM Cgns BI (V10.2) Day(s): 5 Curse Cde: B5270G Overview NOTE: This is an Instructr Led Online curse. Please d nt make any travel arrangements. IBM Cgns Educatin is nw pleased t ffer yu ur

More information

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use Recmmended Minimum Requirements fr Cisc Meeting Applicatin Web RTC Use Fr the best experience the fllwing requirements and recmmendatins shuld be fllwed. Requirements: External USB web camera capable f

More information

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installatin Updated Aug 30, 2011 Server Requirements Hardware The hardware requirements are mstly dependent n the number f cncurrent users yu expect

More information

RISKMAN TOOL TIPS CHEAT SHEET

RISKMAN TOOL TIPS CHEAT SHEET This is a prmpt sheet fr mre detailed instructins n using the List & Cdes Maintenance sectin f RiskMan refer t the List & Cdes Maintenance Guide accessed via the HELP - > REFERENCE GUIDES menu and the

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules:

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules: PwerSchl ffers a variety f tls that schl administratrs and ffice staff can use t cmmunicate infrmatin effectively with students, parents, and staff members. Learn hw t create mailing labels, print reprts

More information

Launching Xacta 360 Marketplace AMI Guide June 2017

Launching Xacta 360 Marketplace AMI Guide June 2017 Launching Xacta 360 Marketplace AMI Guide June 2017 Tels Crpratin 2017. All rights reserved. U.S. patents Ns. 6,901,346; 6,980,927; 6,983,221; 6,993,448; and 7,380,270. Xacta is a registered trademark

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information

InformationNOW Letters

InformationNOW Letters InfrmatinNOW Letters Abut this Guide This Quick Reference Guide prvides an verview f letters in InfrmatinNOW. There are three types f letters: Student: May be used t create varius letters, frms, custmized

More information

IAB MRAID 2 TEST AD: RESIZE WITH ERRORS AD. Resize with Errors Ad. URL for this Creative. Goal of Ad. This Creative Tests:

IAB MRAID 2 TEST AD: RESIZE WITH ERRORS AD. Resize with Errors Ad. URL for this Creative. Goal of Ad. This Creative Tests: Resize with Errrs Ad URL fr this Creative http://mraid.iab.net/cmpliance/units/resize-err.txt Gal f Ad This ad will test that the cntainer triggers apprpriate errr handling when resize-related methds and

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Cisco Tetration Analytics, Release , Release Notes

Cisco Tetration Analytics, Release , Release Notes Cisc Tetratin Analytics, Release 1.102.21, Release Ntes This dcument describes the features, caveats, and limitatins fr the Cisc Tetratin Analytics sftware. Additinal prduct Release ntes are smetimes updated

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

Configuring the McAfee Windows Event Collector Management Utility *Also can provide client transmission of other non-windows log files*

Configuring the McAfee Windows Event Collector Management Utility *Also can provide client transmission of other non-windows log files* Cnfiguring the McAfee Windws Event Cllectr Management Utility *Als can prvide client transmissin f ther nn-windws lg files* Utility Install 1. Dwnlad the MFE Nitr Windws Agent (chse latest versin) https://secure.mcafee.cm/apps/dwnlads/my-prducts/cmpnent-prductlist.aspx?regin=us

More information

Installing and using QGIS

Installing and using QGIS Land Accunting Exercise Part 1 Installing QGIS 1 Installing and using QGIS Reginal Expert Wrkshp n Land Accunting, UNESCAP, 09-2017 UNESCAP - Reginal Expert Wrkshp n Land Accunting, Bangkk, Thailand, Sep.

More information

Asset Panda Web Application Release 12.02

Asset Panda Web Application Release 12.02 Asset Panda Web Applicatin Release 12.02 User Cnfiguratin Permissins Several changes have been made t this page including the fllwing. Page Design The layut has been changed s that all Edit and Misc Cnfiguratins

More information

CS5530 Mobile/Wireless Systems Using Google Map in Android

CS5530 Mobile/Wireless Systems Using Google Map in Android Mbile/Wireless Systems Using Ggle Map in Andrid Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Setup Install the Ggle Play services SDK Tls > Andrid > SDK

More information

GPA: Plugin for OS Command With Solution Manager 7.1

GPA: Plugin for OS Command With Solution Manager 7.1 GPA: Plugin fr OS Cmmand With Slutin Manager 7.1 The plugin OS Cmmand can be used in yur wn guided prcedures. It ffers the pssibility t execute pre-defined perating system cmmand n each hst part f the

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

TN How to configure servers to use Optimise2 (ERO) when using Oracle

TN How to configure servers to use Optimise2 (ERO) when using Oracle TN 1498843- Hw t cnfigure servers t use Optimise2 (ERO) when using Oracle Overview Enhanced Reprting Optimisatin (als knwn as ERO and Optimise2 ) is a feature f Cntrller which is t speed up certain types

More information

Configure Data Source for Automatic Import from CMDB

Configure Data Source for Automatic Import from CMDB AvailabilityGuard TM Cnfigure Data Surce fr Autmatic Imprt frm CMDB AvailabilityGuard allws yu t cnfigure business entities (such as services, divisins, and applicatins) and assign hsts, databases, and

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

Customer Self-Service Center Migration Guide

Customer Self-Service Center Migration Guide Custmer Self-Service Center Migratin Guide These instructins intrduce yu t the new Custmer Prtal, which is replacing the lder Custmer Self-Service Center, and guides yu thrugh the migratin. Dn t wrry:

More information

AvePoint Perimeter Pro 1.9

AvePoint Perimeter Pro 1.9 G09 AvePint Perimeter Pr 1.9 Secured Share User Guide Issued December 2017 Table f Cntents What s New in this Guide... 4 Overview... 5 Internal Users... 6 Site Cllectin Administratrs... 7 External Prtal

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

TRAINING GUIDE. GIS Admin for Web and Tablet Map

TRAINING GUIDE. GIS Admin for Web and Tablet Map TRAINING GUIDE GIS Admin fr Web and Tablet Map GIS Admin fr Web and Mbile Maps In this sessin, we ll cver the tls necessary t prperly cnfigure Lucity t wrk with yur GIS envirnment. We ll give yu infrmatin

More information

IBM Design Room Live! release notes

IBM Design Room Live! release notes IBM Design Rm Live! release ntes These release ntes prvide sprint-wise release infrmatin abut IBM Design Rm Live!, such as the new features, fixes, limitatins, and any specific requirements. The sprint

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 28, 2017 - Versin 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

WordPress Overview for School Webmasters

WordPress Overview for School Webmasters WrdPress Overview fr Schl Webmasters Cntents 1. Rle f the Schl Webmaster... 2 2. Rle f the District Webmaster... 2 3. Schl Website Standards... 3 Header... 3 Fter... 3 Pages... 4 Sites... 5 4. Hw T...

More information

Quick Installation Guide

Quick Installation Guide Oracle Strategic Operatinal Planning Release 3.5.1 Quick Installatin Guide Quick Installatin Guide This file cntains the fllwing sectins: Purpse... 1 System Requirements... 1 Server Cnfiguratin... 1 Client

More information

AvePoint Discovery Tool 3.5. User Guide

AvePoint Discovery Tool 3.5. User Guide AvePint Discvery Tl 3.5 User Guide Issued January 2018 Table f Cntents What s New in this Release... 3 Abut AvePint Discvery Tl... 4 Submitting Dcumentatin Feedback t AvePint... 5 Befre Yu Begin... 6 System

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS T ABLE OF C ONTENTS Table f Cntents... 1 Intrductin... 2 Target Audience... 2 Objectives... 2 Other Resurces... 2 Assumptins... 2 Verify

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects January 29, 2018 - Versin 9.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

CaseWare Working Papers. Data Store user guide

CaseWare Working Papers. Data Store user guide CaseWare Wrking Papers Data Stre user guide Index 1. What is a Data Stre?... 3 1.1. When using a Data Stre, the fllwing features are available:... 3 1.1.1.1. Integratin with Windws Active Directry... 3

More information

Repstor custodian. On Premise Pre-Requisites. Document Version 1.1 January 2017

Repstor custodian. On Premise Pre-Requisites. Document Version 1.1 January 2017 Repstr custdian On Premise Pre-Requisites Dcument Versin 1.1 January 2017 Intrductin This dcument utlines the pre-requisites fr installatin f the Repstr custdian server cmpnents. There are tw main parts;

More information

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins VMware AirWatch SDK Plugin fr Apache Crdva Instructins Add AirWatch Functinality t Enterprise Applicatains with SDK Plugins v1.2 Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using

More information

AASHTOWare BrDR Support Center JIRA Getting Started Guide

AASHTOWare BrDR Support Center JIRA Getting Started Guide AASHTOWare BrDR Supprt Center JIRA Getting Started Guide Versin 1.0.0.0 August 2013 Cpyright 1997-2013 by the American Assciatin f State Highway and Transprtatin Officials. 444 Nrth Capital Street, N.

More information

Acrbat XI - Gespatial PDFs Abut gespatial PDFs A gespatial PDF cntains infrmatin that is required t gereference lcatin data. When gespatial data is imprted int a PDF, Acrbat retains the gespatial crdinates.

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

An Introduction to Windows 7

An Introduction to Windows 7 2011 An Intrductin t Windws 7 Lena Arena Prject Crdinatr, DER NSW Sydney Regin Ph: 9582 2851 Carmelina.arena@det.nsw.edu.au Table f Cntents Windws 7 Desktp - The Elements f the Windws 7 Desktp... 2 Mre

More information

Stock Affiliate API workflow

Stock Affiliate API workflow Adbe Stck Stck Affiliate API wrkflw The purpse f this dcument is t illustrate the verall prcess and technical wrkflw fr Adbe Stck partners wh want t integrate the Adbe Stck Search API int their applicatins.

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Apache Solr for FSI SERVER. User Manual. Version 4.5

Apache Solr for FSI SERVER. User Manual. Version 4.5 Apache Slr fr FSI SERVER User Manual Versin 4.5 Apache Slr fr FSI Server NeptuneLabs GmbH Lagesche Str. 32 D-32657 Lemg Germany 2009-2015 NeptuneLabs. All rights reserved. Last updated: Nvember 2013 FSI

More information

TRAINING GUIDE. Geodatabase Configuration Tool Overview

TRAINING GUIDE. Geodatabase Configuration Tool Overview TRAINING GUIDE Gedatabase Cnfiguratin Tl Overview Gedatabase Cnfiguratin Tl Overview In this sessin, we ll intrduce yu t the Gedatabase Cnfiguratin tl fr ArcGIS 10x. We ll give yu infrmatin abut the synchrnizatin

More information

Introduction to Oracle Business Intelligence Enterprise Edition: OBIEE Answers 11g

Introduction to Oracle Business Intelligence Enterprise Edition: OBIEE Answers 11g Intrductin t Oracle Business Intelligence Enterprise Editin: OBIEE Answers 11g Crnell Custmized Versin April 2012 Minr crrectins were made n page 2, fr the Oct 20, 2017 OBIEE 12c Upgrade April, 2012 All

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand Planning, installing, and cnfiguring IBM CMIS fr Cntent Manager OnDemand Cntents IBM CMIS fr Cntent Manager OnDemand verview... 4 Planning fr IBM CMIS fr Cntent Manager OnDemand... 5 Prerequisites fr installing

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Maximo Reporting: Maximo-Cognos Metadata

Maximo Reporting: Maximo-Cognos Metadata Maxim Reprting: Maxim-Cgns Metadata Overview...2 Maxim Metadata...2 Reprt Object Structures...2 Maxim Metadata Mdel...4 Metadata Publishing Prcess...5 General Architecture...5 Metadata Publishing Prcess

More information