This document outlines the backend specifications of the CITI Program Single Sign On Portal.

Size: px
Start display at page:

Download "This document outlines the backend specifications of the CITI Program Single Sign On Portal."

Transcription

1 SSO Developer Handbook This document outlines the backend specifications of the CITI Program Single Sign On Portal. 1 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

2 Revision Sheet Release No. Date Revision Description Rev. 0 05/25/2010 Created by Monique Boea Rev. 1 06/28/2012 Added HTTP Compression section Rebecca Palmberg Rev. 2 08/14/2012 Updated CITI Contact Address Rev. 3 01/16/2013 Updated to reflect CITI 2.0 changes CONTACTS Test Institution If you are interested in having a test institution created please contact: citisupport@med.miami.edu. Once the test institution is set up you may use it as a development environment for trying the Remote Login service. Get started To sign up for Remote Login Service please contact: citisupport@med.miami.edu. Once you are subscribed you will be given a unique Institution ID and Key. Hang on to these! Your IT staff/programmer will need them for the remote login scripts on your server. Technical Assistance For technical assistance please contact: monique@atlaref.org. 2 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

3 The CITI Single Sign On portal allows institutions the option to offer a remote login into the CITI Program website. Users can log in to the Institution s system, click on a specified URL which will automatically log the user into CITI (after the user is authenticated). Each Institution is responsible for developing the code on their respective servers which will be used to forward a user to the CITI servers for authentication. Visit to view code samples in the following languages: ASP COLDFUSION.NET PHP NOTE: These samples are not intended to be production level code. They are provided to illustrate the process of remote login. Your production implementation of remote login should take the process outlined by these samples and incorporate it into your existing code base. The following rules will ensure that the remote login process works successfully: Fields should be posted to the remote login URL at CITI: When a user is authenticated successfully, he/she will be redirected to if gotociti = yes : : You can use the following form to test submission prior to setting up your SSO links: remoteloginform.asp 3 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

4 There are required fields that all institutions must pass to the remote login URL as well as optional fields. The following explains the fields which can be passed to the remote login URL. Please note required fields vs. optional fields. Description Field Name Field Type, Size or Acceptable Values When is the field required? Institution ID institution integer always required Login Key key 255 characters always required Institutional Username (unique within institution) instusername 50 characters required when CITI username and password are not provided CITI username (unique within CITI) username 50 characters CITI password password 50 characters First Name first 100 characters Last Name last 100 characters required when Institutional Username is not provided required when Institutional Username is not provided required for new learners, required when "Update Name and CITI " is "yes" required for new learners, required when "Update Name and CITI " is "yes" 4 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

5 CITI characters required for new learners, required when "Update Name and CITI " is "yes" New Institutional Username (unique in institution) instusernamenew 50 characters required when "Update Institutional Username" is "yes" New Username (unique in CITI) usernamenew 50 characters New Password passwordnew 50 characters required when "Update CITI Login" is "yes" required when "Update CITI Login" is "yes" Update CITI Login with "New Username" and "New Password" updatecitilogin yes or no (default) always required Update Institutional Username with "New Institutional Username" updateinstusername yes or no (default) always required Update Institutional Profile updateinfo yes or no (default) always required Update Name and CITI updatename yes or no (default) always required Allow User to Change Institutional Username allowchanges yes or no (default) always required Redirect to CITI web site gotociti yes or no (default) always required 5 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

6 (only applies to registered CITI members) New or Returning Learner type returning or new (default) always required Test login logintest yes or no (default) always required Institutional User ID instuserid 50 characters see note above, field is unique within institution Institutional inst 150 characters see note above Gender gender 50 characters see note above Degrees degrees 50 characters see note above Employee Number employeenum 50 characters see note above Department department 255 characters see note above Research Role researchrole 255 characters see note above Address 1 address1 255 characters see note above Address 2 address2 255 characters see note above Address 3 address3 255 characters see note above 6 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

7 City city 50 characters see note above State state 50 characters see note above Zip/Postal Code zip 50 characters see note above Country country 50 characters see note above Custom 1 custom characters see note above Custom 2 custom2 255 characters see note above Custom 3 custom3 255 characters see note above Custom 4 custom4 255 characters see note above Custom 5 custom5 255 characters see note above Learner Stages stages 255 characters see note above 7 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

8 There are 2 scenarios where a user is sent from the institution to the remote login form: 1. RETURNING USER - Users should be initially passed from the institution to the portal as a returning user. Returning is the default value if no type parameter is provided. The following fields are required for a returning user: INSTITUTION USERNAME (instusername) INSTITUTION KEY (key) INSTITUTION ID (institution) NOTE: If the INSTITUTION USERNAME (instusername) is not provided, the CITI username and password is required for all returning users. When the information is passed to the remote login form, it is processed by a stored procedure (stored proc) on the CITI Program server. Before the stored proc processes the user, it conducts a few institution level checks and will redirect the user accordingly i.e. ensure that the portal logins max has not been exceeded for this institution, ensures that the institution has remote access enabled, makes sure the correct login key was passed for the institution, etc. If the information passes the institution level validations, the stored proc will conduct RETURNING USER validations: a. Check to see if the user is affiliated with the institution within CITI i. If no, check to see if the CITI username and password has been provided 1. If not, show an error message. This user is not affiliated with the institution in CITI nor does he/she have a CITI account. The user must be resubmitted by the Institution as a NEW USER. ii. If yes, check to see if the user has an existing CITI account 1. If no, show an error message. 8 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

9 2. If yes, continue validating the data 3. If no errors, create affiliation with institution 4. OR, update profile if applicable 5. Continue with misc updates 2. NEW USER - If the user being submitted to the remote login form is not found in the system, the user s information must be resubmitted by the institution as a new user. The following fields are required when submitting a new user: INSTITUTION USERNAME (username) USER S FIRST NAME (first) USER S LAST NAME (last) USER S ADDRESS ( ) INSTITUTION KEY (key) INSTITUTION ID (institution) When the form is submitted, the remote login form ensures that the required fields listed above have been submitted. If not, an error message is shown for each missing field. 9 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

10 Before the stored proc processes the user, it conducts a few institution level checks and will redirect the user accordingly i.e. ensure that the portal logins max has not been exceeded for this institution, ensures that the institution has remote access enabled, makes sure the correct login key was passed for the institution, etc. If the information passes the institution level validations, the stored proc will conduct NEW USER validations: The stored proc conducts several validations on the data submitted for the user before processing i.e., ensure that the userid submitted is not currently in use; ensures that the user s name and address have been submitted, ensures that the username submitted is not currently in use; ensures that the user does not have an existing CITI account. If the data is processed with no errors, the new user is added. Generate password, if not submitted Create username, if not submitted Add user to the appropriate tables in the CITI database Add user to tblmemberinstitutionsii Partner Affiliations Partner Affiliations allows users to affiliate with an institution other than the one that owns the portal. If the learner has an existing affiliation, neither the learner nor the institution needs know the CITI login to create the new affiliation. If the learner is coming through the portal for the first time and is not affiliated with the institution that owns the portal, they will have to know (or create) the CITI login, but this only will have to be done once. Another advantage of the partner affiliation is that the same institutional username can be used for each of the partner institutions. This makes it easy for the institutions to identify learners across institutions. 10 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

11 The following is an example of how/why partner affiliations are used: University X has several campuses. Their learners may be affiliated with more than one campus or they may switch campuses. A learner s institutional username for all campuses is the same. They want their learners who are affiliated with the University X West Campus to be able to affiliate with University X East Campus and have the same institutional username WITHOUT knowing their CITI username and password. By using partner affiliations, we can find them using their West Campus affiliation, create the East affiliation, and log them in. When a user is submitted to the remote login form, after being processed as a new or returning user, the system determines if the user needs to be affiliated with a partner institution. A partnered ID (intpartnerid) is required. The stored proc conducts various partner level validations, i.e. verify the institution, verify that the institution is set up for remote access, verify the login key, etc. After partner validations are passed, the system checks to ensure that there is no one else with the same userid. If the above validation passes, a member/ partner affiliation record is created OR the existing affiliation is updated. Member Log in When a submitted user passes all validations in the scenarios mention above, the system will automatically log the user into CITI. After a few database housekeeping steps, the user is forwarded to the CITI member area, if gotociti = yes : <!--- CITI success redirect URL ---> 11 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

12 Error Messages There are several error messages that may occur when a user is submitted to the remote login form for various reasons. Here is a list of error messages and what the developer must do when each occurs: ISSUE: If the number of portal logins exceeds the max allowed -remote login denied, maximum logins exceeded RESOLUTION: There is a limit of 50 logins per minute for each institution through the portal. If you are testing the system using a script to login multiple users, set the logintest parameter to yes to bypass this limit. You will be able to test the remote login procedure, but the learners will not be logged in to CITI. If you are not testing the system, resubmit the login information. ISSUE: Institution does not have remote login access -remote login access denied RESOLUTION: Contact CITI support at citisupport@med.miami.edu to obtain remote login access. 12 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

13 ISSUE: Institution ID was not provided -Institution missing RESOLUTION: Enter the institution ID and resubmit. If you do not know your institution ID, contact CITI support at ISSUE: Invalid institution ID was provided -Institution invalid RESOLUTION: Enter the correct institution ID and resubmit. If you do not know your institution ID, contact CITI support at 13 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

14 ISSUE: Institution key is missing -institution key missing RESOLUTION: Provide the institution key and resubmit. If you do not know your institution key, contact CITI support at to obtain your login key. ISSUE: Wrong login key for institution -wrong login key RESOLUTION: Contact CITI support at to obtain your login key. 14 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

15 ISSUE: Wrong ip address -ip invalid RESOLUTION: Your institution has requested that access only be allowed through specific IP addresses. These IP addresses must be on record with CITI. Contact CITI support at to obtain a list of valid IP addresses or register new ones. ISSUE: The user ID (instusername) is missing -user ID missing RESOLUTION: You are attempting to register a new member, but have not provided a user ID (instusername) for this member. Enter a user ID and resubmit. 15 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

16 ISSUE: First name is missing -first name missing RESOLUTION: You are attempting to register a new member, but have not provided a first name for this member. Enter a first name and resubmit. ISSUE: Last name is missing -last name missing RESOLUTION: You are attempting to register a new member, but have not provided a last name for this member. Enter a last name and resubmit. 16 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

17 ISSUE: CITI address is missing -CITI missing RESOLUTION: You are attempting to register a new member, but have not provided a CITI address for this member. Enter a CITI address and resubmit. ISSUE: If there is more than one person with this user ID at this institution - error: ## logins with user ID provided, user ID must be unique RESOLUTION: You have provided a value for the instusername parameter. ## members at your institution are using this value as their user ID. Each member s user ID must be unique within the institution. Provide a new user ID (instusername) for this member and contact CITI support at citisupport@med.miami.edu to find and remove the duplicate user IDs that have been recorded. 17 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

18 ISSUE: Someone else at the institution is using this user ID - error: user ID already in use, user ID must be unique RESOLUTION: You are attempting to register a new member. The user ID (instusername) you have provided is already in use. Each member s user ID must be unique within the institution. Provide a different user ID (instusername) for this member and resubmit. ISSUE: Missing name or - error: name or missing RESOLUTION: You are attempting to register a new member and have not provided either the name or the address. Provide the name and address and resubmit. 18 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

19 ISSUE: Duplicate username - error: username in use RESOLUTION: You are attempting to register a new member and the username provided is already being used by another member of CITI. Provide a different username and resubmit. ISSUE: User not affiliated with institution and username and password were not provided - error: learner not affiliated with institution, add learner or provide username and password RESOLUTION: A returning learner is attempting to login. The user ID (instusername) was provided, but was not found affiliated with your institution. Change the type of learner to new or provide the CITI username and password for the learner. 19 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

20 ISSUE: There is an existing registration - existing registration found with this , username sent to { address} RESOLUTION: You are attempting to register a new member. Someone has registered using the address provided. The message shown below has been sent to the address. Provide another address or login the individual as a returning member. Subject: {Member Name} CITI registration information You attempted to register as a new user through the CITI portal at {Institution Name}. However, you already have a CITI registration with username, {username}. Please use this username to register through the {Institution Name} portal. If you need to contact us, call the CITI Office at the University of Miami at or send an to citisupport@med.miami.edu. Paul Braunschweiger Ph.D. Professor, University of Miami Director Office of Research Education CITI Course Coordinator 20 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

21 ISSUE: Person is not in database - error: learner not in database RESOLUTION: A returning learner is attempting to login. The CITI username and password were provided, but were not found. Change the type of learner to new or correct the CITI username and password. ISSUE: User ID or CITI username and password are required to login -user ID OR username and password required RESOLUTION: A returning learner is attempting to login. The user ID (instusername) or CITI username and password is required to login, but were not provided. Enter the user ID or the CITI username and password and resubmit. 21 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

22 ISSUE: If updating CITI login, and login is missing - error: must provide new citi login for update OR -new CITI username and password required to update CITI login RESOLUTION: Provide values for passwordnew and usernamenew parameters and resubmit. ISSUE: If updating user ID and new user ID is missing - error: must provide new institutional user ID for update OR -new institutional user ID required to update user ID RESOLUTION: Provide a value for the instusername parameter and resubmit. 22 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

23 Partner Affiliation Errors ISSUE: Institution does not have remote login access -remote login access denied for partner RESOLUTION: Contact CITI support at to discuss login access for the partner institution. ISSUE: Login key for partner institution was not provided -partner institution key missing RESOLUTION: Enter the partner institution key. If you do not have the key, contact CITI support at to obtain the login key for the partner institution. The partner login key is not the value partner institution submits as the key parameter to login through their portal. 23 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

24 ISSUE: Wrong login key for partner institution -wrong login key for partner {Name of Institution} RESOLUTION: Contact CITI support at to obtain the login key for the partner institution. The partner login key is not the value partner institution submits as the key parameter to login through their portal. ISSUE: User ID (partnerusername) is missing -user ID partner institution missing RESOLUTION: You are attempting to register a new member and have provided an institution ID for a partner institution, but you have not provided a user ID for the partner institution. Enter the user ID for the partner institution and resubmit. 24 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

25 ISSUE: There is more than one person with this user ID at this institution - error: ## logins with user ID provided, user ID must be unique for partner {Name of Institution} RESOLUTION: You have provided a value for the instusername parameter for the partner institution. ## members at the partner institution are using this value as their user ID. Each member s user ID must be unique within the institution. Provide a new user ID (instusername) for this member for the partner institution and contact CITI support at citisupport@med.miami.edu to find and remove the duplicate user IDs that have been recorded. ISSUE: User ID (partnerusername) is missing -user ID partner institution missing RESOLUTION: You are attempting to register a new member and have provided an institution ID for a partner institution, but you have not provided a user ID for the partner institution. Enter the user ID for the partner institution and resubmit. 25 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

26 ISSUE: If updating partner user ID and partner user ID is missing -new partner user ID required to update partner user ID RESOLUTION: Provide a value for the partnerusernamenew parameter and resubmit. 26 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

27 Frequently Asked Questions GENERAL Q. My institution is interested in using the portal. What are the technical requirements? A. You will need a programmer available to you at your institution. The programming language you choose to use is up to your institution. The CITI portal is currently accessed by institutions using Java,.NET, PHP, and ColdFusion. CITI will provide documentation, guidance, and code samples, but programming is required at the institution to use the portal. Interacting with CITI is as simple as submitting form data, but there is complexity involved in properly handling CITI's responses to your data. It is imperative for your programmer(s) to carefully review the documentation and code samples. CITI is constantly improving the documentation to improve and simplify interacting with the portal, but ultimately your programmer builds the interface your institution will use. The portal is not an "out of the box" solution. Q. What is the turnaround time for setting up portal access? A. There are many factors that determine how long the process will take. The number one factor is the amount of programming support you have available at your institution. A typical portal implementation currently runs around 4-6 months. See the FAQ on "interested in using the portal" for additional information. Q. Does my institution have to use both remote login and automated downloads? A. No, although they are bundled together the services work independently. You may use one without the other. Some institutions use a "phased approach" and choose to implement the automated downloads first because there is less complexity involved. Q. My institution currently has many users already using CITI. How can I set up portal access for them? A. Portal access is made available to users by associating existing CITI users with unique usernames at your institution (referred to as "institutional username" or strinstusername). CITI can furnish a spreadsheet of current CITI users for your institution. You then 27 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

28 provide the users' institutional user name in the spreadsheet and return it to CITI. A process is then run by CITI to set up the association. Q. My institution wants to attach a learnerid (or some other field) to each user in order to correlate downloaded reports with the users' records in another system at my institution. Is this possible? A. Yes. To accomplish this please provide CITI with the name of the field you'd like to add and indicate that you would like it made available in the reporting. See the FAQ "pass in custom data" for additional information. Q. My institution needs to export data from CITI and import it into another Learning Management System at our institution. How can we accomplish this? A. At this time there are 6 reports (each with a few variations). Each of those reports is made available via a secured URL. Your institution is given a "key" which is passed as a URL parameter to grant access to the report. The reports can be downloaded by 1. entering the URLs into a browser 2. setting up batch files to access the URLs 3. initiating HTTP requests from web programming languages such as ColdFusion, PERL, PHP, etc. CITI can provide sample batch files for you, but you will need a programmer at your institution to assist you with implementing them. At this time you will need to ask CITI for the list of reports. See the FAQ "attach a learnerid" for additional information. Q. In what formats are reports currently available? A. Comma-delimited (*.csv), Tab-delimited (*.txt), and Excel (*.xls) Q. Can I download reports nightly? Can I download reports every 3 or 4 hours? A. Yes and yes. You can download the reports on any schedule you set. 28 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

29 Q. Can reports be ed to me or ftp'd to a lockbox? A. No. At this time you must initiate the download from a web browser or your system. DEVELOPERS/PROGRAMMERS Q. What is the minimum information required to login via the portal? A. institution, key, instusername, type="returning" Q. What fields are required to create a new user via the portal? A. institution, key, instusername, type="new", first, last, Q. How do I pass custom data fields in via the portal? A. To pass in custom data via the portal you will need to pass the "updateinfo=yes" parameter and whichever custom field(s) you are using. The current custom field options are: custom1, custom2, custom3, custom4, custom5. See the FAQ "attach a learnerid" for additional information. Q. When attempting to log in a returning user via the portal I receive the following: "learner not affiliated with institution, add learner or provide username and password". How do I resolve this? A. There are two possible explanations for this error. The first is that CITI does not recognize the affiliation between the institutional user name (strinstusername) you are trying to log in and an existing CITI user. See the FAQ "users already using CITI" for an explanation of this affiliation. To set this affiliation you will need to prompt the user for their existing CITI username and password, append this information to your previously submitted data and resubmit to CITI. This will create the affiliation and subsequent logins will not require the CITI username and CITI password. The second explanation is that the user is actually a new user and has 29 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

30 never used CITI. If this is the case you need to resubmit the data and change type="returning" to type="new" and additionally provide the following fields: first, last, . This will create the CITI user and affiliate it to the institutional user name. Subsequent logins using "returning=yes" should work. Q. When attempting to create a new user via the portal I receive the following: "user ID already in use, user ID must be unique". How do I resolve this? A. The institutional user name (strinstusername) you are trying to use is already affiliated with an existing CITI user. You will need to resubmit with a unique institutional user name. Q. When attempting to create a new user via the portal I receive the following: "existing registration found with this , username sent to abc@def.com". How do I resolve this? A. An existing CITI user has been found with the address you are submitting. You should create an affiliation between that existing CITI user and the new user you are creating. See the FAQ "users already using CITI" for an explanation of this affiliation. To set this affiliation you will need to prompt the user for their existing CITI username and password, append this information to your previously submitted data and resubmit to CITI. This will create the affiliation and subsequent logins will not require the CITI username and CITI password. Q. How can I log successful logins to CITI? A. The most reliable method for logging successful logins is to pass "gotociti=no" and handle the redirect manually. If CITI returns a 37 character UUID then your user has successfully authenticated. You can then log in the user by redirecting them back to the SSO form: (where XXXXXXXXXX would be the 37 character UUID). 30 P a g e C I T I S i n g l e S i n g O n P o r t a l D e v e l o p e r H a n d b o o k

Setting Up One Search

Setting Up One Search Your teachers and students can take advantage of your school s subscription databases all in one place through Destiny One Search. One Search saves staff and patrons time and effort by letting them search

More information

WiNG5 CAPTIVE PORTAL DESIGN GUIDE

WiNG5 CAPTIVE PORTAL DESIGN GUIDE WiNG5 DESIGN GUIDE By Sriram Venkiteswaran WiNG5 CAPTIVE PORTAL DESIGN GUIDE June, 2011 TABLE OF CONTENTS HEADING STYLE Introduction To Captive Portal... 1 Overview... 1 Common Applications... 1 Authenticated

More information

International Monetary Fund. The Integrated Correspondence System. Using the ICS Information Framework Template

International Monetary Fund. The Integrated Correspondence System. Using the ICS Information Framework Template The Integrated Correspondence System Rev: May 25, 2005 TABLE OF CONTENTS: Table of Contents:... 2 I. Introduction... 3 II. General Instructions...4 III. Submitting Data... 7 IV. Help, Contact Us, and News...

More information

Configuring SuccessFactors

Configuring SuccessFactors Chapter 117 Configuring SuccessFactors The following is an overview of the steps required to configure the SuccessFactors Enterprise Edition Web application for single sign-on (SSO) via SAML. SuccessFactors

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Mobile App Activation Before you can activate the mobile app you must download it. You can have up to

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications

ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications ACCREDITATION COUNCIL FOR PHARMACY EDUCATION CPE Monitor Technical Specifications Prepared by Steven Janis, RWK Design, Inc. Created: 02/10/2012 Revised: 09/28/2012 Revised: 08/28/2013 This document describes

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

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings

More information

Quick DDNS Quick Start Guide

Quick DDNS Quick Start Guide Quick DDNS Quick Start Guide Contents Before Use... 1 Enable Domain Name Access... 2 Default Domain Name Access... 2 Custom Domain Name... 3 DDNS Web Registration and Management... 5 Smart Phone Client...

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? Enterprise Computing & Service Management How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend

More information

Center for Educational Performance and Information (CEPI) Student Data System (SDS)

Center for Educational Performance and Information (CEPI) Student Data System (SDS) Center for Educational Performance and Information (CEPI) Student Data System (SDS) Training Manual Questions? Contact: 517.335.0505 E-mail: CEPI@michigan.gov Table of Contents MODULE 1 STUDENT DATA SYSTEM

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

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

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

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

Secure Global Desktop (SGD)

Secure Global Desktop (SGD) Secure Global Desktop (SGD) Table of Contents Checking your Java Version...3 Preparing Your Desktop Computer...3 Accessing SGD...5 Logging into SGD...6 Using SGD to Access Your Desktop...7 Using SGD to

More information

Tableau Server Trusted Authentication

Tableau Server Trusted Authentication Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted

More information

Migration Strategies and Tools for the HP Print Server Appliance

Migration Strategies and Tools for the HP Print Server Appliance white paper HP Print Server Appliance 4250 July 2003 Migration Strategies and Tools for the HP Print Server Appliance (Web Jetadmin version 7.2 and above; PSA Firmware version 2.4.x and above) Overview

More information

Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration

Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration Frequently Asked Questions for New Electric Mail Administrators 1 Domain Setup/Administration 1.1 How do I access the records of the domain(s) that I administer? To access the domains you administer, you

More information

CITI Program For Individual Conflicts of Interest and Commitment Tutorial

CITI Program For Individual Conflicts of Interest and Commitment Tutorial CITI Program For Individual Conflicts of Interest and Commitment Tutorial Instructions for Virginia Tech CITI Learners-Virginia Tech Individual Conflicts of Interest Tutorial Completion Time: The Virginia

More information

Welcome to Your FCSL Student Web Portal. Course Schedule Students can view and search course schedules and view class details.

Welcome to Your FCSL Student Web Portal. Course Schedule Students can view and search course schedules and view class details. Welcome to Your FCSL Student Web Portal Course Schedule Students can view and search course schedules and view class details. Online Registration Online registration allows students to register for courses

More information

HertSFX. User Guide V2.04. Hertfordshire s Secure File Exchange Portal. (Jan 2014) HertSFX User Guide V2.04 Jan 2014 Page 1 of 17

HertSFX. User Guide V2.04. Hertfordshire s Secure File Exchange Portal. (Jan 2014) HertSFX User Guide V2.04 Jan 2014 Page 1 of 17 Hertfordshire s Secure File Exchange Portal User Guide V2.04 (Jan 2014) HertSFX User Guide V2.04 Jan 2014 Page 1 of 17 CONTENTS 1. About HertSFX... 3 2. HertSFX Limitations... 3 3. Getting Started... 3

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

Configuring. SuccessFactors. Chapter 67

Configuring. SuccessFactors. Chapter 67 Chapter 67 Configuring SuccessFactors The following is an overview of the steps required to configure the SuccessFactors Enterprise Edition Web application for single sign-on (SSO) via SAML. SuccessFactors

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

GMC Connect User Guide v1.1

GMC Connect User Guide v1.1 GMC Connect User Guide v1.1 CONTENTS 1 INTRODUCTION...3 2 ACCESSING GMC CONNECT...4 2.1 User Registration...4 2.2 Logging In...5 3 THE HOME PAGE...6 4 DOCUMENT FOLDERS...7 4.1 About Document Folders...7

More information

How To - Implement Clientless Single Sign On Authentication with Active Directory

How To - Implement Clientless Single Sign On Authentication with Active Directory How To Implement Clientless Single Sign On in Single Active Directory Domain Controller Environment How To - Implement Clientless Single Sign On Authentication with Active Directory Applicable Version:

More information

How To - Implement Single Sign On Authentication with Active Directory

How To - Implement Single Sign On Authentication with Active Directory How To - Implement Single Sign On Authentication with Active Directory Applicable to English version of Windows This article describes how to implement single sign on authentication with Active Directory

More information

ez Service Portal User Guide version 2.5.1

ez Service Portal User Guide version 2.5.1 ez Service Portal User Guide version 2.5.1 Revised June 18th 2015 1 Table of contents Introduction... 3 Conventions... 3 Contacting ez... 3 Copyright and trademarks... 3 Portal access... 4 Service Portal

More information

Welcome to the GSA Advantage PO Portal Help

Welcome to the GSA Advantage PO Portal Help Welcome to the GSA Advantage PO Portal Help Our help pages should answer many of the questions you may have concerning the GSA Advantage PO Portal. Can t find the answer you need? See Contact Us below.

More information

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a

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

INSTUCTIONS FOR SUBMITTING SERVICE REQUESTS THROUGH THE FAMIS WORK ORDER SYSTEM

INSTUCTIONS FOR SUBMITTING SERVICE REQUESTS THROUGH THE FAMIS WORK ORDER SYSTEM Page 1 of 7 INSTUCTIONS FOR SUBMITTING SERVICE REQUESTS THROUGH THE FAMIS WORK ORDER SYSTEM To Access the facility work order system: From the ASU website, click the Faculty and Staff link; under the Administrative

More information

How to configure Linksys SPA 941 942 for VOIP Connections

How to configure Linksys SPA 941 942 for VOIP Connections How to configure Linksys SPA 941 942 for VOIP Connections Congratulations. Welcome to VOIP Connections family. 1.) Connect the phone properly. Make sure the phone is connected securely to your router or

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

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org EPSS Frequently Asked Questions (FAQ) For support please contact: EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org A. General Questions: N.B.: For PIC-related

More information

A Handbook on Electronic Payment

A Handbook on Electronic Payment A Handbook on Electronic Payment Operational Instructions Procedure to make online Payment is very simple. A computer with internet connectivity is required for the purpose. There are four steps to make

More information

Resource Online User Guide JUNE 2013

Resource Online User Guide JUNE 2013 Resource Online User Guide JUNE 2013 CHASE PAYMENTECH SOLUTIONS MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES

More information

Enhanced Login Security Frequently Asked Questions

Enhanced Login Security Frequently Asked Questions Enhanced Login Security Frequently Asked Questions Below are Frequently Asked Questions to assist you and you can also contact Customer Service at 903-657-8525 or 800-962-1610. Q: What is Enhanced Login

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Installation Guide. Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise.

Installation Guide. Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise. Installation Guide Before We Begin: Please verify your practice management system is compatible with Dental Collect Enterprise. Compatibility List: https://www.sikkasoft.com/pms-fs-supported-by-spu/ NOTE:

More information

Managed Services PKI 60-day Trial Quick Start Guide

Managed Services PKI 60-day Trial Quick Start Guide Entrust Managed Services PKI Managed Services PKI 60-day Trial Quick Start Guide Document issue: 3.0 Date of issue: Nov 2011 Copyright 2011 Entrust. All rights reserved. Entrust is a trademark or a registered

More information

An overview of configuring Intacct for single sign-on. To configure the Intacct application for single-sign on (an overview)

An overview of configuring Intacct for single sign-on. To configure the Intacct application for single-sign on (an overview) Chapter 94 Intacct This section contains the following topics: "An overview of configuring Intacct for single sign-on" on page 94-710 "Configuring Intacct for SSO" on page 94-711 "Configuring Intacct in

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication This document serves as a How To reference guide for employees to execute the following MFA tasks: 1.

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

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview)

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview) Chapter 83 WebEx This chapter includes the following sections: An overview of configuring WebEx for single sign-on Configuring WebEx for SSO Configuring WebEx in Cloud Manager For more information about

More information

21 What is a threaded discussion on a Blackboard Discussion Board list? 22 Where do I access a Group Discussion on Blackboard?

21 What is a threaded discussion on a Blackboard Discussion Board list? 22 Where do I access a Group Discussion on Blackboard? Office of Academic Information Technologies B r o o k l yn C o l l e g e S t u d e n t B l a c k b o a r d S u p p o r t Student Frequently Asked Questions (FAQ) Getting Started 1 What do I need to do

More information

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org EPSS Frequently Asked Questions (FAQ) For support please contact: EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org A. General Questions: N.B.: For PIC-related

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

Web Authentication Application Note

Web Authentication Application Note What is Web Authentication? Web Authentication Application Note Web authentication is a Layer 3 security feature that causes the router to not allow IP traffic (except DHCP-related packets) from a particular

More information

Setting Up a CyberSource Web Payment Account

Setting Up a CyberSource Web Payment Account Setting Up a CyberSource Web Payment Account Contents Setting Up a CyberSource Web Payment Account... 1 Introduction... 1 Setting Up a CyberSource Account... 2 Get Username and Password... 2 Log in to

More information

domovea remote access tebis

domovea remote access tebis domovea remote access tebis SUMMARY SUMMARY Page 1. INTRODUCTION... 2 1.1 PURPOSE OF THE DOCUMENT... 2 1.2 PRELIMINARIES... 2 2.... 3 2.1 CONNECTING TO THE DOMOVEA.COM PORTAL... 3 2.2 CREATING A PERSONAL

More information

HIPAA Compliance Use Case

HIPAA Compliance Use Case Overview HIPAA Compliance helps ensure that all medical records, medical billing, and patient accounts meet certain consistent standards with regard to documentation, handling, and privacy. Current Situation

More information

Unified Access for Enterprise Users

Unified Access for Enterprise Users Unified Access for Enterprise Users Informational webinar Chinmay Meghani Liferay Portal Specialist Fulcrum Worldwide, Inc. Mehria Askaryar Business Development Manager Fulcrum Worldwide, Inc. Agenda Introduction

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

Quick DDNS Quick Start Guide

Quick DDNS Quick Start Guide Quick DDNS Quick Start Guide DDNS 快 速 指 导 手 册 1 / 11 Before Use The device must be connected to the Internet, please check if the connection works properly. Please confirm Internet access port is open

More information

Tenable for CyberArk

Tenable for CyberArk HOW-TO GUIDE Tenable for CyberArk Introduction This document describes how to deploy Tenable SecurityCenter and Nessus for integration with CyberArk Enterprise Password Vault. Please email any comments

More information

Weston Public Schools Virtual Desktop Access Instructions

Weston Public Schools Virtual Desktop Access Instructions Instructions for connecting to the Weston Schools Virtual Desktop Environment Notes: You will have to have administrator permission on your computer in order to install a VMWare Client application which

More information

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next. Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services

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

How to use SURA in three simple steps:

How to use SURA in three simple steps: How to use SURA in three simple steps: Most of SURA s functionality can be accessed through these three steps. 1) Download SURA to your computer Go to the SU Downloads page to obtain the SURA utility.

More information

GDP11 Student Registration Guide

GDP11 Student Registration Guide GDP11 Student Registration Guide Getting Started with GDP11 What You Will Need URL/Web Site Address for GDP Online You will access GDP11 at a URL (Web address) that is specific to your school. This URL

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 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

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

Connected Data. Connected Data requirements for SSO

Connected Data. Connected Data requirements for SSO Chapter 40 Configuring Connected Data The following is an overview of the steps required to configure the Connected Data Web application for single sign-on (SSO) via SAML. Connected Data offers both IdP-initiated

More information

Remote Access End User Reference Guide for SHC Portal Access

Remote Access End User Reference Guide for SHC Portal Access Remote Access End User Reference Guide for SHC Portal Access Version 2.0 6/7/2012 This remote access end user reference guide provides an overview of how to install Citrix receiver, which is a required

More information

ParishSOFT Remote Installation

ParishSOFT Remote Installation Table of Contents Setting up Remote Solution Windows 7 or Vista... 1 Connecting to ParishSOFT... 1 Accessing Your database... 3 Switching to your parish database... 4 Setting up Accounts for users... 5

More information

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them.

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them. This chapter provides information about the Security Assertion Markup Language (SAML) Single Sign-On feature, which allows administrative users to access certain Cisco Unified Communications Manager and

More information

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview)

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview) Chapter 190 WebEx This chapter includes the following sections: "An overview of configuring WebEx for single sign-on" on page 190-1600 "Configuring WebEx for SSO" on page 190-1601 "Configuring WebEx in

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

Getting Started with One Search for Destiny

Getting Started with One Search for Destiny Getting Started with One Search for Destiny Overview By providing one-stop searching of multiple online resources, One Search gives your students access to the best information in the least amount of time.

More information

VPS Remote Computing. Connecting to a Windows Server for the first time. 1 Your Server has been installed. 2 Finding the login details for your Server

VPS Remote Computing. Connecting to a Windows Server for the first time. 1 Your Server has been installed. 2 Finding the login details for your Server Connecting to a Windows Server for the first time This document will take you through the process of connecting to a Windows Virtual server for the first time. To connect to your server you need to find

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

WorkKeys Internet Version Test Administration and User Guide

WorkKeys Internet Version Test Administration and User Guide WorkKeys Internet Version Test Administration and User Guide ACT endorses the Code of Fair Testing Practices in Education and the Code of Professional Responsibilities in Educational Measurement, guides

More information

PERSONAL DEVELOPMENT SERIES

PERSONAL DEVELOPMENT SERIES PERSONAL DEVELOPMENT SERIES GUIDE TO USING THE LEARNING MANAGEMENT SYSTEM Welcome Thank you for choosing the Judgment Index Personal Development Series of courses as a resource for your personal and professional

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

Manage Address Book. Administrator's Guide

Manage Address Book. Administrator's Guide Manage Address Book Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Using Manage Address Book...4 Setting up access control from the application...4 Exporting contacts...4

More information

Provider Portal Manual Electronic Claims:

Provider Portal Manual Electronic Claims: Provider Portal Manual Electronic Claims: Site Registration Site Navigation Site Training FAQs Introduction and Overview... 1 Section I Prerequisites... 2 Section II Creating an Account... 2 Section III

More information

Training Module for Customer Portal & Customer Care. Enabling the Next Wave of Connectivity

Training Module for Customer Portal & Customer Care. Enabling the Next Wave of Connectivity Training Module for Customer Portal & Customer Care Customer Portal Interface used by the registered end user to interact with the network End user can modify Information, change Password & check the account,billing

More information

Virtual Cabinet Document Portal User Guide

Virtual Cabinet Document Portal User Guide Virtual Cabinet Document Portal User Guide Contents / Introduction Introduction... 2 What to expect when publishing a document... 3 Having difficulty? Troubleshooting guide.... 7 The Virtual Cabinet Document

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

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

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Quick Start Guide. IT Management On-Demand

Quick Start Guide. IT Management On-Demand 1 Quick Start Guide Quick Start Guide IT Management On-Demand Introduction... 2 Getting Started... 3 Planning Your Deployment... 5 Performing a Test Deployment... 6 Enterprise Deployment Options... 8 Remote

More information

Cloud Services. Email Migration. Cloud Migration Portal Admin Guide

Cloud Services. Email Migration. Cloud Migration Portal Admin Guide Cloud Services Email Migration Cloud Migration Portal Admin Guide 10/19/2014 CONTENTS Account Activation and Data Migration Cloud Migration Portal... 2 Purchase Cloud Migration License... 2 Create User

More information

A FOSTER WHEELER (THAILAND) LTD PROOFPOINT SECURE FILE TRANSFER SERVER USER DOCUMENTATION HTTPS://THTRANSFER.FWUK.FWC.COM

A FOSTER WHEELER (THAILAND) LTD PROOFPOINT SECURE FILE TRANSFER SERVER USER DOCUMENTATION HTTPS://THTRANSFER.FWUK.FWC.COM Rev 01, 15/11/2012 A FOSTER WHEELER (THAILAND) LTD PROOFPOINT SECURE FILE TRANSFER SERVER USER DOCUMENTATION HTTPS://THTRANSFER.FWUK.FWC.COM CONTENTS 1.0 INTRODUCTORY INFORMATION EVERYONE TO READ... 2

More information

New York State Student Information Repository System. New York State Student Identification System (NYSSIS) USERS GUIDE

New York State Student Information Repository System. New York State Student Identification System (NYSSIS) USERS GUIDE New York State Student Information Repository System New York State Student Identification System (NYSSIS) USERS GUIDE Version 6.4 Released November 2015 The University of the State of New York THE STATE

More information

Stoneware Inc. Hyland Software OnBase. Stoneware, Inc.

Stoneware Inc. Hyland Software OnBase. Stoneware, Inc. Stoneware Inc. Hyland Software OnBase Stoneware, Inc. Configuration Sheet Date: March 2005 Introduction This document provides the information necessary to secure and provide single sign-on for Hyland

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend the MS Remote Desktop for Mac client.

More information

Process Transaction API

Process Transaction API Process Transaction API Document Version 5.9 March 2011 For further information please contact Beanstream customer support at (250) 472-2326 or support@beanstream.com. BEAN # Page 2 of 90 Date Overview...

More information

Librarian s Guide to vlex

Librarian s Guide to vlex Librarian s Guide to vlex Table of Contents Purpose and Audience 3 Giving access to vlex.com to your Users 4 IP Authentication 4 IP Authentication with Personal Accounts 4 HTTP Proxy Access 5 EZProxy User

More information

Application Note 116: Gauntlet System High Availability Using Replication

Application Note 116: Gauntlet System High Availability Using Replication Customer Service: 425-487-1515 Technical Support: 425-951-3390 Fax: 425-487-2288 Email: info@teltone.com support@teltone.com Website: www.teltone.com Application Note 116: Gauntlet System High Availability

More information

Getting Started with StoreGrid Cloud

Getting Started with StoreGrid Cloud Getting Started with StoreGrid Cloud This document describes the steps to quickly sign up and start backing up your data to StoreGrid Cloud. I. Signing Up 1. Go to http://storegridcloud.vembu.com and select

More information

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1 Thank you for your interest in becoming a vendor to the State of Louisiana. It is crucial that we avoid duplicate registrations to facilitate correct award and payment processing. 1. Please go to https://lagoverpvendor.doa.louisiana.gov/irj/portal/anonymous?guest_user=self_reg

More information

Government buyer user manual System Requirements and Administration Version 2.0

Government buyer user manual System Requirements and Administration Version 2.0 Queensland Government etendering website Government buyer user manual System Requirements and Administration Version 2.0 July 2011 etender Help Desk phone 07 3836 0141 Table of contents 1 Introduction...

More information

SCADA Security. Enabling Integrated Windows Authentication For CitectSCADA Web Client. Applies To: CitectSCADA 6.xx and 7.xx VijeoCitect 6.xx and 7.

SCADA Security. Enabling Integrated Windows Authentication For CitectSCADA Web Client. Applies To: CitectSCADA 6.xx and 7.xx VijeoCitect 6.xx and 7. Enabling Integrated Windows Authentication For CitectSCADA Web Client Applies To: CitectSCADA 6.xx and 7.xx VijeoCitect 6.xx and 7.xx Summary: What is the difference between Basic Authentication and Windows

More information

Remote Access: Citrix Client Setup

Remote Access: Citrix Client Setup Introduction: The following documentation is intended to assist first time or active users with installation of the Citrix ICA connection software required to access the MSVU Remote Access system desktop

More information

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027)

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) 2015 VoIP Integration Rev. July 24, 2015 Table of Contents Product Overview... 3 Application Requirements... 3 Cisco Unified Communications

More information