Arjun V. Bala Page 25

Size: px
Start display at page:

Download "Arjun V. Bala Page 25"

Transcription

1 15) Explain JSP unified Expressin Language (EL). (May-13, Jun-12) EL is a language that allws JSP prgrammers t fetch applicatin data stred in JavaBeans cmpnent. The fllwing methds are used t call the java cde frm a JSP page: 1. Placing the entire Java cde in a JSP page 2. Defining separate helper classes that encapsulate the entire Java cde and calling these helper classes frm a JSP page 3. Using JavaBeans and JSP page actin tags 4. Using JSP EL 5. Create tag handler classes t embed the Java cde The incrpratin f EL t the JSP has helped reduce the use f scriptles in JSP page. EL expressins prvide shrt hand ntatins t retrieve, present, and manipulate Web applicatin data. EL expressins are enclsed between the ${ and} characters. The mst general example f an EL expressin is ${bject.data} Where, bject can be any Java bject representing different scpe, such as request,sessin. EL expressings can be categrized int the fllwing types: 1. Immediate and deferred expressins 2. Value expressins 3. Methd expressins 1) Immediate and deferred expressins Tw cnstructs are used t represent EL expressins, ${ expr } used fr expressins that need t be evaluated immediately, and #{ expr } used fr expressins that need t be evaluated at later time. An expressin that uses ${ expr } is called immediate expressin and The expressin that uses #{ expr } is called deferred expressin. 2) Value Expressins Value epressins are used t refer t bjects such as JavaBeans, Cllectins, enumeratins and implicit bjects and their prperties. An bject is referred t by using the value expressin cntaining the name f the bject Suppse the ${ emplyee } expressin is used in a JSP page, where emplyee refers t the name f a Which searches fr the emplyee JavaBeab in the request, sessin and applicatin scpes If the emplyee JavaBean des nt exist, a null value is returned. Syntax f value expressin t access prperties and elements f a cllectin in java uses tw peratrs, (. ) and ( [] ). Fr example, The name prperty f the emplyee JavaBean can be referred as ${emplyee.name} r ${ emplyee[ name ] } expressin. T access a specific element f a cllectin, such as list r an array inside a JavaBean we can use ${ emplyee.name[0] }, ${ emplyee.name[1] }, etc The value expressins are f tw types: rvalue rvalue expressin can nly read data, and nt write data. lvalue lvalue expressin can read as well as write data. 3) Methd Expressins Methd expressins are used t call public methds, which returns a value r bject. Such expressins are usually deferred expressins. Arjun V. Bala Page 25

2 Tags usually use methd expressins t call functins that perfrm peratins such as validating a UI cmpnent r handling the events generated n a UI cmpnent. The fllwing cde snippet shws the use f methd expressins in JSF page: <h:frm> <h:inputtext id= value= #{emplyee. } validatr= #{emplyee.validate } /> <h:cmmandbuttn id= submit actin= #{custmer.submit} /> </h:frm> The varius elements shwn in the preceding cde snippet can be briefly described as fllws: The inputtext tag : shws the UIInput cmpnent in the frm f a text field n a webpage The validatr attribute : calls the validate methd f the emplyee JavaBean The actin attribute f the cmmandbuttn tag : calls the submit methd, which carries ut prcessing after submitting the webpage The validate methd : Refers t the methd that is called during the validatin phase f the JSP life cycle The submit methd : Refers t the methd that is called during the invke applicatin phase f the JSP life cycle 16) Enlist and explain the use f actin tags in JSP. (May-13,Jan-13) Actin tags are specific t a JSP page. When a JSP cntainer encunters an actin tag while translating a JSP page int a servlet, it generates a Java cde crrespnding t the task t be perfrmed by the actin tag. The fllwing are sme imprtant actin tags available in JSP page: 1. <jsp:include> The <jsp:include> actin tag facilitates Java prgrammers in including a static r dynamic resurce, such as an HTML r JSP page in the current JSP page. If the resurce t be included is static then its cntent is directly included. If the resurce is dynamic then first it is prcessed and result is included in page. Example <jsp:include page= test.jsp /> 2. <jsp:frward> The <jsp:frward> tag frwards a JSP request t anther resurce which can be either static r dynamic. If the request is frwarded t a dynamic resurce, a <jsp:param> tag can be used t pass a name and value f a parameter t a resurce. <jsp:frward page= /header.html /> 3. <jsp:param> The <jsp:param> tag allws Java prgrammers t pass a name and value f a parameter t a dynamic resurce, while including it in a JSP page r frwarding a request t anther JSP page. <jsp:param name= uname value= arjunbala /> Arjun V. Bala Page 26

3 4. <jsp:usebean> T separate te business lgic frm the presentatin lgic, it is ften a gd idea t encapsulate the business lgin in Java bject, and then instantiate and use this Java bject within a JSP page, <jsp:usebean> tag helps in such task. The <jsp:usebean> actin tag has certain attributes that add extra characteristics t it, sme attributes specific t <jsp:usebean> are: Id : represents the name assigned t a JavaBean, which is later used as a variable t access the JavaBean Class : takes the qualified class name t create a JavaBean instance if the JavaBean instance is nt fund in the given scpe. beanname : takes the qualified class name r expressin f a JavaBean t create a Class & beanname can nt be used tgether. We can nt use expressins t create instance f JavaBean frm class attribute, fr that we have t use beanname attribute. Scpe : represents the scpe in which a JavaBean instance has t be created. Page scpe : indicates that a JavaBean can be used where <jsp:usebean> actin tag is used. Request scpe : indicates that a JavaBean can be used frm any JSP page, which prcesses the same request until a respnse is sent t a client by the JSP page. Sessin scpe : indicates that a JavaBean can be used frm any JSP page invked in the same sessin as the JSP page that created the Applicatin scpe : indicates that a JavaBean can be used frm any JSP page in the same applicatin as the JSP page that created the Example : <jsp:usebean id= mybean class= MyBeanClass scpe= sessin >. </jsp:usebean> 5. <jsp:setprperty> The <jsp:setprperty> actin tag sets the value f a prperty by using the setter methd f a Befre using the <jsp:setprperty> actin tag, the JavaBean must be instantiated. Example: <jsp:setprperty name= beanname prperty= uname value= arjunbala /> 6. <jsp:getprperty> The <jsp:setprperty> actin tag retrives the value f a prperty by using the getter methd f a JavaBean and writes the value f the current JspWriter. <jsp:getprperty name= mybean prperty= uname /> 7. <jsp:plugin> The <jsp:plugin> actin tag prvides supprt fr including a Java applet r JavaBean in a client Web brwser, by using built-in r dwnladed Java plug-in. The <jsp:plugin> actin tag perfrm the fllwing peratins: Specify whether the cmpnent added in the <bject> tag is a JavaBean r an applet. Lcate the cde that needs t be run. Arjun V. Bala Page 27

4 Psitin an bject in the brwser windw. Specify a URL frm which the plug-in sftware is t be dwnladed. Pass parameter names and values t an bject <jsp:plugin attributes>. </jsp:plugin> 8. <jsp:params> The <jsp:params> actin tag sends the parameters that yu want t pass t an applet r <jsp:params> <!- ne r mre jsp:param tags --> </jsp:params> 9. <jsp:fallback> The <jsp:fallback> actin tag is allws yu t specify a text message that is displayed if the required plug-in cannt run. This tag must be used as a child tag with <jsp:plugin> actin tag. Example: <jsp:fallback> Text message that has t be displayed if the plugin cannt be started </jsp:fallback> 10. <jsp:attribute> The <jsp:attribute> actin tag is used t specify the value f a standard r custm actin attribute. <jsp:setprperty name= mybean > <jsp:attribute name= prperty >uname</jsp:attribute> <jsp:attribute name= value >Arjun Bala</jsp:attribute> </jsp:setprperty> 11. <jsp:bdy> The <jsp:bdy> actin tag is used t specify the cntent (r bdy) f a standard r custm actin tag. <jsp:userbean id= mybean >.. <jsp:bdy>. </jsp:bdy> </jsp:mybean> 12. <jsp:element> The <jsp:element> actin tag is used t dynamically define the value f the tag f an XML element. <jsp:element name= mytag > <jsp:attribute name= myatt >My Value </jsp:attribute> </jsp:element> 13. <jsp:text> A <jsp:text> tag is used t enclse template data in an XML tag. The cntent f the <jsp:text> bdy is passed t the implicit bject ut. <jsp:text> Hell wrld frm the actin tag </jsp:text> Arjun V. Bala Page 28

5 17) Explain JSP standard tag library (JSTL) with examples. (Jun-12,Nv-11) Initially, web designers used scriplets in JSP pages t generate dynamic cntent. This resulted in redability issues and als made it difficult t maintain the JSP page. Custm tags were intrduced t vercme the prblems faced in using scriplets, they had sme limitatins t. Web designers had t spend a lt f time in cding, packaging, and testing these tags befre using them. This meant that web designers were ften left with little time t cncentrate n the designing f web pages. The intrductin f JSTL has helped web designers vercme the shrtcmings f custm tags, by encapsulating the cmmn functinalities included the use f tag libraries, such as cre, SQL, and XML. The main features f JSTL are: Prvides supprt fr cnditinal prcessing and Unifrm Resurce Lcatr (URL)- related actins. Prvides the XML tag library, which helps yu t manipulate XML dcuments. Enables Web applicatins t be accessed glbally by prviding the internatinalizatin tag library. Enables interactin with relatinal databases by using varius SQL cmmands. Prvides series f functins t perfrm manipulatins. Tag Libraries in JSTL: Tag Library Functin URI prefix Cre tag library Variable supprt c Flw Cntrl Iteratr URL management Miscellaneus XML tag library Flw cntrl x Transfrmatin Lcale Internatinalizatin Message frmatting fmt tag library Number and date frmatting SQL tag library Database manipulatin sql Functins Library Cllectin length String manipulatin fn Arjun V. Bala Page 29

6 Example f Cre tag library: <%@ taglib uri=" prefix="c" %> <html> <head> <title><c:chse> Tag Example</title> </head> <bdy> <c:set var="salary" scpe="sessin" value="${2000*2}"/> <p>yur salary is : <c:ut value="${salary}"/></p> <c:chse> <c:when test="${salary <= 0}"> Salary is very lw t survive. </c:when> <c:when test="${salary > 1000}"> Salary is very gd. </c:when> <c:therwise> N cmment... </c:therwise> </c:chse> </bdy> </html> Arjun V. Bala Page 30

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

Dreamweaver MX 2004. Templates

Dreamweaver MX 2004. Templates Dreamweaver MX 2004 Templates Table f Cntents Dreamweaver Templates... 3 Creating a Dreamweaver template... 3 Types f template regins... 4 Inserting an editable regin... 4 Selecting editable regins...

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

Responsive Design Fundamentals Chapter 1: Chapter 2: name content

Responsive Design Fundamentals Chapter 1: Chapter 2: name content Lynda.cm Respnsive Design Fundamentals Chapter 1: Intrducing Respnsive Design Respnsive design is a design strategy that is centered n designing yur cntent s that it respnds t the envirnment its encuntered

More information

Integrating With incontact dbprovider & Screen Pops

Integrating With incontact dbprovider & Screen Pops Integrating With incntact dbprvider & Screen Pps incntact has tw primary pints f integratin. The first pint is between the incntact IVR (script) platfrm and the custmer s crprate database. The secnd pint

More information

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t

More information

Interworks Cloud Platform Citrix CPSM Integration Specification

Interworks Cloud Platform Citrix CPSM Integration Specification Citrix CPSM Integratin Specificatin Cntents 1. Intrductin... 2 2. Activatin f the Integratin Layer... 3 3. Getting the Services Definitin... 4 3.1 Creating a Prduct Type per Lcatin... 5 3.2 Create Instance

More information

Creating automated reports using VBS AN 44

Creating automated reports using VBS AN 44 Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin

More information

SQL Perform Tools 5.10 Release Note

SQL Perform Tools 5.10 Release Note SQL Perfrm Tls 5.10 Release Nte Lndn, UK, February 26 2015 SQL Perfrm Tls versin 5.10 release Tday we are prudly annuncing the latest release f ur prducts' family SQL Perfrm Tls. Fr clarity, the prduct

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

edoc Lite Recruitment Guidelines

edoc Lite Recruitment Guidelines edc Lite Recruitment Guidelines Intrductin OneStart & the Academic Psitin Search Channel edc Lite Ruting and Wrkgrups Ruting Actin List Ruting Cntrls Wrkgrups Dcument Search edc Lite Dcuments Vacancy Ntice

More information

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide

LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide LgMeIn Rescue Web SSO via SAML 2.0 LgMeIn Rescue Web SSO via SAML 2.0 Cnfiguratin Guide 02-19-2014 Cpyright 2015 LgMeIn, Inc. 1 LgMeIn Rescue Web SSO via SAML 2.0 Cntents 1 Intrductin... 3 1.1 Dcument

More information

Extending Microsoft Dynamics CRM 2013 Online Training

Extending Microsoft Dynamics CRM 2013 Online Training Extending Micrsft Dynamics CRM 2013 Online Training Curse Outline Plan the deplyment f Micrsft Dynamics CRM Describe the Micrsft Dynamics CRM applicatin framewrk Describe the Micrsft Dynamics CRM extensibility

More information

JAVA/J2EE Course Syllabus

JAVA/J2EE Course Syllabus JAVA/J2EE Curse Syllabus Intrductin t Java What is Java? Backgrund/Histry f Java The Internet and Java's place in it Java Virtual Machine Byte cde - nt an executable cde Prcedure-Oriented vs. Object-Oriented

More information

Mobile Device Manager Admin Guide. Reports and Alerts

Mobile Device Manager Admin Guide. Reports and Alerts Mbile Device Manager Admin Guide Reprts and Alerts September, 2013 MDM Admin Guide Reprts and Alerts i Cntents Reprts and Alerts... 1 Reprts... 1 Alerts... 3 Viewing Alerts... 5 Keep in Mind...... 5 Overview

More information

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2. Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...

More information

BackupAssist SQL Add-on

BackupAssist SQL Add-on WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

Kepware Technologies ClientAce: Creating a Simple Windows Form Application

Kepware Technologies ClientAce: Creating a Simple Windows Form Application Kepware Technlgies ClientAce: Creating a Simple Windws Frm July, 2013 Ref. 1.03 Kepware Technlgies Table f Cntents 1. Overview... 1 1.1 Requirements... 1 2. Creating a Windws Frm... 1 2.1 Adding Cntrls

More information

TaskCentre v4.5 Send Fax (Tobit) Tool White Paper

TaskCentre v4.5 Send Fax (Tobit) Tool White Paper TaskCentre v4.5 Send Fax (Tbit) Tl White Paper Dcument Number: PD500-03-19-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Port Manager. Microsoft Dynamics CRM for Ports

Port Manager. Microsoft Dynamics CRM for Ports Prt Manager Micrsft Dynamics CRM fr Prts February 2015 Overview Celedn Partners Prt Manager encapsulates the functinality f many prt related prcesses int an easy t learn and easy t use tl. The slutin leverages

More information

Online Learning Portal best practices guide

Online Learning Portal best practices guide Online Learning Prtal Best Practices Guide best practices guide This dcument prvides Micrsft Sftware Assurance Benefit Administratrs with best practices fr implementing e-learning thrugh the Micrsft Online

More information

Common applications (append <space>& in BASH shell for long running applications)

Common applications (append <space>& in BASH shell for long running applications) CS 111 Summary User Envirnment Terminal windw: Prmpts user fr cmmands. BASH shell tips: fr cmmand line cmpletin. / t step backward/frward thrugh cmmand histry.! will re-execute

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

Mobile Web Developer- Advanced

Mobile Web Developer- Advanced Mbile Web Develper- Advanced Based n Aitrich Training Methdlgy HTML5 is the future. Knw the future and create great apps, sites, games and many mre innvative and clrful masterpieces with Aitrich Aitrich

More information

Ads SPA with AngularJS Lab

Ads SPA with AngularJS Lab Ads SPA with AngularJS Lab Yu are assigned t design and implement a web site fr Online Ads Publishing as single page applicatin (SPA) using HTML5 and AngularJS. The app manages users and their ads rganized

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

User Guide Version 3.9

User Guide Version 3.9 User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING

More information

HTTPD - Apache2 Web Server

HTTPD - Apache2 Web Server HTTPD - Apache2 Web Server Apache is the mst cmmnly used Web Server n Linux systems. Web Servers are used t serve Web Pages requested by client cmputers. Clients typically request and view Web Pages using

More information

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015 PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) Excel Data Management Pack (EDM-Pack) Date: December 2015 Dcument Versin: 1.0.0 Abstract The EDM-Pack includes a general-purpse Data Surce

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

FUJITSU Software ServerView Suite ServerView PrimeCollect

FUJITSU Software ServerView Suite ServerView PrimeCollect User Guide - English FUJITSU Sftware ServerView Suite ServerView PrimeCllect Editin February 2015 Cmments Suggestins Crrectins The User Dcumentatin Department wuld like t knw yur pinin f this manual. Yur

More information

The user authentication process varies from client to client depending on internal resource capabilities, and client processes and procedures.

The user authentication process varies from client to client depending on internal resource capabilities, and client processes and procedures. Learn Basic Single Sign-On Authenticatin Tale s Basic SSO applicatin grants Learn access t users withut requiring that they enter authenticatin lgin credentials (username and passwrd). The access pint

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

Prototype of a Web ETL Tool

Prototype of a Web ETL Tool Prttype f a Web ETL Tl Matija Nvak, Krnelije Rabuzin Faculty f Organizatin and Infrmatics University f Zagreb Varazdin, Cratia Abstract Extract, transfrm and lad (ETL) is a prcess that makes it pssible

More information

INTEGRATION OVERVIEW. Introduction... 1. Authentication methods... 2. Learning management system (LMS) integration methods... 2. AICC standard...

INTEGRATION OVERVIEW. Introduction... 1. Authentication methods... 2. Learning management system (LMS) integration methods... 2. AICC standard... INTEGRATION OVERVIEW Cntents Intrductin... 1 Authenticatin methds... 2 Learning management system (LMS) integratin methds... 2 AICC standard... 2 LTI standard... 3 Applicatin prgramming interface (API)

More information

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5 WinFlex Web Single Sign-On (EbixLife XML Frmat) Versin: 1.5 The gal f this dcument is t specify and explre the basic peratins that are required t facilitate a vendr applicatin requesting access t the WinFlex

More information

Outlook Plug-In. Send Conference Invites from Outlook. Downloading Outlook Plug-In CONFERENCING & COLLABORATION RESERVATIONLESS-PLUS

Outlook Plug-In. Send Conference Invites from Outlook. Downloading Outlook Plug-In CONFERENCING & COLLABORATION RESERVATIONLESS-PLUS USER GUIDE Outlk Plug-In Send Cnference Invites frm Outlk Scheduling cnference calls and always typing in the same dial-in number and cnference cde can be a bit tedius, especially when yu re in a hurry.

More information

esupport Quick Start Guide

esupport Quick Start Guide esupprt Quick Start Guide Last Updated: 5/11/10 Adirndack Slutins, Inc. Helping Yu Reach Yur Peak 908.725.8869 www.adirndackslutins.cm 1 Table f Cntents PURPOSE & INTRODUCTION... 3 HOW TO LOGIN... 3 SUBMITTING

More information

9 ITS Standards Specification Catalog and Testing Framework

9 ITS Standards Specification Catalog and Testing Framework New Yrk State ITS Standards Specificatin Develpment Guide 9 ITS Standards Specificatin Catalg and Testing Framewrk This chapter cvers cncepts related t develpment f an ITS Standards Specificatin Catalg

More information

Oracle Social Marketing Professional Services Descriptions. July 23, 2015

Oracle Social Marketing Professional Services Descriptions. July 23, 2015 Oracle Scial Marketing Prfessinal Services Descriptins July 23, 2015 TABLE OF CONTENTS ORACLE SOCIAL MARKETING: ONE-TIME SET-UP & TRAINING 2 SOCIAL MARKETING CONSULTING PACKAGE, LITE MID MARKET 2 SOCIAL

More information

Information paper Reference Data Management Service

Information paper Reference Data Management Service This infrmatin paper describes the EU Reference Data Management Service. This Service prvides a central database, web service web applicatin fr maintaining RIS reference data, which is used by varius RIS-systems

More information

WEB APPLICATION SECURITY TESTING

WEB APPLICATION SECURITY TESTING WEB APPLICATION SECURITY TESTING Cpyright 2012 ps_testware 1/7 Intrductin Nwadays every rganizatin faces the threat f attacks n web applicatins. Research shws that mre than half f all data breaches are

More information

DocAve 6 ediscovery. User Guide. Service Pack 5. Revision B Issued February 2015. DocAve 6: ediscovery

DocAve 6 ediscovery. User Guide. Service Pack 5. Revision B Issued February 2015. DocAve 6: ediscovery DcAve 6 ediscvery User Guide Service Pack 5 Revisin B Issued February 2015 1 Table f Cntents Abut DcAve ediscvery... 4 Cmplementary Prducts... 4 Submitting Dcumentatin Feedback t AvePint... 5 Befre Yu

More information

2008 BA Insurance Systems Pty Ltd

2008 BA Insurance Systems Pty Ltd 2008 BA Insurance Systems Pty Ltd BAIS have been delivering insurance systems since 1993. Over the last 15 years, technlgy has mved at breakneck speed. BAIS has flurished in this here tday, gne tmrrw sftware

More information

Document Management Versioning Strategy

Document Management Versioning Strategy 1.0 Backgrund and Overview Dcument Management Versining Strategy Versining is an imprtant cmpnent f cntent creatin and management. Versin management is a key cmpnent f enterprise cntent management. The

More information

Firewall Protection Profile

Firewall Protection Profile samhällsskydd ch beredskap 1 (10) ROS-ISÄK Rnny Janse 010-2404426 rnny.janse@msb.se Firewall Prtectin Prfile Extended Package: NAT samhällsskydd ch beredskap 2 (10) Innehållsförteckning 1. Intrductin...

More information

SYSTEM MONITORING PLUG-IN FOR MICROSOFT SQL SERVER

SYSTEM MONITORING PLUG-IN FOR MICROSOFT SQL SERVER SYSTEM MONITORING PLUG-IN FOR MICROSOFT SQL SERVER Oracle Enterprise Manager is Oracle s integrated enterprise IT management prduct line, prviding the industry s first cmplete clud lifecycle management

More information

Data Abstraction Best Practices with Cisco Data Virtualization

Data Abstraction Best Practices with Cisco Data Virtualization White Paper Data Abstractin Best Practices with Cisc Data Virtualizatin Executive Summary Enterprises are seeking ways t imprve their verall prfitability, cut csts, and reduce risk by prviding better access

More information

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1

Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1 Preparing t Deply Reflectin : A Guide fr System Administratrs Versin 14.1 Table f Cntents Table f Cntents... 2 Preparing t Deply Reflectin 14.1:... 3 A Guide fr System Administratrs... 3 Overview f the

More information

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet Custm Prtlets an unbiased review f the greatest Practice CS feature ever Andrew V. Gamet Descriptin In Practice CS, the firm can use any f the fur dashbards t quickly display relative infrmatin. The Firm,

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v15.1.2.0 Page 1 f 20 Intrductin Serv-U

More information

Additionally, the Microsoft.NET modules will prepare you for the following certification exams:

Additionally, the Microsoft.NET modules will prepare you for the following certification exams: .NET Training 177 hurs Curse Overview/Descriptin This self-paced.net Training Online Prgram is designed t help yu prepare fr fur Micrsft.NET certificatin exams. The prgram begins with basic Web design

More information

TheBrain 9 New Features and Benefits Overview

TheBrain 9 New Features and Benefits Overview TheBrain 9 New Features and Benefits Overview TheBrain 9 has been re-engineered frm the grund up and prvides enhanced capabilities in all aspects f the sftware. Frm the frnt-end user interface t the back-end

More information

TaskCentre v4.5 File Management Tool White Paper

TaskCentre v4.5 File Management Tool White Paper TaskCentre v4.5 File Management Tl White Paper Dcument Number: PD500-03-30-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 TECHNICAL SUMMARY

More information

Co. Cavan VEC. Programme Module for. Web Design. leading to. Level 4 FETAC. Web Design 4N1122

Co. Cavan VEC. Programme Module for. Web Design. leading to. Level 4 FETAC. Web Design 4N1122 C. Cavan VEC C. Cavan VEC Prgramme Mdule fr Web Design leading t Level 4 FETAC Web Design 4N1122 Web Design 4N1122 AMENDED APRIL 2013 1 C. Cavan VEC Intrductin This prgramme mdule may be delivered as a

More information

Picture Menu Web Part. AMREIN ENGINEERING AG Version 1.0

Picture Menu Web Part. AMREIN ENGINEERING AG Version 1.0 Picture Menu Web Part AMREIN ENGINEERING AG Versin 1.0 March 2012 Descriptin The Picture Menu Web Part displays the List items cntained in the specified Sharepint List.r Picture Library as a vertical r

More information

Sitecore Serialization Guide

Sitecore Serialization Guide Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide Rev: 4 February 2011 Sitecre CMS 6.0-6.4 Sitecre Serializatin Guide An administratr's guide t serializing cntent in Sitecre Sitecre CMS 6.0-6.4 Table f Cntents

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Tableau Advanced 2-Day Class

Tableau Advanced 2-Day Class Tableau Advanced 2-Day Class Curse Duratin: 2 Days Audience: This tw day curse is designed t prvide yu with the skills required t becme a Tableau pwer user. The curse is designed fr the prfessinal wh has

More information

Configuring and Integrating LDAP

Configuring and Integrating LDAP Cnfiguring and Integrating LDAP The Basics f LDAP 3 LDAP Key Terms and Cmpnents 3 Basic LDAP Syntax 4 The LDAP User Experience Mnitr 6 This dcument includes infrmatin abut LDAP and its rle with SlarWinds

More information

Welcome to CNIPS Training: CACFP Claim Entry

Welcome to CNIPS Training: CACFP Claim Entry Welcme t CNIPS Training: CACFP Claim Entry General Cmments frm SCN CACFP claiming begins with submissin f the Octber claim due by Nvember 15, 2012. Timelines/Due Dates With CNIPS, SCN will cntinue t enfrce

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide HarePint HelpDesk fr SharePint Fr SharePint Server 2010, SharePint Fundatin 2010 User Guide Prduct versin: 14.1.0 04/10/2013 2 Intrductin HarePint.Cm (This Page Intentinally Left Blank ) Table f Cntents

More information

Project Startup Report Presented to the IT Committee June 26, 2012

Project Startup Report Presented to the IT Committee June 26, 2012 Prject Name: SOS File 2.0 Agency: Secretary f State Business Unit/Prgram Area: Secretary f State Prject Spnsr: Al Jaeger Prject Manager: Beverly Maitland Prject Startup Reprt Presented t the IT Cmmittee

More information

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later.

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later. Certified Payrll XML Exprt As f June 4 th, 2015, The Califrnia Department f Industrial Relatins (DIR) is requiring that all certified payrll reprts be submitted nline using the ecpr system. The ecpr System

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and ii Cpyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.cm/ We have attempted t make these dcuments cmplete, accurate, and useful, but we cannt guarantee them t be perfect. When we

More information

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1 2010 Technical Reprt SimpleFeatureService Ing. Andrea Aime Ing. Simne Giannecchini. Date 10/11/2010 Versin 0.1 Cntents Recrd f Changes... 4 SimpleFeatureService prtcl v 0.1... 4 Supprted URLs... 5 Capabilities

More information

SortSite Technical Overview White Paper

SortSite Technical Overview White Paper SrtSite Technical Overview White Paper SrtSite saves weeks f manual testing by scanning web sites fr quality issues. Backgrund Finding quality issues n web sites is difficult and time-cnsuming. Mst sites

More information

Position Paper on In-Network Object Cloud Architecture and Design Goals. Interconnecting Smart Objects with Internet Workshop 25 th March 2011

Position Paper on In-Network Object Cloud Architecture and Design Goals. Interconnecting Smart Objects with Internet Workshop 25 th March 2011 Architecture and Design Gals Intercnnecting Smart Objects with Internet Wrkshp 25 th March 2011 Alex Galis Stuart Clayman University Cllege Lndn Department

More information

LOTUS NOTES 8.5. Managing Tasks. Microcomputer Training Centre. Department of Human Resources and Employee Relations Learning and Development

LOTUS NOTES 8.5. Managing Tasks. Microcomputer Training Centre. Department of Human Resources and Employee Relations Learning and Development Department f Human Resurces and Emplyee Relatins Learning and Develpment LOTUS NOTES 8.5 Cpyright 2005 Micrcmputer Training Centre, Yrk University Micrcmputer Training Centre Ltus Ntes 8.5 Table f Cntents

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

Getting Started Guide

Getting Started Guide fr SQL Server www.lgbinder.cm Getting Started Guide Dcument versin 1 Cntents Installing LOGbinder fr SQL Server... 3 Step 1 Select Server and Check Requirements... 3 Select Server... 3 Sftware Requirements...

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

DIRECT DATA EXPORT (DDE) USER GUIDE

DIRECT DATA EXPORT (DDE) USER GUIDE 2 ND ANNUAL PSUG-NJ CONFERNCE PSUG-NJ STUDENT MANAGEMENT SYSTEM DIRECT DATA EXPORT (DDE) USER GUIDE VERSION 7.6+ APRIL, 2013 FOR USE WITH POWERSCHOOL PREMIER VERSION 7.6+ Prepared by: 2 TABLE OF CONTENTS

More information

INTERMEDIATE CAD FILE MANAGEMENT

INTERMEDIATE CAD FILE MANAGEMENT INTERMEDIATE CAD FILE MANAGEMENT Intrductin File mismanagement is the dwnfall f many brilliant individuals. If yu are wise, yu wn't be ne f the peple wh meet disaster due t pr file management. Cmputers

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

DocAve 6 ediscovery. User Guide. Service Pack 6. Issued October 2015. DocAve 6: ediscovery

DocAve 6 ediscovery. User Guide. Service Pack 6. Issued October 2015. DocAve 6: ediscovery DcAve 6 ediscvery User Guide Service Pack 6 Issued Octber 2015 1 Table f Cntents What s New in this Guide... 4 Abut DcAve ediscvery... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint...

More information

WHITEPAPER Reference Architectures for Portal-based Rich Internet Applications

WHITEPAPER Reference Architectures for Portal-based Rich Internet Applications Authr: Sven Rieger Created n: 2015-04-10 Versin: 1.0 Rich Internet (RIAs) are HTML5-based applicatins with a desktp-like lk&feel which run inside a web brwser. The Micrsft Office applicatins Wrd, Excel,

More information

Knowledge Base Article

Knowledge Base Article Knwledge Base Article Crystal Matrix Interface Cmparisn TCP/IP vs. SDK Cpyright 2008-2012, ISONAS Security Systems All rights reserved Table f Cntents 1: INTRODUCTION... 3 1.1: TCP/IP INTERFACE OVERVIEW:...

More information

LeadStreet Broker Guide

LeadStreet Broker Guide RE/MAX f Western Canada LeadStreet Brker Guide Ver. 2.0 Revisin Histry Name Date Versin Descriptin Tamika Anglin 09/04/13 1.0 Initial Creatin Tamika Anglin 11/05/13 2.0 Inclusin f instructins n reprting

More information

AvePoint Privacy Impact Assessment 1

AvePoint Privacy Impact Assessment 1 AvePint Privacy Impact Assessment 1 User Guide Cumulative Update 2 Revisin E Issued February 2015 Table f Cntents Table f Cntents... 2 Abut AvePint Privacy Impact Assessment... 5 Submitting Dcumentatin

More information

Meet Moodle Students introduction to Moodle and Email

Meet Moodle Students introduction to Moodle and Email Meet Mdle Students intrductin t Mdle and Email 1. What is Mdle? Mdle is the sftware used fr the Student Intranet and nline curses als knwn as a Virtual Learning Envirnment r VLE fr shrt. It is a web based

More information

Employee Self Service (ESS) Quick Reference Guide ESS User

Employee Self Service (ESS) Quick Reference Guide ESS User Emplyee Self Service (ESS) Quick Reference Guide ESS User Cntents Emplyee Self Service (ESS) User Quick Reference Guide 5 Intrductin t ESS 5 Getting Started 6 Prerequisites 6 Accunt Activatin 7 Hw t activate

More information

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future The Imprtance Advanced Data Cllectin System Maintenance Berry Drijsen Glbal Service Business Manager WHITE PAPER knwledge t shape yur future The Imprtance Advanced Data Cllectin System Maintenance Cntents

More information

SOFTWARE DEVELOPER POSITION BY RIOMED LTD. SAFE. EFFICIENT. QUALITY WORLD CLASS HEALTHCARE SOLUTION

SOFTWARE DEVELOPER POSITION BY RIOMED LTD. SAFE. EFFICIENT. QUALITY WORLD CLASS HEALTHCARE SOLUTION SOFTWARE DEVELOPER POSITION BY RIOMED LTD. SAFE. EFFICIENT. QUALITY WORLD CLASS HEALTHCARE SOLUTION JOB DESCRIPTION POSITION: EXPERIENCED SOFTWARE DEVELOPER LOCATION: INDIA REPORTING TO: COMPANY DIRECTOR

More information

IPS VideoAnalytics V3.21. Interface Description API for IPS Analytics Applications on the Axis ACAP Platform

IPS VideoAnalytics V3.21. Interface Description API for IPS Analytics Applications on the Axis ACAP Platform IPS VideAnalytics V3.21 Interface Descriptin API fr IPS Analytics Applicatins n the Axis ACAP Platfrm Cpyright 2013 Securitn GmbH. IPS and the IPS lg are registered trademarks f Securitn GmbH. Securitn

More information

Getting started with Android

Getting started with Android Getting started with Andrid Befre we begin, there is a prerequisite, which is t plug the Andrid device int yur cmputer, and lad the drivers fr the OS. In writing this article, I was using Windws XP, 7

More information

Messenger Project Acceptance Test Plan. Version 1.1

Messenger Project Acceptance Test Plan. Version 1.1 Messenger Prject Acceptance Test Plan Versin 1.1 Messenger prject Versin: 1.1 Revisin Histry Date Versin Descriptin Authr 2005-01-18 1.0 Initial Draft Mark Bejuk 2005-02-07 1.1 Frmatting f dc, finalizing

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

More information

User Manual Brainloop Outlook Add-In. Version 3.4

User Manual Brainloop Outlook Add-In. Version 3.4 User Manual Brainlp Outlk Add-In Versin 3.4 Cntent 1. Summary... 3 2. Release Ntes... 3 2.1 Prerequisites... 3 2.2 Knwn Restrictins... 4 3. Installatin and Cnfiguratin... 4 3.1 The installatin prgram...

More information

Design for securability Applying engineering principles to the design of security architectures

Design for securability Applying engineering principles to the design of security architectures Design fr securability Applying engineering principles t the design f security architectures Amund Hunstad Phne number: + 46 13 37 81 18 Fax: + 46 13 37 85 50 Email: amund@fi.se Jnas Hallberg Phne number:

More information

White Paper for Mobile Workforce Management and Monitoring Copyright 2014 by Patrol-IT Inc. www.patrol-it.com

White Paper for Mobile Workforce Management and Monitoring Copyright 2014 by Patrol-IT Inc. www.patrol-it.com White Paper fr Mbile Wrkfrce Management and Mnitring Cpyright 2014 by Patrl-IT Inc. www.patrl-it.cm White Paper fr Mbile Wrkfrce Management and Mnitring Cpyright 2014 by Patrl-IT Inc. www.patrl-it.cm 2

More information

Aras Innovator Internet Explorer Client Configuration

Aras Innovator Internet Explorer Client Configuration Aras Innvatr Internet Explrer Client Cnfiguratin Aras Innvatr 9.3 Dcument #: 9.3.012282009 Last Mdified: 6/10/2011 Aras Crpratin ARAS CORPORATION Cpyright 2011 All rights reserved Aras Crpratin 300 Brickstne

More information

Aras Innovator Internet Explorer Client Configuration

Aras Innovator Internet Explorer Client Configuration Aras Innvatr Internet Explrer Client Cnfiguratin Aras Innvatr 9.1 Dcument #: 9.1.009032008 Last Mdified: 3/17/2009 Aras Crpratin ARAS CORPORATION Cpyright 2009 All rights reserved Aras Crpratin 300 Brickstne

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information