Single Sign On Guide. Table of Contents

Size: px
Start display at page:

Download "Single Sign On Guide. Table of Contents"

Transcription

1 Single Sign On Guide Table of Contents I. Overview II. Benefits III. How SSO Works IV. Set-up Requirements and Recommendations V. Set-up Instructions a. Required Parameters b. Optional Parameters c. Error Codes d. Integrating on Development e. Testing on Development f. Integrating on Production g. Testing on Production VI. Document Revision History

2 I. Single Sign On Overview The Single Sign On (SSO) service is an alternate login method offered by EverFi, allowing schools and organizations to provide a streamlined registration and login capability to their users accessing EverFi products. II. Single Sign On - Benefits Seamless Integration: From the student s point of view, they will simply log into their school or organization s portal and click a custom link to access their EverFi courses. Because the student is now authenticated through your portal, they will not need to remember separate access information to log into the EverFi platform. This eliminates the possibility of forgetting a username or password to access their EverFi account. Improved Accuracy: SSO eliminates the need for students to enter their name and other identifying information, depending on the parameters to be passed between EverFi and the alternative system. Because the student s information is passed through on the back- end, there is no chance the student could enter inaccurate personal information making it easier for the school or organization to keep track of their student s progress. This also eliminates the risk of a student creating multiple accounts by mistake. Ease of implementation: Our partners indicated this feature was easy to implement and did not require any advanced coding on their end. They were able to roll this service out quickly with little, if any, additional internal resources required. Increased visibility: By offering the EverFi digital curriculums via their own portal, partners reported increased awareness that EverFi had been selected as part of the school or organization s university s orientation package or learning experience. III. How SSO Works EverFi s SSO is simple and safe. The school or organization will place a link to an EverFi course in the appropriate location in the school or organization s portal or other protected web page. It s important that the link be located in a place where the student will have to log into your portal system first because your system will be passing student information to the EverFi system. After signing into the school or organization s system, the student will click on the link to the EverFi course. NOTE: The SSO request should be made at the time the student wants to access an EverFi course and not before. This prevents the unnecessary transmission of student data. This method should be used on demand - i.e. only once the student has decided to use the EverFi course. The action of clicking the link will notify the school or organization s system that the student wants to take the EverFi course. The school system will then POST the SSO request to EverFi with the correct parameters for your school or organization and the given student (described in diagram below). The information passed includes sensitive data and will be protected by SSL encryption (HTTPS). The EverFi system will validate the request and respond with either an error or a redirect URL with a user session token appended. The user session token is temporary and will expire so do not cache or store this URL as it may not work the next time the student attempts to cross over. 2

3 Diagram With the Sequence of Events in SSO with EverFi IV. Set- Up Requirements and Recommendations Information technology department: This add- on service will require a certain level of technical expertise. Introducing your information technology (IT) department to this effort early and inviting a representative to participate on your EverFi team will ensure a more successful implementation. Your web portal: Your school or organization must have a designated Web portal or authentication system live and in use. Additionally, students must know their access information (often: a username and password) to log into the portal prior to accessing their EverFi account. You must also be willing to keep the link up on the portal for the entire academic year, or designated period you are allowing access to our programs, so students can continue to access the course (please be sure to check with your IT department as space may be limited on the portal). Set- up: Once SSO has been enabled, your IT team can set up an authentication process or link to EverFi from your portal. This will be handled via a secure HTTPS POST call to the EverFi application (though testing can be done via an HTTP POST - i.e. without SSL encryption). You will be required 3

4 to pass the required parameters below. The ID will be used to identify that student within EverFi s system. Testing: Your IT department must be able to test the link against our test environment prior to advertising access to our programs. Our current partners utilizing this feature reported meeting regularly with their IT department to set up, test, and improve functionality of the SSO feature prior to and during their implementation. Help Desk: Please ensure your students have accessible information on how to contact their designated Help Desk. In addition, prepare your Help Desk by offering them a list of Frequently Asked Questions and by asking them to demo the login process. There may be rare instances in which a student has trouble with their link. We may hear from these students via our tech support line and will need to escalate these students to someone at your school or organization. Please establish a process for those students to receive support (i.e. perhaps they /contact your primary IT administrator or helpdesk for assistance). V. Single Sign On - Set- Up Instructions The EverFi platform provides a simple web interface for handing off authenticated student users to our system. All parameters should be sent as HTTP post fields with URL encoding. Upon the POST submission of the data, we will return a URI that you can redirect the student to. This URI will include a unique session ID that we will use to interact with the student. Be sure to add URL encoding if you plan to send parameters as a single concatenated post. NOTE: SSL (HTTPS) will be added in production. Testing can be done without SSL encryption. a. Required Parameters: Parameter Value Notes api_token student_id _address EverFi- provided unique authentication token granted to partner organizations. Unique ID for each student associated with the partner. Student s Address Can be up to 64 characters in length and any combination of numbers, letters, and these special characters: ( _, +, -, ~, : ). Please do not use spaces. This ID is not case- sensitive, so do not rely on case to make it unique. Should be on the school or organization s domain (example: student@school.edu) 4

5 school_id EverFi- provided unique School ID From Homeroom Admin Center curriculum_id 1 (Buttonwood) 2 (AtWork) 3 (Ignition) 4 (Vault) 5 (EverFi FinLit) 6 (AlcoholEdu for HS) 8 (Haven) 10 (AlcoholEdu for College) 11 (Transit) 12 (Radius) The id of the curriculum to send the user to. b. Optional Parameters: Parameter Value Notes last_name Student s Last Name first_name group Student s First Name Group Name This will be ignored if last name not passed. If this value is provided through SSO, students will not be asked to select their Group on the registration page as defined by the practitioner on the implementation call (i.e. Entering First- Year, Transfer, Athlete, etc.). EverFi can provide these values to you. If the parameter is unknown or not provided through SSO, then the student will self- select. This field is CASE SENSITIVE. If a group name is passed that does not match a group name in the EverFi platform, the student will be challenged to select their group from the values provided by the institution. Group can only be defined during registration. If the group is changed on subsequent crossovers, it will be ignored. dob Date of Birth Format: mmddyyyy (no dashes or slashes) This is used for de- duping student accounts. It is also used to determine if the student is over/under 18 years of age as schools have the option not to survey students under 18 for compliance reasons. 5

6 c. Error Codes: Status Code Format (JSON) Reason 401 {'errors': STRING} Invalid API token or version; or URL encoding issue 422 {'errors': ARRAY(STRING)} EverFi issues. Instructor Resource Guide Invalid fields. The strings in the errors array describe the d. Integrating On Development Instance We recommend testing on development first and especially if: 1) You are setting up in well in advance of your start date 2) You plan on having a large amount of unique testers go in, resulting in many accounts to delete Obtain your school id and api token from your partner service representative to test against EverFi s development instance. The values in bold below are examples of those values and should not be used for testing or set up. Sample Requests (POST) curl - H "Accept: application/json" \ - X POST \ - d "api_token=12345abcdefg12345 \ - d school_id= \ - d "student_id= " \ - d curriculum_id=8 \ - d "first_name=student" \ - d "last_name=one Smart Person" \ - d " _address=test@test7.dev" \ Concatenated Sample Post curl - - post301 - X POST &student_id= & _address=test@test7.de v&curriculum_id=8&first_name=student&last_name=one%20smart %20Person Non- Concatenated Sample Post curl - - post301 - X POST - d "api_token=12345abcdefg12345" - d "school_id=112233" - d "student_id= " - d " _address=test@test7.dev" - d "curriculum_id=8" - d "first_name=student" - d "last_name=one Smart Person" # Call is made using JSON # POST requests only # Your access token # Your provided school id # Your internal student ID # Curriculum ID # Student first name # Student last name # Student address # API post Requires URL encoding Does not require URL encoding On the development instance, a successful call will return the URL below that you can internally redirect your student to. The session key is generated by the EverFi platform at the time of your system s request. 6

7 Sample Successful Response From EverFi: abcde abcdef abcde = sample session key generated by the EverFi platform at the time of the request NOTES: 1. Do not load this page in frames, as it will cause errors with the course. 2. The SSO request should be made at the time the student wants to access an EverFi course and not before. 3. We recommend you call the API each time a student returns to log in to the course, rather than cache the URL. The response URL from EverFi will expire. 4. Be sure to add URL encoding if you plan to send parameters as a single concatenated POST. 5. All requests during development should be made to (BUT note the domain change on production). 6. All development requests are done in HTTP, though we enforce HTTPS on production. e. Testing on Development Student Login Test: 1. Log in to your test portal as a test student. Click the link/button you have created to enter EverFi. 2. Check the parameters on the registration page are passed correctly. 3. Agree to the "Terms of Use" and click "Let s Get Started". Expected outcome: you will launch into the course. Please note when testing AlcoholEdu, clicking Let s Get Started will launch you into Haven because the new version of AlcoholEdu is unavailable at this time on our new platform. 4. Log out (top right corner). Expected outcome: This should log you out of EverFi and take you to our logout message 5. Clear cache, 6. Re- POST the same SSO request (as you would on a second crossover attempt). Redirect browser to the URL in the response from the EverFi server. Note: the session token in the response may be different each time a POST is received. Expected outcome: you will go directly to the EverFi Student Dashboard and won't see the registration page again. 7. Log in to your portal as a different test student. Repeat steps 2-6 to be certain all information is passing correctly and is not accidentally hard- coded. 8. If setting up multiple curriculums, repeat steps 1-7 for all courses. Expected Test Results for this year s AlcoholEdu Upgrade Only Because the newest version of AlcoholEdu is under construction and moving platforms, the experience will change as we get closer to the official launch date. Timeframe 1st Crossover Experience 2nd Crossover Experience Now - June 1st Will see Haven instead of AlcoholEdu Will see the student Dashboard with AlcoholEdu, but an error upon launching the course 7

8 June 1st- General Availability date (roughly July 1) Will see an Under Construction page Student dashboard with AlcoholEdu and Under Construction upon launching the course After General Availability f. Integrating on Production Will see the new course Student dashboard with AlcoholEdu and the course upon launch Obtain your custom URL and api token from your Partner Services Director to test on production. The values in bold below are examples of those values. Sample Requests (POST) curl - H "Accept: application/json" \ - X POST \ - d "api_token=12345abcdefg12345 \ - d school_id= \ - d "student_id= " \ - d curriculum_id=8 \ - d "first_name=student" \ - d "last_name=one Smart Person" \ - d " _address=test@test7.dev" \ Concatenated Sample Post curl - - post301 - X POST 45&school_id=112233&student_id= & _ad dress=test@test7.dev&curriculum_id=8&first_name=student &last_name=one%20smart%20person Non- Concatenated Sample Post curl - - post301 - X POST - d "api_token=12345abcdefg12345" - d "school_id=112233" - d "student_id= " - d " _address=test@test7.dev" - d "curriculum_id=8" - d "first_name=student" - d "last_name=one Smart Person" # Call is made using JSON # POST requests only # Your access token # Your provided school id # Your internal student ID # Curriculum ID # Student first name # Student last name # Student address # API post Requires URL encoding Does not require URL encoding On the development instance, a successful call will return the URL below that you can internally redirect your student to. The session key is generated by the EverFi platform at the time of your system s request. Sample Successful Response From EverFi: abcde abcdef abcde = sample session key generated by the EverFi platform at the time of 8

9 the request NOTE: While development requests are done in HTTP, we enforce SSL encryption (HTTPS) on production for the security of your data. Same notes in red from the development section apply in production. Please make special note of the domain change on production. g. Testing on Production Student Login Test: Follow the same Student Login Test plan above (steps 1-8). Expected Test Results for this year s AlcoholEdu Upgrade Only Because the newest version of AlcoholEdu is under construction and moving platforms, the experience will change as we get closer to the official launch date. Timeframe First Crossover Experience Second Crossover Experience Now to June 1st Will see Haven instead of AlcoholEdu Will see the student Dashboard with AlcoholEdu, but an error upon launching the course June 1st- General Availability date (roughly July 1) After General Availability Will see an Under Construction page Will see the new course Student dashboard with AlcoholEdu and Under Construction upon launching the course Student dashboard with AlcoholEdu and the course upon launch VI. Document Revision History Date Revision Comments November 26, Set- Up Instructions to include: address as a required parameter, added error codes, added methods for development and production. July 22, Made relevant for all EverFi Higher Education programs on Homeroom (Buttonwood, Transit, Haven). Set- Up Instructions to include: school_id, curriculum_id and group. Removed vanity URL. November 18, Incorporated language from the AlcoholEdu guide and attempted to make the language more explicit. 9

10 December 31, 2013 February 27, 2014 March 11, Several edits. Added additional examples and reformatted the way the examples are presented. 5.1 DOB is now live (removed coloring and reference to being in the planning stage); added notes to the group attribute. 5.2 Clarified details regarding the Student Login Test plan and removed the second phase requesting instructors to log into the partner center. April 9, Clarified details regarding Student Login Test plan. Added expected test results table. 10

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following

More information

SmarterMeasure Inbound Single Sign On (SSO) Version 1.3 Copyright 2010 SmarterServices, LLC / SmarterServices.com PO Box 220111, Deatsville, AL 36022

SmarterMeasure Inbound Single Sign On (SSO) Version 1.3 Copyright 2010 SmarterServices, LLC / SmarterServices.com PO Box 220111, Deatsville, AL 36022 SmarterMeasure Inbound Single Sign On (SSO) Version 1.3 Copyright 2010 SmarterServices, LLC / SmarterServices.com PO Box 220111, Deatsville, AL 36022 Contents 1. Revision History... 3 2. Overview... 3

More information

Support System User Guide

Support System User Guide Support System User Guide The Virtual Office support system provides users with a useful way to submit and track issues and resolutions. This feature- rich system is one more way that VO provides customers

More information

AVG Business Secure Sign On Active Directory Quick Start Guide

AVG Business Secure Sign On Active Directory Quick Start Guide AVG Business Secure Sign On Active Directory Quick Start Guide The steps below will allow for download and registration of the AVG Business SSO Cloud Connector to integrate SaaS application access and

More information

Building Secure Applications. James Tedrick

Building Secure Applications. James Tedrick Building Secure Applications James Tedrick What We re Covering Today: Accessing ArcGIS Resources ArcGIS Web App Topics covered: Using Token endpoints Using OAuth/SAML User login App login Portal ArcGIS

More information

Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin

Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin Purpose of document The purpose of this document is to assist users in reset their USD passwords

More information

API documentation - 1 -

API documentation - 1 - API documentation - 1 - Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files 2.1.1 Description 2.1.2 Implementation 2.2. Purge of whole cache (all files on all

More information

DOSarrest Security Services (DSS) Version 4.0

DOSarrest Security Services (DSS) Version 4.0 DOSarrest Security Services (DSS) Version 4.0 DOSarrest DSS User Guide The DSS is the main customer portal where customers can view and manipulate traffic statistics from a wide variety of variables that

More information

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account.

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account. Setup Corporate (Microsoft Exchange) Email This tutorial will walk you through the steps of setting up your corporate email account. Microsoft Exchange Email Support Exchange Server Information You will

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Copyright Pivotal Software Inc, 2013-2015 1 of 10

Copyright Pivotal Software Inc, 2013-2015 1 of 10 Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10

More information

Absorb Single Sign-On (SSO) V3.0

Absorb Single Sign-On (SSO) V3.0 Absorb Single Sign-On (SSO) V3.0 Overview Absorb allows single sign-on (SSO) with third-party systems, regardless of the programming language. SSO is made secure by a series of calls (between Absorb and

More information

SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy

SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010 Merlin House

More information

Forumbee Single Sign- On

Forumbee Single Sign- On Forumbee Single Sign- On What is Single Sign- On? In basic terms, Single Sign- On (SSO) allows users of your web site to log into your Forumbee community automatically, without needing to sign up and create

More information

DOSarrest Security Services (DSS) Version 4.0

DOSarrest Security Services (DSS) Version 4.0 DOSarrest Security Services (DSS) Version 4.0 DOSarrest DSS User Guide The DSS is the main customer portal where customers can view and manipulate traffic statistics from a wide variety of variables that

More information

UAB CIS QuickStart Guide Using the RT SelfService Web Interface Revision 1, 3/22/06

UAB CIS QuickStart Guide Using the RT SelfService Web Interface Revision 1, 3/22/06 UAB CIS QuickStart Guide Using the RT SelfService Web Interface Revision 1, 3/22/06 Introduction The CIS department uses Request Tracker (RT) software to operate the IT Helpdesk and FrontOffice service

More information

7. In the boxed unlabeled field, enter the last 4 digits of your Social Security number.

7. In the boxed unlabeled field, enter the last 4 digits of your Social Security number. CREATE YOUR MYVIEW LOGIN To access myview while ensuring security, you will be given an encrypted access key token. You will use this token the first time you log into myview. Once you have successfully

More information

Marketo Integration Setup Guide

Marketo Integration Setup Guide Page 1 of 30 Table of Contents About the RingLead Integration with Marketo Create the Marketo Webhook - Response Mapping - Configure Webhook Response Mapping Create the Marketo Program and Campaign - Create

More information

CPE Monitor Update for ACPE-Accredited Providers November 2012. To hear the audio portion please dial: Dial: 866-962-6634 Passcode: 24826344

CPE Monitor Update for ACPE-Accredited Providers November 2012. To hear the audio portion please dial: Dial: 866-962-6634 Passcode: 24826344 CPE Monitor Update for ACPE-Accredited Providers November 2012 To hear the audio portion please dial: Dial: 866-962-6634 Passcode: 24826344 Discussion Agenda Provide a general update of the CPE Monitor

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

qliqdirect Active Directory Guide

qliqdirect Active Directory Guide qliqdirect Active Directory Guide qliqdirect is a Windows Service with Active Directory Interface. qliqdirect resides in your network/server and communicates with qliqsoft cloud servers securely. qliqdirect

More information

How To Use Salesforce Identity Features

How To Use Salesforce Identity Features Identity Implementation Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Cloud Elements! Marketing Hub Provisioning and Usage Guide!

Cloud Elements! Marketing Hub Provisioning and Usage Guide! Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading

More information

Background Information

Background Information User Guide 1 Background Information ********************************Disclaimer******************************************** This is a government system intended for official use only. Using this system

More information

Department of Defense Travel Card Citibank Electronic Access System. APC Setup Guide

Department of Defense Travel Card Citibank Electronic Access System. APC Setup Guide Department of Defense Travel Card Citibank Electronic Access System APC Setup Guide Version 6.0 18 December 2008 Introduction This guide was developed to allow you to effectively use Citi s EAS. You will

More information

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML --------------------------------------------------------------------------------------------------------------------------- Contents Overview...

More information

Architecture, Implementations, Integrations, and Technical Overview

Architecture, Implementations, Integrations, and Technical Overview Architecture, Implementations, Integrations, and Technical Overview Introduction System Architecture & Infrastructure Implementation Parent Portal Medical Center Strategy Integrations SIS Immunization

More information

Forumbee Single Sign- On

Forumbee Single Sign- On Forumbee Single Sign- On What is Single Sign- On? In basic terms, Single Sign- On (SSO) allows users of your web site to log into your Forumbee community automatically, without needing to sign up and create

More information

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007 DEPLOYMENT GUIDE Version 1.2 Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Microsoft Outlook Web

More information

Lenovo Partner Access - Overview

Lenovo Partner Access - Overview Table of Contents: Lenovo Partner Access Overview How to Access the Lenovo Partner Access Portal Registration Process and Account Activation First time login Accepting the T s & C s and Selecting Challenge

More information

P309 - Proofpoint Encryption - Decrypting Secure Messages Business systems

P309 - Proofpoint Encryption - Decrypting Secure Messages Business systems Procedure P309 - Proofpoint Encryption - Decrypting Secure Messages Business systems P309 - Page: Page 1 of 12 Date of Release: 23 February 2011 Status: Final Document Reference: Title: P309 Release Number:

More information

SchoolBooking SSO Integration Guide

SchoolBooking SSO Integration Guide SchoolBooking SSO Integration Guide Before you start This guide has been written to help you configure SchoolBooking to operate with SSO (Single Sign on) Please treat this document as a reference guide,

More information

Getting Started with AD/LDAP SSO

Getting Started with AD/LDAP SSO Getting Started with AD/LDAP SSO Active Directory and LDAP single sign- on (SSO) with Syncplicity Business Edition accounts allows companies of any size to leverage their existing corporate directories

More information

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com How do I sign up for a Canvas account as a Parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

BASELINE SECURITY TEST PLAN FOR EDUCATIONAL WEB AND MOBILE APPLICATIONS

BASELINE SECURITY TEST PLAN FOR EDUCATIONAL WEB AND MOBILE APPLICATIONS BASELINE SECURITY TEST PLAN FOR EDUCATIONAL WEB AND MOBILE APPLICATIONS Published by Tony Porterfield Feb 1, 2015. Overview The intent of this test plan is to evaluate a baseline set of data security practices

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

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

User Guide for CDC s SAMS Partner Portal. Document Version 1.0

User Guide for CDC s SAMS Partner Portal. Document Version 1.0 User Guide for CDC s SAMS Partner Portal Document Version 1.0 Introduction If you are reading this guide, it probably means that you have been (or will be) invited to register with the SAMS Partner Portal.

More information

How to Register for Training

How to Register for Training How to Register for Training We have created a Training Console to help you manage your Tenable training from the Tenable Support Portal. You will be able to enroll in On Demand Training Course(s) or Certification

More information

Single Sign-On Instructions (SSO) Registration for the SSO

Single Sign-On Instructions (SSO) Registration for the SSO Single Sign-On Instructions (SSO) Registration for the SSO Step 1: Registration to Single Sign-On (SSO) Skip this section if you ve already registered for a SSO account. Open your web browser (Internet

More information

Virtual Desktop and SSL VPN access with OnDemand tokencode. User Guide

Virtual Desktop and SSL VPN access with OnDemand tokencode. User Guide Virtual Desktop and SSL VPN access with OnDemand tokencode User Guide Contents : 1. Quick Start Guide : Access to the Virtual Desktop main page 2 1.1 First authentication... 3 1.2 PIN... 4 1.3 PIN change...

More information

Cloud Services. Sharepoint. Admin Quick Start Guide

Cloud Services. Sharepoint. Admin Quick Start Guide Cloud Services Sharepoint Admin Quick Start Guide 3/12/2015 ACTIVATION An activation letter will be sent to the email account of your administrator contact. SharePoint will be part of your Cloud Control

More information

Force.com Sites Implementation Guide

Force.com Sites Implementation Guide Force.com Sites Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: October 16, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Sikorsky Aircraft. Supplier Portal Password Activation Process. Revision H

Sikorsky Aircraft. Supplier Portal Password Activation Process. Revision H Sikorsky Aircraft Supplier Portal Password Activation Process Revision H 1 Sikorsky Supplier Portal Background: The Sikorsky Supplier Portal replaces Sikorsky Aircraft s Supplier Resource Center. The Supplier

More information

Portal User Guide. Customers. Version 1.1. May 2013 http://www.sharedband.com 1 of 5

Portal User Guide. Customers. Version 1.1. May 2013 http://www.sharedband.com 1 of 5 Portal User Guide Customers Version 1.1 May 2013 http://www.sharedband.com 1 of 5 Table of Contents Introduction... 3 Using the Sharedband Portal... 4 Login... 4 Request password reset... 4 View accounts...

More information

Portal Administration. Administrator Guide

Portal Administration. Administrator Guide Portal Administration Administrator Guide Portal Administration Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec, the Symantec

More information

How To Use Kiteworks On A Microsoft Webmail Account On A Pc Or Macbook Or Ipad (For A Webmail Password) On A Webcomposer (For An Ipad) On An Ipa Or Ipa (For

How To Use Kiteworks On A Microsoft Webmail Account On A Pc Or Macbook Or Ipad (For A Webmail Password) On A Webcomposer (For An Ipad) On An Ipa Or Ipa (For GETTING STARTED WITH KITEWORKS DEVELOPER GUIDE Version 1.0 Version 1.0 Copyright 2014 Accellion, Inc. All rights reserved. These products, documents, and materials are protected by copyright law and distributed

More information

Active Directory Self-Service FAQ

Active Directory Self-Service FAQ Active Directory Self-Service FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com

More information

Table of Contents. Open-Xchange Authentication & Session Handling. 1.Introduction...3

Table of Contents. Open-Xchange Authentication & Session Handling. 1.Introduction...3 Open-Xchange Authentication & Session Handling Table of Contents 1.Introduction...3 2.System overview/implementation...4 2.1.Overview... 4 2.1.1.Access to IMAP back end services...4 2.1.2.Basic Implementation

More information

Information Technology Department Secure File Transfer System User Guide

Information Technology Department Secure File Transfer System User Guide Information Technology Department Secure File Transfer System User Guide Lasted Updated: October 29, 2009 1 Table of Contents 1. Secure FTP Web Application Overview... 3 2. Secure FTP Web Application URL...

More information

Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online

Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online 062212 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any

More information

Configure Single Sign on Between Domino and WPS

Configure Single Sign on Between Domino and WPS Configure Single Sign on Between Domino and WPS What we are doing here? Ok now we have the WPS server configured and running with Domino as the LDAP directory. Now we are going to configure Single Sign

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

CitiDirect BE. Getting Started Kit. Solution Corporate and Public Sector Clients in Singapore. Welcome to CitiDirect BE!

CitiDirect BE. Getting Started Kit. Solution Corporate and Public Sector Clients in Singapore. Welcome to CitiDirect BE! SM CitiDirect BE Getting Started Kit Solution Corporate and Public Sector Clients in Singapore Welcome to CitiDirect BE! CitiDirect BE is the evolution of CitiDirect Online Banking (CitiDirect). New user-friendly

More information

Web Meetings through VPN. Note: Conductor means person leading the meeting. Table of Contents. Instant Web Meetings with VPN (Conductor)...

Web Meetings through VPN. Note: Conductor means person leading the meeting. Table of Contents. Instant Web Meetings with VPN (Conductor)... Table of Contents Instant Web Meetings with VPN (Conductor)...2 How to Set Up a Scheduled Web Meeting with VPN (Conductor)...6 How to Set Up a Support Web Meeting with GVSU VPN Service (Conductor)...15

More information

DPH TOKEN SELF SERVICE SITE INSTRUCTIONS:

DPH TOKEN SELF SERVICE SITE INSTRUCTIONS: DPH TOKEN SELF SERVICE SITE INSTRUCTIONS: The purpose of this document is to provide users with assistance on resolving connection issues with Department of Public Health (DPH) Entrust tokens. These instructions

More information

AccountView. Single Sign-On Guide

AccountView. Single Sign-On Guide AccountView Single Sign-On Guide 2014 Morningstar. All Rights Reserved. AccountView Version: 1.4 Document Version: 2 Document Issue Date: March 09, 2013 Technical Support: (866) 856-4951 Telephone: (781)

More information

Interwise Connect. Working with Reverse Proxy Version 7.x

Interwise Connect. Working with Reverse Proxy Version 7.x Working with Reverse Proxy Version 7.x Table of Contents BACKGROUND...3 Single Sign On (SSO)... 3 Interwise Connect... 3 INTERWISE CONNECT WORKING WITH REVERSE PROXY...4 Architecture... 4 Interwise Web

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

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Salesforce.com: Salesforce Winter '09 Single Sign-On Implementation Guide Copyright 2000-2008 salesforce.com, inc. All rights reserved. Salesforce.com and the no software logo are registered trademarks,

More information

Hubcase for Salesforce Installation and Configuration Guide

Hubcase for Salesforce Installation and Configuration Guide Hubcase for Salesforce Installation and Configuration Guide Note: This document is intended for system administrator, and not for end users. Installation and configuration require understanding of both

More information

Online Helpdesk System

Online Helpdesk System Online Helpdesk System How to register: Please visit http://www.support.lonicera.com.au/cgi-bin/pdesk.cgi or access our Quick Links at http://www.lonicera.com.au, and click on the Register link, as shown

More information

NETASQ ACTIVE DIRECTORY INTEGRATION

NETASQ ACTIVE DIRECTORY INTEGRATION NETASQ ACTIVE DIRECTORY INTEGRATION NETASQ ACTIVE DIRECTORY INTEGRATION RUNNING THE DIRECTORY CONFIGURATION WIZARD 2 VALIDATING LDAP CONNECTION 5 AUTHENTICATION SETTINGS 6 User authentication 6 Kerberos

More information

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 Title page Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 APPLICATION API DEVELOPER GUIDE 3HE-10590-AAAA-TQZZA Issue 1 December 2015 Legal notice Legal notice Alcatel, Lucent, Alcatel-Lucent and the

More information

Integration Overview. Web Services and Single Sign On

Integration Overview. Web Services and Single Sign On Integration Overview Web Services and Single Sign On Table of Contents Overview...3 Quick Start 1-2-3...4 Single Sign-On...6 Background... 6 Setup... 6 Programming SSO... 7 Web Services API...8 What is

More information

Web Applications Access Control Single Sign On

Web Applications Access Control Single Sign On Web Applications Access Control Single Sign On Anitha Chepuru, Assocaite Professor IT Dept, G.Narayanamma Institute of Technology and Science (for women), Shaikpet, Hyderabad - 500008, Andhra Pradesh,

More information

Single Sign On (SSO) Implementation Manual. For Connect 5 & MyConnect Sites

Single Sign On (SSO) Implementation Manual. For Connect 5 & MyConnect Sites Single Sign On (SSO) Implementation Manual For Connect 5 & MyConnect Sites Version 6 Release 5.7 September 2013 1 What is Blackboard Connect Single Sign On?... 3 How it Works... 3 Drawbacks to Using Single

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

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

How To Connect Your Event To PayPal

How To Connect Your Event To PayPal How To Connect Your Event To PayPal This document describes, in click by click detail, how to connect your event's registration page to your PayPal merchant account. You PayPal merchant account MUST BE

More information

EPB Managed Wi-Fi Creating Social Media Apps with AirTight Guest Manager

EPB Managed Wi-Fi Creating Social Media Apps with AirTight Guest Manager EPB Managed Wi-Fi Creating Social Media Apps with AirTight Guest Manager EPB s Managed Wi-Fi solution allows you to create social media integration with your new guest manager. This functionality allows

More information

Configuration Guide - OneDesk to SalesForce Connector

Configuration Guide - OneDesk to SalesForce Connector Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce

More information

Vendor Portal User Guide

Vendor Portal User Guide State of Illinois Illinois Department of Transportation Vendor Portal User Guide Version 2.1 November 2015 0137-16, 11/15, web Item Document Title File Name Disposition Author Document Description Description

More information

Okta/Dropbox Active Directory Integration Guide

Okta/Dropbox Active Directory Integration Guide Okta/Dropbox Active Directory Integration Guide Okta Inc. 301 Brannan Street, 3rd Floor San Francisco CA, 94107 info@okta.com 1-888- 722-7871 1 Table of Contents 1 Okta Directory Integration Edition for

More information

Guide. for HR Users. Posted May 1, 2012

Guide. for HR Users. Posted May 1, 2012 Guide for HR Users Posted May 1, 2012 Go to this URL: https://hrx.talx.com/webmanager/loginclientkey.aspx to log on to the Administrative site for the UGA Onboarding System. The Employer Code is 13990

More information

Trauma/Recon Sales. Step by step guide to using the Smith & Nephew User Gateway (SNUG) Global Remote Access

Trauma/Recon Sales. Step by step guide to using the Smith & Nephew User Gateway (SNUG) Global Remote Access Trauma/Recon Sales Step by step guide to using the Smith & Nephew User Gateway (SNUG) Global Remote Access Table of Contents Introduction...1 How Do I Get Access to SNUG?...1 Getting Started...1 Logging

More information

Topic: ACE Initial Account Access

Topic: ACE Initial Account Access What s Inside: Account Creation Automatic e-mail Page 1 Password Retrieval Page 2 Initial Login Page 3 Creating New Password Page 4 Changing Password Page 6 Login Failure Page 6 Additional ACE Resources

More information

Logging In You must log in to the system before you can begin exchanging files with UMB. To log in to the system, follow the steps below.

Logging In You must log in to the system before you can begin exchanging files with UMB. To log in to the system, follow the steps below. Using UMB Secure File Transfer UMB Secure File Transfer is a Java-based interface that you can use to upload and download your files through a secure SSL connection using a Javasupported web browser such

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Student Access Reference Guide

Student Access Reference Guide Student Access Reference Guide Table of Contents Student Access Overview... 2 Logging on to the Student Portal... 3 Password Security Question Setup... 4 Need Help Signing In... 6 Navigating the Student

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

Alfresco Share SAML. 2. Assert user is an IDP user (solution for the Security concern mentioned in v1.0)

Alfresco Share SAML. 2. Assert user is an IDP user (solution for the Security concern mentioned in v1.0) Alfresco Share SAML Version 1.1 Revisions 1.1 1.1.1 IDP & Alfresco user logs in using saml login page (Added info about saving the username and IDP login date as a solution for the Security concern mentioned

More information

Banner Web Time Entry Approver s Handbook

Banner Web Time Entry Approver s Handbook Banner Web Time Entry Approver s Handbook Welcome to Banner Web Time Entry The Web Time Entry system allows employees to individually log onto the mybanner.kenyon.edu secure website and enter the hours

More information

State of Michigan Single Sign-On Registration Instructions for First Time Users

State of Michigan Single Sign-On Registration Instructions for First Time Users Once you have created a user id/password combination you MUST remember it for future logins. DNR employees cannot help with user id/password assistance. You will need to call the Client Service Center

More information

Salesforce1 Mobile Security Guide

Salesforce1 Mobile Security Guide Salesforce1 Mobile Security Guide Version 1, 1 @salesforcedocs Last updated: December 8, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Cloud Extender Installation Guide Copyright 2013 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software described

More information

Surplus Lines Online User Guide

Surplus Lines Online User Guide Surplus Lines Online User Guide Missouri Department of Insurance, Financial Institutions and Professional Registration Contents Summary... 1 Site Address... 1 Account Management... 2 Account Registration...

More information

Online eopf Self-service Feature for Login ID and Password Retrieval for New Users

Online eopf Self-service Feature for Login ID and Password Retrieval for New Users For Employees Online eopf Self-service Feature for Login ID and Password Retrieval for New Users eopf provides web-based access for Federal personnel to view and print employment documents. Employees are

More information

Login with Amazon. Developer Guide for Websites

Login with Amazon. Developer Guide for Websites Login with Amazon Developer Guide for Websites Copyright 2014 Amazon Services, LLC or its affiliates. All rights reserved. Amazon and the Amazon logo are trademarks of Amazon.com, Inc. or its affiliates.

More information

What is e-services? Registered User Portal RUP

What is e-services? Registered User Portal RUP IRS e-services Registration Process What is e-services? Suite of products designed for tax professionals and taxpayers to do business with IRS electronically Includes: Registration e-file Application Preparer

More information

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102.

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. With these instructions, you will: 1. Record your greeting. 2. Configure your 911 setting. 3. Learn how

More information

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 èè How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 Table of Contents 1. General overview... 3 1.1. Installing the plugin... 3 1.2. Testing the plugin with the

More information

Vendor User Accounts managing your NAP User Account

Vendor User Accounts managing your NAP User Account This guide explains how to request and manage your NAP User Account so that you may access Web Status. Topics include: Reactivating an existing NAP User Account Requesting a NAP User Account Managing your

More information

Authentication and Single Sign On

Authentication and Single Sign On Contents 1. Introduction 2. Fronter Authentication 2.1 Passwords in Fronter 2.2 Secure Sockets Layer 2.3 Fronter remote authentication 3. External authentication through remote LDAP 3.1 Regular LDAP authentication

More information

New Brunswick Internal Services Agency. RSA Self-Service Console User Guide

New Brunswick Internal Services Agency. RSA Self-Service Console User Guide New Brunswick Internal Services Agency RSA Self-Service Console User Guide Version: 1.0 Created: November 27, 2013 Modified: November 27, 2013 Table of Contents Introduction...1 Logging on to the RSA Self-Service

More information

Instructions For Opening UHA Encrypted Email

Instructions For Opening UHA Encrypted Email Receiving Encrypted Email You have received a secure, encrypted message from UHA. The message will contain the following notice and an attachment named SecureMessageAtt.hml. The attachment is shown circled

More information

MaaS360 On-Premises Cloud Extender

MaaS360 On-Premises Cloud Extender MaaS360 On-Premises Cloud Extender Installation Guide Copyright 2014 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software

More information

Configuring Single Sign-on for WebVPN

Configuring Single Sign-on for WebVPN CHAPTER 8 This chapter presents example procedures for configuring SSO for WebVPN users. It includes the following sections: Using Single Sign-on with WebVPN, page 8-1 Configuring SSO Authentication Using

More information

Turnitin User Guide. Includes GradeMark Integration. January 2014 (revised)

Turnitin User Guide. Includes GradeMark Integration. January 2014 (revised) Turnitin User Guide Includes GradeMark Integration January 2014 (revised) Copyright 2014 2 Contents Contents... 3 Turnitin Integration... 4 How This Guide is Organized... 4 Related Documentation... 4 Campus

More information