Persistence and User Management

Size: px
Start display at page:

Download "Persistence and User Management"

Transcription

1 Enterprise System Integratin Tutrial 8 Persistence and User Management This exercise intrduces yu sme techniques t Fr this exercise yu will need: implement security necessary t ensure safe handling f purchase rders. Windws 2008 Server, Windws In this practice, we will: 2008 Server R2, Windws Vista set up new database rles, r Windws 7 implement a wrkflw with multiple SQL Server 2008 r SQL Server interactins with backgrund services, 2008 R2 learn abut managing build qualities. Visual Studi 2010 (at least ne We will cntinue wrking n the team prject in team member need t use Visual the lab sessin. This practice fcuses n setting up Studi 2010 Ultimate) persistence f messages and wrkflws, and setting AppFabric fr Windws Server up user and system authenticatin. These techniques will be required when cmpleting this week s assignment. Suggested reading and viewing SQL Server permissins verview, Wrkflw tutrial using AppFabric, default.html ASP.NET security cnfiguratins, Part A Creating Users and Rles in Database In the previus assignment yu published a public database view t a web service and a web site. This time yu need t start supprting cmmunicatins with yur custmers and database manipulatins by yur internal users. This means, yu need t start managing user permissins and authenticatin public access t the services is n lnger an ptin. There are several ptins fr implementing authenticatin. It des nt matter, which ptin yu will use, yu will prbably need a table t stre user identities. Yu might als need t implement several authenticatin ptins t supprt different systems. The first step t setting up secured access is t create rles and users with sufficient access rights n the database server. The easiest way t add a new rle with rights t execute prcedures and use views t ur SQL Server database is t run fllwing cmmands n SQL Server: CREATE ROLE [InternalUser] GO GRANT SELECT ON DATABASE::[$(DatabaseName)] TO [InternalUser] GO GRANT EXECUTE ON DATABASE::[$(DatabaseName)] TO [InternalUser] GO These cmmands can be als be added t the database server prject. Once the rle has been created, it can be given t the users wh wuld be using these permissins. Users with permissins given using WITH GRANT OPTION can delegate these permissins t ther users, which can be useful if yu desire t add functinality fr internal users t add new users frm the web site (e.g. t manage cntracts with building cmpanies). 1/6

2 Enterprise System Integratin Tutrial 8 Part B Adding Member-Only Areas T add areas nly accessible t certain lgged in users and rles, yu have tw cmmnly used ptins fr implementing the requirement: creating custm authenticating scheme and managing security manually, r t use ASP:NET membership and rle prviders and crrespnding ASP.NET cntrls (see suggested reading fr mre details). ASP.NET supprts several membership and rle prviders ut f the bx and allws creating yur wn prviders. These prviders include SQL database and Active Directry prviders. If yu want t use SQL Server t manage rles and members, yu culd run aspnet_regsql.exe E S SANDSTOR\ESIINSTANCE sqlexprtnly rlesdbinint.sql A mr d dbname where dbname is yur database name t generate the sql script fr creating ASP.NET rles and membership database. The features generated will depend n the value specified t A flag: m membership database, r rles database. As the university s Active Directry will nt be managing yur site s rles, yu can nt use Active Directry as a rle strage. Yu can still use Active Directry fr membership (authenticatin). In additin, it is very simple t create yur wn rle and membership prviders thanks t the simple interface. If yu need t supprt multiple different identity prviders, it is suggested that yu use Windws Identity Framewrk (WIF). Step-by-step instructins n hw t set up WIF fr yur web site can be fund at Due t the cmplexity f WIF, we suggest yu use SQL database t manage users instead. It is pssible t use the same authenticatin prviders fr yur service calls; hwever, yu shuld avid ding s. A pssible means t authenticatin is using shared secret. That is, yu can give the build cmpany an identifier that it has t submit with each message it sends t yu. This tken-based authenticatin is relatively weak, but satisfactry fr ur current needs. T reduce the pprtunities fr third parties t get access t the tken, yu shuld encrypt the transmissins (we will discuss this in the future lab sessins). Part C Adding Persistence t Wrkflws As we are ging t create a lnger wrkflw, we must get prepared fr pssible issues rising during the executin f the wrkflws. In ur case, persistence is slved by string the states f the wrkflws in a database. This means a shift frm the data-riented services created in the previus assignment t prcess-riented services. Essentially, we will n lnger implicitly stre the intermediate dcuments in the database we will be using wrkflw states instead. T set up persistence in yur applicatin, we will be using AppFabric datastre that has been set up t use SANDSTOR database. T enable persistence in a wrkflw, yu shuld fllw the fllwing rules in yur wrkflw: Rule B.1 Use Transacted Receive Shape instead f Ordinary Receive Shape 1. In a new wrkflw, drag and drp TransactedReceiveScpe shape t the beginning f the wrkflw. 2. Drag and drp the receive shape int TransactedReceiveScpe s Request sectin. 3. Drag and drp a Sequence shape int TransactedReceiveScpe s Bdy sectin. 4. Drag and drp the send shape int the newly added Sequence shape. Rule B.2 Use Crrelatin t Keep Track f Message Linking t Wrkflw Instances 1. Befre receiving a secnd message int yur wrkflw, yu need t initialise crrelatin. This can be dne with Initialize Crrelatin Shape r Receive Shape. In either case yu will need t specify a list f (wrkflw crrelatin handle) variables that will be used t identify the wrkflw instance wrking n the prcess. Fr example, in 2/6

3 Enterprise System Integratin Tutrial 8 case f purchase prcess, yu might want t create a crrelatin n purchase rder identifier. 2. Fr every Receive shape yu need t specify Crrelates On prperty. Crrelates With prperty will need t pint t the wrkflw variable specified in step 1 (crrelatin initializatin) and Crrelates On shuld cntain a mapping frm message members t this wrkflw variable. Keep in mind that crrelatin handle variables are f strings and use crrespnding casts where necessary. Rule B.3 Define the Persistence Stre Cnnectin in web.cnfig 1. Add the cnnectin string t WF4 Persistence Stre: <cnnectinstrings> <add name="wf4persistence" cnnectinstring="data Surce=SANDSTOR;Database= WF4Persistence;Integrated Security=True"/> </cnnectinstrings> 2. Add the persistence service cnfiguratin t yur web.cnfig (system.servicemdel/behavirs/servicebehavirs/behavir sektsini): <sqlwrkflwinstancestre cnnectinstringname="wf4persistence" /> Managing Build Qualities As yu might have nticed, duble-clicking n a build will pen the build result. On tp f the build result yu can set the quality f the build. It is suggested that yu mark at least the deplyments that were successful and will be used fr assignment grading as Released. Yu might use this management f Build Qualities t infrm ther members in yur grup abut prject prgress like Ready fr Deplyment, Ready fr Testing, r Under Investigatin t let thers knw that yu believe that the prject is getting ready r yu are wrking n recent prblems with the builds. Als, keep in mind that TFS creates a wrk item fr each new failure f a build. Yu shuld try t clse these bugs as sn as pssible. Remarks and Tips There are a few unintuitive details when wrking with SQL Server and.net Framewrk. We have listed a few belw: Fr string date and time in SQL Server, ne shuld prefer datetime2 datatype as it cnfirms t standards better and is handled crrectly by mst clients. Yu can create a help page (it well be published at yur ruting endpint under help) detailing yur REST service API by adding a standardendpint t yur web.cnfig file: <system.servicemdel> <servicehstingenvirnment aspnetcmpatibilityenabled="true" /> <standardendpints> <webhttpendpint> <standardendpint helpenabled="true" autmaticfrmatselectinenabled="true" /> </webhttpendpint> </standardendpints> </system.servicemdel> Yu can make sure that there are certain rws in yur database while running tests by mdifying the database while initialising yur test classes. Yu shuld als make sure that yu reverse the changes after the tests are run s that the BuildIT cmpanies wuld nt get testing items r invices caused by yur tests. An example f setting up and clearing a database can be seen in the fllwing cde snippet. Nte the #regin and #endregin directives, which allw yu t hide the initialisatin and clean-up cde in Visual Studi 3/6

4 Enterprise System Integratin Tutrial 8 when implementing the test methds (each methd cunts as a separate test). Keep in mind that test methds are run in randm rder (parallelised) and test classes can als be instantiated in parallel r randm rder (thus, race cnditins can apply if yur tests are using the same resurces). #regin Additinal test attributes // Use ClassInitialize t run cde befre running the first test in the class [ClassInitialize()] public static vid MyTestInitialize(TestCntext testcntext) string cnnectinstrname = "ReleaseDatabase"; #if DEBUG cnnectinstrname = "DebugDatabase"; #endif using (SqlCnnectin sc = new SqlCnnectin(System.Cnfiguratin.CnfiguratinManager.C nnectinstrings[cnnectinstrname].cnnectinstring)) sc.open(); using (SqlTransactin st = sc.begintransactin(system.data.islatinlevel.serializable) ) using (SqlCmmand scmd = sc.createcmmand()) scmd.transactin = st; scmd.cnnectin = sc; try scmd.cmmandtext IF NOT EXISTS(SELECT * FROM [esi].[inventryitem] WHERE [Name] = N'PriceListServiceTes titem') INSERT INTO [esi].[inventryitem] ([Name], [DefaultPrice], [CurrencyId], [Descript in], [DateAdded], [DateUpdated]) VALUES (N'PriceListServiceTestItem', , N'EUR', N'This is a fictinal it em used by autmated unit testing.', GETDATE(), GETDATE())"; scmd.executennquery(); scmd.cmmandtext IF NOT EXISTS(SELECT * FROM [esi].[custmer] WHERE [Name] = N'PriceListServiceTest Cus tmer') INSERT INTO [esi].[custmer] ([Name], [POEndpint], [Descriptin]) VALUES (N'PriceListServiceTest Custmer', N' vice', N'This is a fictinal custmer used by autmated unit testing.')"; scmd.executennquery(); scmd.cmmandtext int; int; = [InventryItemId] FROM [esi].[inventryitem] WHERE [Name] = N'Pri celistservicetestitem'; = [CustmerId] FROM [esi].[custmer] WHERE [Name] = N'PriceList ServiceTest Custmer'; DELETE FROM [esi].[reservatin] WHERE [InventryItemId] INSERT INTO [esi].[reservatin] ([InventryItemId], [CustmerId], [Frm], [T], [ReservatinStateId]) VALUES ' ', ' ', 0), ' ', ' ', 1), ' ', ' ', 2), ' ', ' ', 3);"; scmd.executennquery(); st.cmmit(); catch (Exceptin) st.rllback(); thrw; 4/6

5 Enterprise System Integratin Tutrial 8 sc.clse(); // Use ClassCleanup t run cde after last test has run [ClassCleanup()] public vid MyClassCleanup() string cnnectinstrname = "ReleaseDatabase"; #if DEBUG cnnectinstrname = "DebugDatabase"; #endif using (SqlCnnectin sc = new SqlCnnectin(System.Cnfiguratin.Cnfiguratin Manager.CnnectinStrings[cnnectinStrName].CnnectinString)) sc.open(); using (SqlTransactin st = sc.begintransactin(system.data.islatinlevel. Serializable)) using (SqlCmmand scmd = sc.createcmmand()) scmd.transactin = st; scmd.cnnectin = sc; try scmd.cmmandtext DELETE FROM [esi].[reservatin] WHERE [InventryItemId] IN (SELECT [InventryItemId] FROM [esi].[inventryitem] WHERE [N ame] = N'PriceListServiceTestItem')"; scmd.executennquery(); scmd.cmmandtext FROM [esi].[inventryitem] WHERE [Name ] = N'PriceListServiceTestItem'"; scmd.executennquery(); scmd.cmmandtext FROM [esi].[custmer] WHERE [Name] = N 'PriceListServiceTest Custmer'"; scmd.executennquery(); st.cmmit(); catch (Exceptin) st.rllback(); thrw; sc.clse(); // #endregin Assignment Deliverables This week s assignment will require yu t publish service calls fr checking availability f a plant, requesting a purchase, and sending a purchase rder. Yu will als need an authenticated web page sectins fr reviewing and creating purchase requests. Nte that purchase requests fr items nt available n the requested dates shuld be rejected autmatically. Thus, we will need the fllwing: An additinal sectin f the web site fr use by authenticated users (n annymus access shuld be allwed) fr PO review. Fllwing autmated tests (must be run autmatically at 10AM n Mnday): 5/6

6 Enterprise System Integratin Tutrial 8 A test requesting an availability f an item I frm date A t B (where I, A and B are given as parameters t query) frm yur middleware service fr a nn-existent item (shuld return a fault). A test requesting an availability f an item I frm date A t B (where I, A and B are given as parameters t query) frm yur middleware service fr an existing item (shuld return list f perids where the item is available). A test requesting purchase f a nn-existent item frm the service. A test requesting purchase f an unavailable item frm the service. A test requesting purchase f an available item frm the service. A test requesting purchase f an available item frm the service but fails t authenticate itself. 6/6

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

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

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

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

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

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

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

Managing User Accounts

Managing User Accounts A variety f user types are available in Lighthuse Transactin Manager (LTM) with cnfigurable permissins that allw the Accunt Administratr and administratr-type users fr the accunt t manage the abilities

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

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

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

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

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

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

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

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

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

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved.

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder User Guide Cpyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder 2.5 User Guide Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING RENEWAL REMINDER

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

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

Creating Relativity Dynamic Objects

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

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

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

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

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

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

QABOOK D ESKTOP V5.0. Release Notes

QABOOK D ESKTOP V5.0. Release Notes QABOOK D ESKTOP V5.0 Release Ntes QABk Desktp After years f research, develpment and client feedback we have nw launched QABk Desktp v5.0. We have transfrmed ur standalne desktp applicatin int a mre intuitive

More information

- International Offline. Installation Guide. For authorised Franklin Templeton use only

- International Offline. Installation Guide. For authorised Franklin Templeton use only FUNDS@NALYSIS.TOOL - Internatinal Offline Installatin Guide Fr authrised Franklin Templetn use nly TABLE OF CONTENTS: 1 Installatin...3 1.1 Prir t Installatin...3 1.2 Installatin Prcedure...5 1.3 Upgrades...5

More information

Cityspan Database Instructions

Cityspan Database Instructions T all Measure Z Grantees: Official training vide is available nline. Yu can find the link by ging t the Oakland Unite website [www.aklandunite.rg] and lking under the tab Grantee Crner Tls fr Grantees.

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

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

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

Your Project Plan and Smartsheet

Your Project Plan and Smartsheet USG Managed Services Yur Prject Plan and Smartsheet Change Management Tlkit Cntents 1.0 Purpse... 3 2.0 Accessing Smartsheet and Yur Prject Plan... 4 2.1 Smartsheet Lgin... 4 2.2 Type f Access... 5 3.0

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

Project Stage 3 Purchase order submission, invoice receipt and matching

Project Stage 3 Purchase order submission, invoice receipt and matching Enterprise System Integratin Prject Stage 3 Purchase rder submissin, invice receipt and matching Prerequisites Practice f week 9 - Availability check, purchase rder receipt, scheduling (.Net) Intrductin

More information

OATS Registration and User Entitlement Guide

OATS Registration and User Entitlement Guide OATS Registratin and User Entitlement Guide The OATS Registratin and Entitlement Guide prvides the fllwing infrmatin: OATS Registratin The prcess and dcumentatin required fr a firm r Service Prvider t

More information

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist This checklist is used t prvide guidance and clarificatin n aspects f the auxillary Startup Service (G2949CA) including Security Pack Installatin and Familiarizatin f yur Agilent 2100 Bianalyzer System

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

Systems & Operating Systems

Systems & Operating Systems McGill University COMP-206 Sftware Systems Due: Octber 1, 2011 n WEB CT at 23:55 (tw late days, -5% each day) Systems & Operating Systems Graphical user interfaces have advanced enugh t permit sftware

More information

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55.

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55. Schl f Cmputer Science McGill University Schl f Cmputer Science COMP-206 Sftware Systems Due: September 29, 2008 n WEB CT at 23:55 Operating Systems This assignment explres the Unix perating system and

More information

Kaltura MediaSpace Installation and Upgrade Guide. Version: 5.0

Kaltura MediaSpace Installation and Upgrade Guide. Version: 5.0 Kaltura MediaSpace Installatin and Upgrade Guide Versin: 5.0 Kaltura Business Headquarters 5 Unin Square West, Suite 602, New Yrk, NY, 10003, USA Tel.: +1 800 871 5224 Cpyright 2013 Kaltura Inc. All Rights

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

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

Populate and Extract Data from Your Database

Populate and Extract Data from Your Database Ppulate and Extract Data frm Yur Database 1. Overview In this lab, yu will: 1. Check/revise yur data mdel and/r marketing material (hme page cntent) frm last week's lab. Yu will wrk with tw classmates

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

Remote Document Delivery

Remote Document Delivery Yu will have the ptin t electrnically deliver the Cntract Package t yur custmers via a Dcument Delivery website, rather than printing them in the reviewing r printing steps f the ecntracting prcess. The

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Requesting Service and Supplies

Requesting Service and Supplies HP MPS Service We welcme yu t HP Managed Print Services (MPS). Fllwing yu will find infrmatin regarding: HP MPS printer identificatin stickers Requesting service and supplies fr devices n cntract Tner

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

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

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual fr Tur Operatrs 1 CONTENTS GETTING STARTED... 3 REGISTER AND CREATE YOUR ACCOUNT... 3 OPERATOR PROFILE... 4 Create yur Operatr Prfile... 4 ADD A TOUR LISTING...

More information

Project Extranet User Guide

Project Extranet User Guide Prject Extranet User Guide Drafted by: Francisc Galleg (fgalleg@ua.es) - UA Pedr Caselles (pcaselles@ua.es) - UA Raul Pamplega (rpamplega@ua.es) - UA 1 Table f cntents: 1. EXTRANET USER GUIDE 3 2. INTRODUCTION

More information

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation

CodeSlice. o Software Requirements. o Features. View CodeSlice Live Documentation CdeSlice View CdeSlice Live Dcumentatin Scripting is ne f the mst pwerful extensibility features in SSIS, allwing develpers the ability t extend the native functinality within SSIS t accmmdate their specific

More information

APPLICATION FORM. CISAS opening hours: 9:00am to 5:00pm, Monday to Friday

APPLICATION FORM. CISAS opening hours: 9:00am to 5:00pm, Monday to Friday Enquiry reference number: (Office use nly) Administered by the Centre fr Effective Dispute Reslutin (CEDR) APPLICATION FORM What is this Applicatin fr? What d I need t d? This applicatin frm is fr custmers

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 22, 2017 - Versin 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

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

Purchase Order Approvals Workflow Guide

Purchase Order Approvals Workflow Guide Purchase Order Apprvals Wrkflw Guide Purchase Order Apprvals may nw be activated fr use with Webvantage Purchase Orders nly. Setup and activatin is dne in Advantage Maintenance. This dcument describes

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

Homework: Populate and Extract Data from Your Database

Homework: Populate and Extract Data from Your Database Hmewrk: Ppulate and Extract Data frm Yur Database 1. Overview In this hmewrk, yu will: 1. Check/revise yur data mdel and/r marketing material frm last week's hmewrk- this material will later becme the

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

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

Customer Upgrade Checklist

Customer Upgrade Checklist Custmer Upgrade Checklist Getting Ready fr Yur Sabre Prfiles Upgrade Kicking Off the Prject Create a prfiles prject team within yur agency. Cnsider including peple wh can represent bth the business and

More information

CSE 361S Intro to Systems Software Lab #2

CSE 361S Intro to Systems Software Lab #2 Due: Thursday, September 22, 2011 CSE 361S Intr t Systems Sftware Lab #2 Intrductin This lab will intrduce yu t the GNU tls in the Linux prgramming envirnment we will be using fr CSE 361S this semester,

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

STUDIO DESIGNER. Design Projects Basic Participant

STUDIO DESIGNER. Design Projects Basic Participant Design Prjects Basic Participant Thank yu fr enrlling in Design Prjects 2 fr Studi Designer. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them and

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

InformationNOW Elementary Scheduling

InformationNOW Elementary Scheduling InfrmatinNOW Elementary Scheduling Abut Elementary Scheduling Elementary scheduling is used in thse schls where grups f students remain tgether all day. Fr infrmatin regarding scheduling students using

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

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

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

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Spring 2016 Lab Prject (PART A): A Full Cmputer! Issued Fri 4/8/16; Suggested

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

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

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

HP MPS Service. HP MPS Printer Identification Stickers

HP MPS Service. HP MPS Printer Identification Stickers HP MPS Service We welcme yu t HP Managed Print Services (MPS). Fllwing yu will find infrmatin regarding: HP MPS printer identificatin stickers Requesting service and supplies fr devices n cntract Tner

More information

UPGRADING TO DISCOVERY 2005

UPGRADING TO DISCOVERY 2005 Centennial Discvery 2005 Why Shuld I Upgrade? Discvery 2005 is the culminatin f ver 18 mnths wrth f research and develpment and represents a substantial leap frward in audit and decisin-supprt technlgy.

More information

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool HHAeXchange The Reprting Tl An Overview f HHAeXchange s Reprting Tl Cpyright 2017 Hmecare Sftware Slutins, LLC One Curt Square 44th Flr Lng Island City, NY 11101 Phne: (718) 407-4633 Fax: (718) 679-9273

More information

A Purchaser s Guide to CondoCerts

A Purchaser s Guide to CondoCerts Lgin t CndCerts - T submit a request with CndCerts, lg n t www.cndcerts.cm. First time users will fllw the New Users link t register. Dcument r print screen the User ID and Passwrd prvided. New accunts

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

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

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

Creating a TES Encounter/Transaction Entry Batch

Creating a TES Encounter/Transaction Entry Batch Creating a TES Encunter/Transactin Entry Batch Overview Intrductin This mdule fcuses n hw t create batches fr transactin entry in TES. Charges (transactins) are entered int the system in grups called batches.

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Designing a mdule with multiple memries Designing and using a bitmap fnt Designing a memry-mapped display Cmp 541 Digital

More information

Student Quick Reference Guide

Student Quick Reference Guide LOGGING ON TO THE LEARNING CENTER If yu have a Mitel Cnnect accunt, lg int Mitel Cnnect and click link t Learning Management System. Nte that Mitel Cnnect may take up t 24 hurs t sync yur accunt with the

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

Callback Guide. A step by step guide to integrating Callback with your website. All the information you need to confirm Nochex payments.

Callback Guide. A step by step guide to integrating Callback with your website. All the information you need to confirm Nochex payments. Callback Guide A step by step guide t integrating Callback with yur website. All the infrmatin yu need t cnfirm Nchex payments. IMPORTANT Custmers are always recmmended t back up their cde befre making

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment with a Shared Configuration Directory Technical Paper Installing and Cnfiguring Envirnment Manager in a Grid Envirnment with a Shared Cnfiguratin Directry Last Mdified: January 2018 Release Infrmatin Cntent Versin: January 2018. Trademarks

More information

Guidance for Submitting an application or Nomination in AAS Ishango Online System

Guidance for Submitting an application or Nomination in AAS Ishango Online System Guidance fr Submitting an applicatin r Nminatin in AAS Ishang Online System Histry f changes Versin Date Changes 1 Nv 2016 Current versin Pushing the centre f gravity t Africa 1 Table f Cntents 1 General

More information

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

More information

How to Mass Assign Student Course Requests

How to Mass Assign Student Course Requests Hw t Mass Assign Student Curse Requests It is pssible that an entire grade level r grup f students will need t request the same curse r curses. If this is the case, yu have the ptin f mass assigning curse

More information

Aras Innovator Viewer Add-Ons

Aras Innovator Viewer Add-Ons Aras Innvatr Viewer Add-Ons Aras Innvatr 9.2 Dcument #: 9.2.02232009 Last Mdified: 4/1/2010 Aras Crpratin ARAS CORPORATION Cpyright 2010 All rights reserved Aras Crpratin 300 Brickstne Square Suite 904

More information