Password Manager Using Luminis APIs

Size: px
Start display at page:

Download "Password Manager Using Luminis APIs"

Transcription

1 SUNGARD SUMMIT 2007 sungardsummit.com 1 Password Manager Using Luminis APIs Presented by: Ron Romao Savannah College of Art and Design March, 2007 A Community of Learning

2 Password Manager Using Luminis APIs Web application using Java and JSP Uses Luminis Data Access API Uses CAS to protect parts of the application 2

3 SUNGARD SUMMIT 2007 sungardsummit.com 3 I Will Discuss What we did - Custom Password Change Application Why we did it - Reduce Help Desk Calls - Log Password Changes How we did it - Technologies Used - Process Explained - Challenges Encountered A Community of Learning

4 Password Manager Web Application Allows users to reset their passwords Using their Banner security question Allows Helpdesk staff to reset user passwords Extra logging capabilities Allow us to track more data 4

5 How : Process Explained : Forgot and Change Password Page 5

6 How : Process Explained : Help Desk Page 6

7 What : Custom Password Change Application Stand alone Web Application Written in Java and JSP Running on Tomcat Updates custom database tables Logs Password Changes CAS Protected 7

8 SUNGARD SUMMIT 2007 sungardsummit.com 8 Why we did it - Needs for this project - Benefits A Community of Learning

9 Why : Main Reasons Decrease Help Desk calls Users can reset their password Log password changes Auditing Purposes Who changed the password (HD or self change) When password was changed 9

10 Why : Benefits Increase productivity for end users By avoiding unnecessary calls to Help Desk Improves end user satisfaction User feels more in control of their password Easier password reset process Easy to use password page 10

11 SUNGARD SUMMIT 2007 sungardsummit.com 11 How We did it - Technologies used - Process explained - Challenges Encountered A Community of Learning

12 How : Technologies Used Java, JSP and Servlets Tomcat Luminis Data Access API CAS 12

13 How : Process Explained JSP Pages Forgot Password - Self help Change Password - Self help (link in Luminis) Help Desk Change Password Help Desk use only Logout (invalidates session) 13

14 How : Process Explained Forgot Password Page Reset password by answering Banner security question Future improvements Reset Luminis password by providing Novell login information 14

15 How : Process Explained : Help Desk Page Help Desk Page Help Desk use only User requesting password change Come to HD Show SCAD ID Call HD Staff verify user information HD save notes for the request Everything gets logged! 15

16 How : Process Explained CAS Protection All pages are CAS protected User need to be logged into Luminis portal valid CAS ticket Except Forgot Password page Unauthorized users sent to Luminis login page. 16

17 web-xml file </web-app> <!--start CAS stuff--> <filter> <filter-name>cas Filter</filter-name> <filter-class>edu.yale.its.tp.cas.client.filter.casfilter</filter-class> <init-param> <param-name>edu.yale.its.tp.cas.client.filter.loginurl</param-name> <paramvalue> /redirect.jsp</param-value> </init-param> <init-param> <param-name>edu.yale.its.tp.cas.client.filter.validateurl</param-name> <param-value> </init-param> <init-param> <param-name>edu.yale.its.tp.cas.client.filter.servername</param-name> <param-value>myscad.scad.edu:8080</param-value> </init-param> </filter> <filter-mapping> <filter-name>cas Filter</filter-name> <url-pattern>/cas/*</url-pattern> </filter-mapping> <!--end CAS stuff--> </web-app> 17

18 How : Process Explained : Luminis API Java class using Luminis Data Access API Create DAManager stub Call Web Service method modify PasswordModification class changes Luminis password ExternalSystemAccountModification class changes the password in Banner 18

19 How : Process Explained : Creating the Service System.setProperty("java.class.path", classpath); System.setProperty( "javax.xml.rpc.servicefactory "com.sct.pipeline.webservice.client.jaxrpcservicefactory" ); Service service = null; ServiceFactory sf = ServiceFactory.newInstance(); service = sf.createservice( QName.valueOf( "{urn:pipeline.sct.com:webservice:da:200306:soap}da" )); Stub stub = (Stub)service.getPort( DAManager.class ); stub._setproperty (javax.xml.rpc.stub.endpoint_address_property, " + host + "/ws/webservice/da/200306/soap/damanager" ); stub._setproperty ( "javax.xml.rpc.security.auth.username", username ); stub._setproperty ( "javax.xml.rpc.security.auth.password", password ); svc = (DAManager)stub; 19

20 How : Process Explained : Modifying the Password ModifyParams mp = new ModifyParams(); mp.setboid( new BOID( BusinessObjectTypeEnum.USER, userid ) ); PasswordModification pm = new PasswordModification( "PASSWORD", new PasswordPair(newPass, newpass), ModOperationTypeEnum.REPLACE ); Modification[] mods = new Modification[ 1 ]; mods[ 0 ] = pm; mp.setmodifications( mods ); svc.modify( mp ); // Modify Password ExternalSystemAccount[] esa = new ExternalSystemAccount[ 1 ]; esa[ 0 ] = new ExternalSystemAccount( "SCT", userid, pin); ExternalSystemAccountModification esamod = new ExternalSystemAccountModification( "EXTERNALSYSTEMACCOUNTS", esa, ModOperationTypeEnum.ADD ); mods[ 0 ] = esamod; mp.setmodifications( mods ); svc.modify( mp ); // Modify PIN fpass.setgobtpac(userid); // Updates gobtpac to trigger an event 20

21 How : Process Explained Password Rules Must be at least 8 characters long Must include at least one number and one alphabetic character Must NOT include spaces or any of the following characters: #,+"\<>;@&$~=*%!{}()/:[]'? Enforced on the server side 21

22 Challenges WSDL Issue Web Service WSDL not found Service could not be created Solution found Changed classpath inside application. Pointed to WSDL file location System.setProperty("java.class.path", classpath); 22

23 Challenges Issues with SSO to SSB Altered baseline trigger Update activity date on GOBTPAC Everybody is happy. 23

24 Summary Our Password Management Solution allows user to reset forgotten passwords securely, allowing us to implement stronger policies while reducing help desk calls. It also allows Help Desk to reset user passwords. 24

25 Summary Application built using Java, JSP and Web Services to provide an easy to use interface for users to maintain their own passwords. It uses Luminis Data Access API to change passwords in Luminis and Banner. It uses events to carry changes to external systems. Uses CAS to protect application from unauthorized users. 25

26 Questions? 26

27 Thank You! Ron Romao Web Programmer Savannah College of Art and Design Please complete the online class evaluation form SunGard, the SunGard logo, Banner, Campus Pipeline, Luminis, PowerCAMPUS, Matrix, and Plus are trademarks or registered trademarks of SunGard Data Systems Inc. or its subsidiaries in the U.S. and other countries. Third-party names and marks referenced herein are trademarks or registered trademarks of their respective owners SunGard. All rights reserved. 27

Luminis to Banner Single Sign-On

Luminis to Banner Single Sign-On SUNGARD SUMMIT 2007 sungardsummit.com 1 Luminis to Banner Single Sign-On Presented by: Rajesh Kumar Les von Holstein SunGard Higher Education Tuesday 8:30 AM March 20, 2007 A Community of Learning Session

More information

Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282

Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282 May 4, 2007SUNGARD SUMMIT 2007 sungardsummit.com 1 Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282 A Community of Learning

More information

Active Directory Account Provisioning (ADAP)

Active Directory Account Provisioning (ADAP) SUNGARD SUMMIT 2007 sungardsummit.com 1 Active Directory Account Provisioning (ADAP) Presented by: Tom Chamberlin SunGardHE March 22, 2007 A Community of Learning Introduction Developed by SunGard Integration

More information

Georgia Tech s Luminis IV Beta Testing

Georgia Tech s Luminis IV Beta Testing SUNGARD SUMMIT 2007 sungardsummit.com 1 Georgia Tech s Luminis IV Beta Testing Presented by: Steve Goeke Georgia Tech March 22, 2007 A Community of Learning Agenda Portal Environment and Architecture To

More information

Crystal Report tips and Techniques

Crystal Report tips and Techniques SUNGARD SUMMIT 2007 sungardsummit.com 1 Crystal Report tips and Techniques Presented by: Instructor Jim Tule March 20, 2007 A Community of Learning Introduction Crystal Reports tips and techniques used

More information

Web Services Integration Case Study - Housing

Web Services Integration Case Study - Housing SUNGARD SUMMIT 2007 sungardsummit.com 1 Web Services Integration Case Study - Housing Presented by: Tom Chamberlin, Suresh Chellapilla, Richard Moon SunGard Higher Education March 21, 2007 A Community

More information

Load Testing your Banner Systems

Load Testing your Banner Systems SUNGARD SUMMIT 2007 sungardsummit.com Load Testing your Banner Systems Presented by: Scott Hollen University of Richmond March 22, 2007 A Community of Learning Introduction What is load testing? Why test?

More information

Data Governance Can It Help?

Data Governance Can It Help? SUNGARD SUMMIT 2007 sungardsummit.com 1 Data Governance Can It Help? Presented by: Lorinda L Bishop University of Toledo March 20, 2007 A Community of Learning Introduction Do you have a Data Standards

More information

fsaatlas Case Management And Communication

fsaatlas Case Management And Communication SUNGARD SUMMIT 2007 sungardsummit.com 1 fsaatlas Case Management And Communication Presented by: Henky Erawan, SunGard Higher Education - fsaatlas March 20 th, 2007 A Community of Learning Session Rules

More information

Banner Training and Help Desk Plan

Banner Training and Help Desk Plan SUNGARD SUMMIT 2007 sungardsummit.com 1 Banner Training and Help Desk Plan Becky North and Dianne Coleman Wichita State University March 20, 2007 A Community of Learning Wichita State University Campus

More information

Implement and Deploy Banner 7 Channels

Implement and Deploy Banner 7 Channels SUNGARD SUMMIT 2007 sungardsummit.com 1 Implement and Deploy Banner 7 Channels Presented by: Zachary Tirrell), Plymouth State University March 21, 2007 A Community of Learning Introduction Purpose: Overview

More information

HIGHER EDUCATION. What can we help you achieve? SunGard Banner Financial Aid

HIGHER EDUCATION. What can we help you achieve? SunGard Banner Financial Aid HIGHER EDUCATION What can we help you achieve? SunGard Banner Financial Aid Tulsa Community College Agenda for Consulting Workshop 1 April 1-3, 2008 Tulsa Community College 05_Consulting One Agenda.doc

More information

Getting Ready for Recruiting & Retention Solutions

Getting Ready for Recruiting & Retention Solutions SUNGARD SUMMIT 2007 sungardsummit.com 1 Getting Ready for Recruiting & Retention Solutions Moderated by: Mark Zimmerman, Executive Director Constituent Relations Solutions SunGard Higher Education March

More information

High-Availability and Scalability

High-Availability and Scalability SUNGARD SUMMIT 2007 sungardsummit.com 1 High-Availability and Scalability Presented by: Gary Fitzgerald SunGard Higher Education March 21, 2007 A Community of Learning Introduction Session goal: To understand

More information

PowerCAMPUS Portal and Active Directory

PowerCAMPUS Portal and Active Directory SUNGARD SUMMIT 2007 sungardsummit.com 1 PowerCAMPUS Portal and Active Directory Presented by: Chad Sexton PowerCAMPUS Portal Development March 21, 2007 A Community of Learning Overview SunGard Higher Education

More information

Banner Client--PayPal Merchant

Banner Client--PayPal Merchant SUNGARD SUMMIT 2007 sungardsummit.com 1 Banner Client--PayPal Merchant Presented by: Kevin Davidson, Rose-Hulman Institute of Technology 1:30 p.m. March 21, 2007 A Community of Learning Rose-Hulman Institute

More information

Scoring Big with Automated Payroll Deductions

Scoring Big with Automated Payroll Deductions SUNGARD SUMMIT 2007 sungardsummit.com 1 Scoring Big with Automated Payroll Deductions Presented by: Holly Dombkowski & Doug Waldie Lourdes College March 22, 2007 A Community of Learning Welcome to Automated

More information

The Luminis Portal and Dashboard Reports

The Luminis Portal and Dashboard Reports SUNGARD SUMMIT 2007 sungardsummit.com The Luminis Portal and Dashboard Reports Presented by: Joe Sawasky and Dominic D Emilio The University of Toledo March 20, 2007 A Community of Learning Introduction

More information

Faculty & Advisor Banner Self-Service Guide V2.0

Faculty & Advisor Banner Self-Service Guide V2.0 Faculty & Advisor Banner Self-Service Guide V2.0 This documentation is proprietary information of SunGard Higher Education and is not to be copied, reproduced, lent or disposed of, nor used for any purpose

More information

Banner Security: A Functional View

Banner Security: A Functional View Banner Security: A Functional View Presented by: Deb Brooks, Florida Atlantic University March 20, 2007 A Community of Learning Objective This session is designed to assist the Functional Security Officer

More information

PeopleAdmin and Banner HR Interface

PeopleAdmin and Banner HR Interface SUNGARD SUMMIT 2007 sungardsummit.com 1 PeopleAdmin and Banner HR Interface Presented by: Carrie Silliman and Laura Weathersby SunGard Higher Education March 20, 2007 A Community of Learning Session Rules

More information

Banner DBA Survival Guide

Banner DBA Survival Guide SUNGARD SUMMIT 2007 sungardsummit.com 1 Banner DBA Survival Guide Presented by: Kathleen O Donnell, Pacific Lutheran University March 20, 2007 Course ID: 029 A Community of Learning Introduction Purpose

More information

Managing Your Workflow System

Managing Your Workflow System SUNGARD SUMMIT 2007 sungardsummit.com 1 Managing Your Workflow System Presented by: Michael Brzycki, SunGard Higher Education March 20, 2007 A Community of Learning Introduction Topic: Learn how to leverage

More information

NU SSO Account Activation Job Aid NU Employees

NU SSO Account Activation Job Aid NU Employees The purpose of this document is to provide National University Single Sign On users with instructions to activate their NU SSO accounts. Contents Employee Activation Self service... 1 Logging in directly...

More information

Using YSU Password Self-Service

Using YSU Password Self-Service Using YSU Password Self-Service Using YSU Password Self-Service Password Self-Service Web Interface Required Items: YSU (MyYSU) Directory account, Web browser This guide will assist you with using the

More information

BANNER WEB TAILOR RELEASE GUIDE. Release 8.5 November 2011

BANNER WEB TAILOR RELEASE GUIDE. Release 8.5 November 2011 BANNER WEB TAILOR RELEASE GUIDE Release 8.5 November 2011 Trademark, Publishing Statement and Copyright Notice SunGard Data Systems and/or its subsidiaries in the U.S.A. and other countries is the owner

More information

Identity Management in Liferay Overview and Best Practices. Liferay Portal 6.0 EE

Identity Management in Liferay Overview and Best Practices. Liferay Portal 6.0 EE Identity Management in Liferay Overview and Best Practices Liferay Portal 6.0 EE Table of Contents Introduction... 1 IDENTITY MANAGEMENT HYGIENE... 1 Where Liferay Fits In... 2 How Liferay Authentication

More information

Monash Health Self Service

Monash Health Self Service Monash Health Self Service Table of Contents Monash Health Self Service Password Reset \ Account Unlock via a Non-Monash Workstation... 2 Monash Health Self Service Password Reset \ Account Unlock via

More information

The Initial Registration Process. During the initial registration process, this guide assumes the user has been provided a login ID.

The Initial Registration Process. During the initial registration process, this guide assumes the user has been provided a login ID. eopf Account Guide The following processes are covered in this guide: Initial Registration Process (for new users) Forgotten Password Process Forgotten Login ID Process The Initial Registration Process

More information

Logging into LTC Instant Access the First Time

Logging into LTC Instant Access the First Time Logging into LTC Instant Access the First Time Access the Instant Access website at: https://mycampus.gotoltc.edu Enter your LTC network username and password. These are the credentials you use to initially

More information

Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal

Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal This Application Note explains how to configure ConnectWise PSA (Professional Service Automation) application settings and Cisco

More information

Help Desk User Manual (Version 1.0)

Help Desk User Manual (Version 1.0) Help Desk User Manual (Version 1.0) Table of Contents Accessing Infinity Technologies Help Desk Portal... 2 Logging into Infinity Technologies Help Desk Portal for the First Time... 3 Resetting Your Password...

More information

Reconciling Loans: Financial Aid through Finance

Reconciling Loans: Financial Aid through Finance SUNGARD SUMMIT 2007 sungardsummit.com 1 Reconciling Loans: Financial Aid through Finance Presented by: Kate Wilson Drexel University March 20, 2007 A Community of Learning Introduction The purpose is to

More information

Cummins Online Login User Instructions

Cummins Online Login User Instructions Cummins Online Login User Instructions 1 Introduction... 2 2 Language selection... 2 3 Password Management... 2 3.1 Cummins Online Login... 2 3.2 Forgot Username... 3 3.3 Forgot Password... 4 3.3.1 Answer

More information

Using weblock s Servlet Filters for Application-Level Security

Using weblock s Servlet Filters for Application-Level Security Using weblock s Servlet Filters for Application-Level Security September 2006 www.2ab.com Introduction Access management is a simple concept. Every business has information that needs to be protected from

More information

New Help Desk Ticketing System

New Help Desk Ticketing System New Help Desk Ticketing System Starting Monday, November 30, 2009 at 6 am the University will be going live with their new help desk ticketing system. The website to access the new ticketing system is

More information

Novell to Microsoft Conversion: Identity Management Design & Plan

Novell to Microsoft Conversion: Identity Management Design & Plan Novell to Microsoft Conversion: Identity Management Design & Plan Presented To: 3/2/2011 1215 Hamilton Lane, Suite 200 Naperville, IL 60540 www.morantechnology.com Voice & Fax: 877-212-6379 Version History

More information

Tackling Campus-Wide e-commerce

Tackling Campus-Wide e-commerce SUNGARD SUMMIT 2007 sungardsummit.com 1 Tackling Campus-Wide e-commerce Presented by: Troy Boroughs University of Richmond March 22, 2007 A Community of Learning Introduction For years, the University

More information

Bucks PSN. Updata Self-Service Portal User Guide. Version 1.0

Bucks PSN. Updata Self-Service Portal User Guide. Version 1.0 Bucks PSN Updata Self-Service Portal User Guide Version 1.0 Updata Infrastructure Ltd Page 2 of 4 The Updata Self-Service Portal The Updata Self-service Portal is a web based online portal which enables

More information

User Guide. Delta Controls Single Sign On

User Guide. Delta Controls Single Sign On User Guide Delta Controls Single Sign On This document outlines the new, streamlined login process for Delta Partner web applications using the Delta Controls Passport Single Sign On system. Contents 1

More information

Luminis Platform Banner Document Management Suite Portal Guide. Release 5.0.3 November 2011

Luminis Platform Banner Document Management Suite Portal Guide. Release 5.0.3 November 2011 Luminis Platform Banner Document Management Suite Portal Guide Release 5.0.3 November 2011 Banner, Colleague, PowerCAMPUS, Luminis and Datatel are trademarks of Ellucian or its affiliates and are registered

More information

Small School Disaster Recovery Plan

Small School Disaster Recovery Plan SUNGARD SUMMIT 2007 sungardsummit.com 1 Small School Disaster Recovery Plan Presented by: Jing Ding Lourdes College 6832 Convent Boulevard Sylvania, OH 43560 www.loudes.edu March 21, 2007 8:30am 9:30am

More information

FAQ: UFS Password Self Service System

FAQ: UFS Password Self Service System FAQ: UFS Password Self Service System ICT Services Document compiled by: ICT Services Servicedesk E mail: Servicedesk@ufs.ac.za 051 401 2752 Contents Question 1: How do I change my password?... 2 Question

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

Users Guide to Internet Banking Self Service Enrollment

Users Guide to Internet Banking Self Service Enrollment Users Guide to Internet Banking Self Service Enrollment This document is a guide for customers who wish to use The Bank of Greene County s Self Service Enrollment Utility for Internet Banking The following

More information

New Solutions for Advancement Opening Session

New Solutions for Advancement Opening Session SUNGARD SUMMIT 2007 sungardsummit.com 1 New Solutions for Advancement Opening Session Presented by: Michiel Westerkamp Donna Freddolino SunGard Higher Education Advancement Solutions March 20, 2007 A Community

More information

open windows Open Windows Logging Open Windows Product Support Issues Open Windows Australia Pty Ltd ABN 64007086348

open windows Open Windows Logging Open Windows Product Support Issues Open Windows Australia Pty Ltd ABN 64007086348 open windows Open Windows Logging Open Windows Product Support Issues Open Windows Australia Pty Ltd ABN 64007086348 635 Glenferrie Road, Hawthorn VIC 3122, Australia ph: +61 398195088 fax: +61 398195151

More information

Nessus Cloud User Registration

Nessus Cloud User Registration Nessus Cloud User Registration Create Your Tenable Nessus Cloud Account 1. Click on the provided URL to create your account. If the link does not work, please cut and paste the entire URL into your browser.

More information

Instructions for the Integrated Travel Manager (ITM) Self Service Password Reset (May 2011)

Instructions for the Integrated Travel Manager (ITM) Self Service Password Reset (May 2011) How to Complete the Challenge Questions and Responses Setup Process 1a 1b Open an Internet Explorer window Point your browser to: https://itm-prod.rdc.noaa.gov/cgibin/90ipi/docprep/login.w If the Web Security

More information

Help Desk Self Service Quick Start Guide

Help Desk Self Service Quick Start Guide Help Desk Self Service Quick Start Guide Introduction Faculty and Staff can submit support tickets via Help Desk Self- Service. This will give users more control over how they submit helpdesk tickets and

More information

MBAM Self-Help Portals

MBAM Self-Help Portals MBAM Self-Help Portals Authoring a self-help portal workflow for BitLocker Recovery Using Microsoft BitLocker Administration and Monitoring (MBAM) Technical White Paper Published: September 2011 Priyaa

More information

Bahamas Tax Information Exchange Portal Documentation

Bahamas Tax Information Exchange Portal Documentation Bahamas Tax Information Exchange Portal Documentation This sub section of the Portal Documentation covers the following Topics: Portal Overview Portal Login Account Status Reportable Account File Processing

More information

Banner Self Service for students

Banner Self Service for students Banner Self Service for students revised April 5, 2006 Table of Contents Get Your UNC Charlotte ID Logging in to Self Service Banner Forgot Your Password? Checking Your Holds Checking Your Registration

More information

A detailed walk through a CAS authentication

A detailed walk through a CAS authentication Welcome! First of all, what is CAS? Web single sign on Uses federated authentication, where all authentication is done by the CAS server, instead of individual application servers The implementation is

More information

Introduction to UCONNECT Student Edition. 4/14/11 v.1.3

Introduction to UCONNECT Student Edition. 4/14/11 v.1.3 Introduction to UCONNECT Student Edition 4/14/11 v.1.3 Contents Accessing UCONNECT... 2 How do I get a username for UCONNECT?... 2 How do I log in?... 2 What should I see when I login?... 3 Channels...

More information

Banner Human Resources

Banner Human Resources Banner Human Resources Employee Self-Service Users Guide April, 2011 Page 1 Table of Contents OVERVIEW... 3 OBJECTIVES... 3 HOW TO LOG INTO MYRIDER... 4 ACCESS EMPLOYEE INFORMATION... 5 BENEFITS AND DEDUCTIONS...

More information

SUNGARD SUMMIT 2007 sungardsummit.com 1

SUNGARD SUMMIT 2007 sungardsummit.com 1 SUNGARD SUMMIT 2007 sungardsummit.com 1 Reviewing and Improving Online Courses Presented by: Dr. Suzanne Kissel, Sr. Instructional Analyst, Elizabeth Dalbec, Sr. Instructional Designer, Evette Tillery,

More information

Pierce County IT Department GIS Division Xuejin Ruan Dan King

Pierce County IT Department GIS Division Xuejin Ruan Dan King Pierce County IT Department GIS Division Xuejin Ruan Dan King Web Application Work Flow Main Topics Authentication Authorization Session Management * Concurrent Session Management * Session Timeout Single

More information

Broker Portal Tutorial Broker Portal Basics

Broker Portal Tutorial Broker Portal Basics Broker Portal Tutorial Broker Portal Basics Create Agent Connect Link Forgotten Password Change Your Broker Portal Password Delegate View Application Status Create Agent Connect Link Log in to your Producer

More information

Faculty & Staff User Information

Faculty & Staff User Information Faculty & Staff User Information March 2015 Table of Contents User Names and Passwords at MU - Faculty & Staff...2 Campus Services/Active Directory User ID or User Name:...2 Campus Services Password /

More information

Mary Immaculate. ICT Services. ICT Helpdesk. User Guide

Mary Immaculate. ICT Services. ICT Helpdesk. User Guide Mary Immaculate ICT Services ICT Helpdesk User Guide Table of Contents 1. Introduction 3 2. How To Log A Call With The ICT Helpdesk 3 2.1 Email 3 2.2 Phone 3 2.3 Voicemail 3 2.4 Web Self Service Option

More information

NCUSD 203 Campus Portal Login FAQ

NCUSD 203 Campus Portal Login FAQ This document will provide you answers to all of your questions regarding setting up and troubleshooting issues with your Campus Portal Login Account. Please see the list of frequently questions below.

More information

Application Installation/Setup

Application Installation/Setup Application Installation/Setup Q: Who is allowed to use the iphone or Android Mobile Banking Applications? A: Any customer with personal accounts may access the App. The customer must also be in good standing

More information

All Colleagues Landing Page

All Colleagues Landing Page INTERNAL USE ONLY All Colleagues Landing Page User's Manual Version 5 Table of Contents Login... 2 Password Features... 4 Expired password...4 Password reset...6 Region Selection... 8 Changing Your Region...8

More information

Center for Educational Performance and Information (CEPI) Single Sign-On (SSO) User Guide

Center for Educational Performance and Information (CEPI) Single Sign-On (SSO) User Guide Center for Educational Performance and Information (CEPI) Single Sign-On (SSO) User Guide Questions? Contact CEPI Customer Support Email: CEPI@michigan.gov Phone: 517-335-0505 x3 Contents Contents... 2

More information

CSSEA Helpdesk User Guide

CSSEA Helpdesk User Guide CSSEA Helpdesk User Guide Contents I. Creating tickets... 3 1. Creating a New Ticket via Email... 3 a. Email format... 3 b. New ticket reply... 3 2. Creating a New ticket via the Website... 4 a. Browse

More information

For additional assistance, contact the CEDI Help Desk at 866-311-9184 or via e-mail at ngs.cedihelpdesk@anthem.com.

For additional assistance, contact the CEDI Help Desk at 866-311-9184 or via e-mail at ngs.cedihelpdesk@anthem.com. CEDI offers a Gateway Self-Service Password to allow Trading Partners the ability to change or reset their password used to connect to the CEDI Gateway. For additional assistance, contact the CEDI Help

More information

How to Access the Economics Undergraduate Lab

How to Access the Economics Undergraduate Lab How to Access the Economics Undergraduate Lab Please note that only students in a few selected courses will be able to activate their Economics Undergraduate Lab account. If this account is not listed

More information

A Non-Credit Transcript Solution

A Non-Credit Transcript Solution SUNGARD SUMMIT 2007 sungardsummit.com 1 A Non-Credit Transcript Solution Presented by: Kathleen de Wit Jo Ann Keener Heather Palmer-Currey The Community College of Baltimore County March 22, 2007 A Community

More information

PowerSchool. Parent Single Sign-On (SSO)

PowerSchool. Parent Single Sign-On (SSO) PowerSchool Parent Single Sign-On (SSO) K i n g s C a n y o n U n i f i e d 6 7 5 W M a n n i n g A v e, R e e d l e y, C A 9 3 6 5 4 559-3 0 5-7 0 1 0 w w w. k c u s d. c o m Starting with the 2015-2016

More information

SJC Password Self-Service System FAQ 2012

SJC Password Self-Service System FAQ 2012 The San Jacinto College Password Self-Service System enables students to reset their password quickly and conveniently online. By utilizing this service, you can change your password and gain access to

More information

Faculty and Staff Guide to Port of Armstrong

Faculty and Staff Guide to Port of Armstrong Faculty and Staff Guide to Port of Armstrong Port of Armstrong is the secure web portal where the Armstrong community can connect to online academic resources, administrative services, and community information.

More information

ArpViewer Manual Version 1.0.6 Datum 30.9.2007

ArpViewer Manual Version 1.0.6 Datum 30.9.2007 SWITCHaai ArpViewer Manual Version 1.0.6 Datum 30.9.2007 AAI C.Witzig Content 1. Introduction...3 2. Functional Description...3 3. Description of the Components...3 3.1. Arpfilter...3 3.2. Controller...4

More information

Multiple Application Platform Server. MAPS 4.4 Release Guide. Document version 4.4

Multiple Application Platform Server. MAPS 4.4 Release Guide. Document version 4.4 Multiple Application Platform Server MAPS 4.4 Release Guide Document version 4.4 Last updated 1/16/2015 Trademark, Publishing Statement, and CopyrightNotice 2015 Evisions, Inc. All rights reserved. This

More information

Defense Civilian Personnel Data System (DCPDS) Army Only DCPDS Portal User Guide

Defense Civilian Personnel Data System (DCPDS) Army Only DCPDS Portal User Guide Defense Civilian Personnel Data System (DCPDS) Army Only DCPDS Portal User Guide Lockheed Martin Enterprise Solutions and Services (LMES&S) 1777 N.E. Loop 410 San Antonio, Texas 78217 DCPDS Portal Users

More information

Access and Login. Single Sign On Reference. Signoff

Access and Login. Single Sign On Reference. Signoff Access and Login To access single sign on, here are the steps: Step 1: type in the URL: postone.onelogin.com Step 2: Enter your Post student email in the username field Step 3: Enter your Post student

More information

Reference Document. SedonaOnline Support

Reference Document. SedonaOnline Support Document Overview This document is being provided to explain how to request a SedonaOnline password and how to use SedonaOnline to submit and view Support Tickets. Our company utilizes the SedonaOffice

More information

CA Service Desk Manager - Mobile Enabler 2.0

CA Service Desk Manager - Mobile Enabler 2.0 This Document is aimed at providing information about the (CA SDM) Mobile Enabler and mobile capabilities that is typically not available in the product documentation. This is a living document and will

More information

HPSM Integration Guide

HPSM Integration Guide HPSM Integration Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Single Sign On: Volunteer User Guide

Single Sign On: Volunteer User Guide Single Sign On: Volunteer User Guide V3.0 Document Owner: Pathways Project Issue Date: 11-Jun-15 Purpose of the Document The Single Sign On (SSO) User Guide has been developed to provide users with instructions

More information

Entering a Case Into the PeopleSoft Helpdesk (CRM) Logging in

Entering a Case Into the PeopleSoft Helpdesk (CRM) Logging in Entering a Case Into the PeopleSoft Helpdesk (CRM) Logging in Open Internet Explorer Logging in Navigate to the district home page: http://www.fortbend.k12.tx.us/ Click on Employee Services Finally, click

More information

A Step-By-Step Guide

A Step-By-Step Guide ONLINE SUPPORT SYSTEM A Step-By-Step Guide Contents About This Guide...3 Who Should Read This Guide...3 Overview...4 Login...5 Report a Problem...7 View Existing Tickets...9 Request a Modification...10

More information

Authentication Methods

Authentication Methods Authentication Methods Overview In addition to the OU Campus-managed authentication system, OU Campus supports LDAP, CAS, and Shibboleth authentication methods. LDAP users can be configured through the

More information

Release Notes Date: September 2013

Release Notes Date: September 2013 Release Notes Date: September 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any retrieval system of any nature without the

More information

External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System

External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System In order to submit data for any Department of Audits and Accounts (DOAA) web application,

More information

FAQs for Password Self Service

FAQs for Password Self Service FAQs for Password Self Service Contents 1.1 What is PSS? 1.2 What do I do if I forget my Portal/POS or Network/Workstation password? 1.3 What do I do if my Portal/POS or Network/Workstation password has

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

Reset Virtual Gateway Password Job Aid

Reset Virtual Gateway Password Job Aid Summary of Job Aid In order to access a Virtual Gateway s business service, you must first log on to the Virtual Gateway (VG). From the Virtual Gateway s website (www.mass.gov/vg), click Logon to Virtual

More information

PrimeSecure Self-Service User Guide Revision 1.2

PrimeSecure Self-Service User Guide Revision 1.2 PrimeSecure Self-Service User Guide Revision 1.2 1 Table of Contents 1.0 Introduction... 3 2.0 Register with PrimeSecure... 3 3.0 Changing your Password... 6 4.0 Resetting your Password... 8 5.0 Updating

More information

Banner Accounts Receivable PLUS Loan Refunding

Banner Accounts Receivable PLUS Loan Refunding Banner Accounts Receivable PLUS Loan Refunding Patch 7.3.0.1 What can we help you achieve? Confidential Business Information This documentation is proprietary information of SunGard Higher Education and

More information

The Benefits of an Industry Standard Platform for Enterprise Sign-On

The Benefits of an Industry Standard Platform for Enterprise Sign-On white paper The Benefits of an Industry Standard Platform for Enterprise Sign-On The need for scalable solutions to the growing concerns about enterprise security and regulatory compliance can be addressed

More information

Mississippi Educator Licensure Management System. Single Sign On User Guide

Mississippi Educator Licensure Management System. Single Sign On User Guide Mississippi Educator Licensure Management System Single Sign On User Guide September 2009 Table of Contents Table of Contents... 2 myelms SSO User Guide... 3 Login Screen... 3 myelms Login Screen Overview...

More information

econtrol 3.5 for Active Directory & Exchange Self-Service Guide

econtrol 3.5 for Active Directory & Exchange Self-Service Guide econtrol 3.5 for Active Directory & Exchange Self-Service Guide This Guide Welcome to the econtrol 3.5 for Active Directory and Exchange Self-Service Guide. This guide is econtrol end-users who have been

More information

Provider Web Portal Quick User Guide Version 5.0

Provider Web Portal Quick User Guide Version 5.0 Provider Web Portal Quick User Guide Version 5.0 Copyright Statement 2012 Gold Coast Health Plan. All rights reserved. Gold Coast Health Plan and logo are service marks of Gold Coast Health Plan in the

More information

How To Integrate A Cell Phone With A Pbx On A Network With A Cellphone From A Cell Tower On A Cell Network On A College Campus

How To Integrate A Cell Phone With A Pbx On A Network With A Cellphone From A Cell Tower On A Cell Network On A College Campus SUNGARD SUMMIT 2007 sungardsummit.com 1 Legacy and VoIP Phone Integration Presented by: Chris Peckham Sungard Higher Education at Mercy College March 20, 2007 A Community of Learning Introduction Mercy

More information

P-Synch by M-Tech Information Technology, Inc. ID-Synch by M-Tech Information Technology, Inc.

P-Synch by M-Tech Information Technology, Inc. ID-Synch by M-Tech Information Technology, Inc. P-Synch by M-Tech Information Technology, Inc. ID-Synch by M-Tech Information Technology, Inc. Product Category: Password Management/Provisioning Validation Date: TBD Product Abstract M-Tech software streamlines

More information

Active Directory Quick Reference Guide for PowerCAMPUS Self-Service 7.x. Release 5 July 2011

Active Directory Quick Reference Guide for PowerCAMPUS Self-Service 7.x. Release 5 July 2011 Active Directory Quick Reference Guide for PowerCAMPUS Self-Service 7.x Release 5 July 2011 Trademark, Publishing Statement and Copyright Notice SunGard or its subsidiaries in the U.S. and other countries

More information

Banner Document Management Release Guide. Release 8.5 January 2013

Banner Document Management Release Guide. Release 8.5 January 2013 Banner Document Management Release 8.5 January 2013 Banner, Colleague, PowerCAMPUS, Luminis and Datatel are trademarks of Ellucian or its affiliates and are registered in the U.S. and other countries.

More information