Your Guide to Integrations with Digital River

Size: px
Start display at page:

Download "Your Guide to Integrations with Digital River"

Transcription

1 Digital River, Inc Your Guide to Integrations with Digital River Single Sign-On 8/3/2010 Document Version 1.2

2 Contents Introduction... 3 Terms, Shapes, and Definitions... 4 Typical High Level Work Flows... 5 Customer Authenticates on Client s Site... 5 Customer Authenticates on Digital River Hosted Shopping Site... 7 Elements of Single Sign-On Integrations... 8 Remote Session Validation... 8 Remote User Fetch Remote Login Remote Create User User Key Flow

3 Introduction Single Sign-On provides a seamless shopping experience for the customer who navigates from the client site to the Digital River hosted shopping site. In order to keep a customer from signing on multiple times, DR allows the customer sign-on information to be propagated through a remote user management api. This guide intends to give the client an overview of the steps involved in the integration process. The details of the api have been intentionally left out, and may be found online in the Digital River Integration Service Guide ( When browsing the Integration Service Guide please refer to the Remote User Management (SSO) section found at: Integration Processes User Account. When planning a Single Sign-On integration with Digital River, it is important to keep the following pieces of information in mind: The client maintains the master record for user information The client must maintain a unique, immutable id for each master user record Digital River acts as a secondary and updates user information from the master as needed Digital River can create new users, but will send the user s information to the client for validation In order to optimize the single sign-on process for the highest close ratios possible, Digital River will allow unauthenticated customers to browse and add items to the cart at any time Updates to user information through the My Account section will be redirected to a page hosted on a client site. This can be a pop-up page or a direct link with a return url Forgot Password links point to the client s site (typically this is a pop-up window) Order and Subscription Management and Billing Options will occur on the Digital River hosted site 3

4 Terms, Shapes, and Definitions DR Client Customer/Shopper gc ISG Digital River Partner/Customer of Digital River Individual Shopper Global Commerce Digital River s ecommerce Technology Platform Digital River s Integration Service Guide Digital River Controlled System Client Controlled System Customer/Shopper Message Request or Message Response from Digital River Message Request or Message Response from the Client 4

5 Typical High Level Work Flows Customer Authenticates on Client s Site Figure 1 depicts the combined use of Remote Session Validation and Remote User Fetch which occurs when a customer first arrives at Digital River from a client s site. Details for each of these integrations may be found later in this document (Remote Session Validation and Remote User Fetch). Figure 1 The following steps walk through what typically happens when an unauthenticated customer visits and logs in. The authenticated customer then visits Digital River and is authenticated through SSO. 1. Unauthenticated customer visits 2. Unauthenticated customer attempts to login 3. Client s system authenticates customer credentials 4. Client s system establishes unique session token and writes value to predetermined cookie under domain.clientsite.com 5. Client stores unique session token and its association to the customer s unique user id 6. Authenticated customer clicks on a shopping link which points to shop.clientsite.com 7. Digital River looks for and reads predetermined cookie under domain.clientsite.com 8. Digital River sends ValidateSessionRequest to client s end point with the contents of the predetermined cookie 9. The client receives the message, validates token, and returns ValidateSessionResponse with a UserKey element consisting of the externalreferenceid (the unique, immutable, master user id for the customer associated with the session token) 10. Digital River receives message and looks up externalreferenceid. If there already is a Digital River user id associated with the externalreferenceid, Digital River will use that user record. If not, Digital River will create a new user and associate it with the externalreferenceid 11. Digital River immediately sends GetUserProfileRequest to the client s endpoint to pull the latest information about the customer 5

6 12. The client responds with GetUserProfileResponse 13. Digital River s record of the user is updated with current information 14. Authenticated Digital River customer shops and purchases many, many items 6

7 Customer Authenticates on Digital River Hosted Shopping Site Figure 2 represents either of two processes whereby a customer can authenticate on the Digital River hosted shopping site. Details for each of these integrations may be found later in this document (Remote Login and Remote Create User). Figure 2 The following steps walk through what typically happens when an unauthenticated customer visits shop.clientsite.com (hosted by Digital River) and logs in or purchases and is forced to create an account. This customer would be unauthenticated at the client site as well. Once the customer finishes the shopping experience he may navigate to 1. Unauthenticated customer browses shop.clientsite.com and attempts to: a. Login Digital River sends LoginRequest with loginid ( address), and password. Client validates login, creates unique session token and associates it with the customer id, and returns LoginResponse containing the externalreferenceid to Digital River b. Checkout Digital River gathers customer information and sends CreateUserProfileRequest with loginid ( address), password, and customer information to client. Client validates and creates user, creates unique session token and associates it with the customer id, and returns CreateUserProfileResponse containing the externalreferenceid 2. In both cases Digital River receives the message and updates the Digital River customer information 3. Digital River creates predetermined cookie under domain.clientsite.com and fills with the sessiontoken received in either message 4. Authenticated Digital River customer purchases many, many items and concludes shopping experience. Customer may navigate to 5. Client looks for and reads predetermined cookie under domain.clientsite.com and determines customer user id based on previous association 6. Client proceeds as required 7

8 Elements of Single Sign-On Integrations Remote Session Validation An important element of a seamless single sign-on process is validating a remotely authenticated user. DR initiates this process by searching the http header for a predetermined cookie. This cookie is a remote session token which will allow DR to contact the client and validate the user. Once DR has validated the token and received a corresponding authenticated user id from the client, it instantiates an authenticated user session. Figure 3 Success Checklist Client establishes infrastructure to create and validate unique authenticated user session token Client determines session token cookie name Client creates process to ensure cookie is present when the customer browses to the Digital River hosted site Digital River adds process to look for client session token and generate and post ValidateSessionRequest Client creates test and production Http endpoints to service the ValidateSessionRequest message Client creates process to respond to ValidateSessionRequest with ValidateSessionResponse which contains user key 8

9 Digital River adds process to receive ValidateSessionResponse and establish authenticated user session Digital River adds process to find user key in its user management system or, if not found, creates new user Digital River and Client agree on validation error codes and their meaning Digital River and Client agree on any extended attributes present in the request/response and their meaning 9

10 Remote User Fetch To ensure that current customer information is present during the Digital River shopping experience, DR will request customer information from the client. This request occurs once an authenticated user session has been established and will be used to update DR s profile of the customer. Figure 4 Success Checklist Client establishes infrastructure to validate unique authenticated user session token Digital River adds process to generate and post GetUserProfileRequest Client creates test and production Http endpoints to service the GetUserProfileRequest message Client creates process to respond to GetUserProfileRequest with GetUserProfileResponse Digital River adds process to receive GetUserProfileResponse and update user information Digital River and Client agree on fetch error codes and their meaning Digital River and Client agree on any extended attributes present in the request/response and their meaning 10

11 Remote Login To enable a customer to begin their shopping experience at the Digital River storefront, DR offers a remote login API. Typically an unauthenticated customer visits the storefront and at some point in the shopping process requests to login. At that point, Digital River will validate the customer with the client. Figure 5 Success Checklist Digital River adds process to generate and post LoginRequest Client creates test and production Http endpoints to service the LoginRequest message Client establishes infrastructure to generate unique authenticated user session token Client creates process to respond to LoginRequest with LoginResponse Digital River adds process to receive LoginResponse and, if successful, establishes authenticated user session. If not successful, show error to user Digital River adds process to find user key in its user management system or, if not found, creates new user Digital River and Client agree on login error codes and their meaning Digital River and Client agree on any extended attributes present in the request/response and their meaning Digital River creates Forgot Password link which redirects customer to the client s Forgot Password page Client creates Forgot Password page and corresponding process 11

12 Remote Create User In the case where a customer never logs in and creates a new account during the checkout process, Digital River will forward information about that customer to the client and then create a local user for that customer as well. Figure 6 Success Checklist Digital River adds process to generate and post CreateUserProfileRequest Client creates test and production Http endpoints to service the CreateUserProfileRequest message Client establishes infrastructure to generate unique authenticated user session token Client creates process to respond to CreateUserProfileRequest with CreateUserProfileResponse Digital River adds process to receive CreateUserProfileResponse and, if successful, establishes authenticated user session. If not successful, show error to user Digital River adds process to create new user Digital River and Client agree on creation error codes and their meaning Digital River and Client agree on any extended attributes present in the request/response and their meaning 12

13 User Key Flow The User Key is an important element contained in each Request message and most Response messages. This key allows Digital River to uniquely identify each customer. However, from a schema perspective, the key is made up of several optional elements. The following list captures the ways the Global Commerce platform establishes uniqueness: Digital River User Id - Unique Id Assigned to the Customer in Global Commerce Customer Login Id and Client s Site Id As a customer may use the same login with many of Digital River s clients, the client s site id ensures the login id is unique Client s User Id and Client s Site Id The client must maintain a unique, immutable id for each master user record. That Id coupled with the client s site Id ensures uniqueness Client s User Id and Client s Company Id Much like the previous, this combination allows the use of the client company id instead of the site id In the case of the Single Sign-On Integrations, the required User Key elements are predetermined and not optional. Please use the following chart to better understand the requirements for the User Key in each Single Sign-On Message: Message ValidateSessionRequest ValidateSessionResponse Required UserKey Elements None externalreferenceid, loginid Notes Since the client system has already authenticated the customer, return the immutable, client id plus loginid GetUserProfileRequest externalreferenceid Please use the externalreferenceid to identify the customer in your system GetUserProfileResponse externalreferenceid, loginid LoginRequest loginid Password will also be sent as another element in the message LoginResponse externalreferenceid CreateUserProfileRequest loginid Password will also be sent as another element in the message CreateUserProfileResponse externalreferenceid 13

Egnyte Single Sign-On (SSO) Installation for OneLogin

Egnyte Single Sign-On (SSO) Installation for OneLogin Egnyte Single Sign-On (SSO) Installation for OneLogin To set up Egnyte so employees can log in using SSO, follow the steps below to configure OneLogin and Egnyte to work with each other. 1. Set up OneLogin

More information

PassKey Manager. Schoolwires Centricity

PassKey Manager. Schoolwires Centricity Schoolwires Centricity Table of Contents Introduction... 1 What Provides... 1 What Does Not Provide... 1 Definitions for... 1 Manage PassKeys in Site Manager... 2 Access... 2 Create PassKeys... 2 Create

More information

Table of Contents. 1. Software House Website Login. a. Forgot My Password Recovery Feature. 2. Site Registration. a. Creating Your Account

Table of Contents. 1. Software House Website Login. a. Forgot My Password Recovery Feature. 2. Site Registration. a. Creating Your Account Welcome to the Software House Website Registration Process Guide. This guide has been assembled to provide an overview of the registration process on the Software House website and can be used to help

More information

Work with PassKey Manager

Work with PassKey Manager Work with PassKey Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

Accessing the PMRN [SSO Users]

Accessing the PMRN [SSO Users] Accessing the PMRN [SSO Users] PMRN Website The PMRN site can be accessed through a link on the Single Sign-On portal s home page by public, charter and select private schools or by navigating to www.flode.org/sso

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

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

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

How To Use Saml 2.0 Single Sign On With Qualysguard

How To Use Saml 2.0 Single Sign On With Qualysguard QualysGuard SAML 2.0 Single Sign-On Technical Brief Introduction Qualys provides its customer the option to use SAML 2.0 Single Sign On (SSO) authentication with their QualysGuard subscription. When implemented,

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

FMCS SINGLE SIGN ON Overview and Installation Guide. November 2014. SSO-MNL-v3.0

FMCS SINGLE SIGN ON Overview and Installation Guide. November 2014. SSO-MNL-v3.0 FMCS SINGLE SIGN ON Overview and Installation Guide November 2014 SSO-MNL-v3.0 CONTENTS Introduction... 3 About Single Sign On... 3 Application Architecture... 4 Implementation Checklist... 5 Component...

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

This manual will illustrate how to integrate your WordPress Blog or website with the Docebo Learning Management System.

This manual will illustrate how to integrate your WordPress Blog or website with the Docebo Learning Management System. This manual will illustrate how to integrate your WordPress Blog or website with the Docebo Learning Management System. Direct Log in: The Docebo LMS offers a login box that can be added to you WordPress

More information

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

Frequently Asked Questions (FAQ)

Frequently Asked Questions (FAQ) Frequently Asked Questions (FAQ) (click header to jump to the section of your choice) HOW DO I REGISTER FOR AN ACCOUNT? HOW DO I CHANGE MY PASSWORD? WHY SHOULD I REGISTER FOR AN ACCOUNT? HOW CAN I SET

More information

Western Kentucky University s Promotional Product Web Store. User Guide

Western Kentucky University s Promotional Product Web Store. User Guide Western Kentucky University s Promotional Product Web Store User Guide e0001df 07/01/2010 Guy Brown Promotional s Web Store User Guide This user guide was created to help make your web store experience

More information

PowerSchool. Parent Single Sign-On (SSO)

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

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Portal Recipient Guide

Portal Recipient Guide Portal Recipient Guide Lindenhouse Software Limited 2015 Contents 1 Introduction... 4 2 Account Activation... 4 3 Forgotten Password... 9 4 Document signing... 12 5 Authenticating your Device & Browser...

More information

Egnyte Single Sign-On (SSO) Installation for Okta

Egnyte Single Sign-On (SSO) Installation for Okta w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for Okta To set up Egnyte so employees can log in using SSO, follow the steps below to configure Okta and Egnyte to work with each other.

More information

DocuSign Single Sign On Implementation Guide Published: March 17, 2016

DocuSign Single Sign On Implementation Guide Published: March 17, 2016 DocuSign Single Sign On Implementation Guide Published: March 17, 2016 Copyright Copyright 2003-2016 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents

More information

Using Authorize.net for Credit Card Processing in YogaReg

Using Authorize.net for Credit Card Processing in YogaReg Using Authorize.net for Credit Card Processing in YogaReg 1. Obtain a credit card merchant account. If you already process credit cards via a terminal, you already have one. You can contact your bank,

More information

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Super Resellers Getting Started Guide Page 1 Getting Started Guide: Super Resellers Version 2.1 (1.6.2012) Copyright 2012 All rights reserved. Distribution of this work or derivative

More information

CHARGE Anywhere Universal Shopping Cart

CHARGE Anywhere Universal Shopping Cart CHARGE Anywhere Universal Shopping Cart Version: v1.0.1 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone: + 1 (800)211-1256 Fax: + 1 (732) 417-4448 I. Introduction... 3 II.

More information

Setup Guide for Magento and BlueSnap

Setup Guide for Magento and BlueSnap Setup Guide for Magento and BlueSnap This manual is meant to show you how to connect your Magento store with your newly created BlueSnap account. It will show step-by-step instructions. For any further

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

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

TRIPwire HSIN Federation:

TRIPwire HSIN Federation: TRIPwire HSIN Federation: Reference Guide TRIPwire, in coordination with the Homeland Security Information Network (HSIN), is pleased to announce a federated partnership and the introduction of a single

More information

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Sverview Trust between SharePoint 2010 and ADFS 2.0 Use article Federated Collaboration with Shibboleth 2.0 and SharePoint 2010 Technologies

More information

Siteminder Integration Guide

Siteminder Integration Guide Integrating Siteminder with SA SA - Siteminder Integration Guide Abstract The Junos Pulse Secure Access (SA) platform supports the Netegrity Siteminder authentication and authorization server along with

More information

Ecommerce User s Manual. August 2013

Ecommerce User s Manual. August 2013 Ecommerce User s Manual August 2013 Quantum has launched our new Ecommerce site, which is accessible at www.qtmi.net./shop or by clicking on SHOP from the top navigation options while on Qtmi.net. Start

More information

Welcome (slide 1) Welcome to the Florida Department of Education Single Sign-On tutorial for federated user login and navigation.

Welcome (slide 1) Welcome to the Florida Department of Education Single Sign-On tutorial for federated user login and navigation. LOGIN AND NAVIGATION FOR FEDERATED USERS Welcome (slide 1) Welcome to the Florida Department of Education Single Sign-On tutorial for federated user login and navigation. These tutorials are designed to

More information

Gilmore Global Online Store for. Parts User Guide

Gilmore Global Online Store for. Parts User Guide Gilmore Global Online Store for Parts User Guide Updated: March, 2013 Table of Contents Overview... 3 Landing Page... 3 Shop as a Guest... 3 Create an Account... 4 SELF-REGISTERED USERS - Login with an

More information

Web Application Firewall

Web Application Firewall Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks

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

MyanPay API Integration with Magento CMS

MyanPay API Integration with Magento CMS 2014 MyanPay API Integration with Magento CMS MyanPay Myanmar Soft Gate Technology Co, Ltd. 1/1/2014 MyanPay API Integration with Magento CMS 1 MyanPay API Integration with Magento CMS MyanPay API Generating

More information

AgencyExpress 3.0. A Quick Start Guide to Online Ordering

AgencyExpress 3.0. A Quick Start Guide to Online Ordering AgencyExpress 3.0 A Quick Start Guide to Online Ordering As you go through this training information, please note there are some specific details that you need to be aware of in order to successfully submit

More information

Working with Indicee Elements

Working with Indicee Elements Working with Indicee Elements How to Embed Indicee in Your Product 2012 Indicee, Inc. All rights reserved. 1 Embed Indicee Elements into your Web Content 3 Single Sign-On (SSO) using SAML 3 Configure an

More information

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 7 January 2016 SPBM Summary of Changes, 7 January 2016 Summary of Changes, 7 January 2016 This

More information

Deploying RSA ClearTrust with the FirePass controller

Deploying RSA ClearTrust with the FirePass controller Deployment Guide Deploying RSA ClearTrust with the FirePass Controller Deploying RSA ClearTrust with the FirePass controller Welcome to the FirePass RSA ClearTrust Deployment Guide. This guide shows you

More information

HP Software as a Service. Federated SSO Guide

HP Software as a Service. Federated SSO Guide HP Software as a Service Federated SSO Guide Document Release Date: July 2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying

More information

CAL Store Quick Reference Guide

CAL Store Quick Reference Guide CAL Store Quick Reference Guide CAL has partnered with a company that specializes in providing support services with the goal of enhancing online security and our order management and fulfillment services

More information

How to pull content from the PMP into Core Publisher

How to pull content from the PMP into Core Publisher How to pull content from the PMP into Core Publisher Below you will find step-by-step instructions on how to set up pulling or retrieving content from the Public Media Platform, or PMP, and publish it

More information

Single Sign-on Frequently Asked Questions

Single Sign-on Frequently Asked Questions Single Sign-on Frequently Asked Questions Q1. What is Single Sign-on? Q2. How does SSO work? Q3. How do I access the SSO portal? Q4. Where can I find help on how to use the SSO portal? Q5. How do I reset

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

ONSITE TRACK EASY Yancoal Contractor Management Portal Portal User Guide: Company Registration. Yancoalcontractors.com.

ONSITE TRACK EASY Yancoal Contractor Management Portal Portal User Guide: Company Registration. Yancoalcontractors.com. ONSITE TRACK EASY Yancoal Contractor Management Portal Portal User Guide: Company Registration Yancoalcontractors.com.au 1300 663 816 CONTENTS Navigate to the Yancoal Contractor Management Portal... 3

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

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

Copyright: WhosOnLocation Limited

Copyright: WhosOnLocation Limited How SSO Works in WhosOnLocation About Single Sign-on By default, your administrators and users are authenticated and logged in using WhosOnLocation s user authentication. You can however bypass this and

More information

Social Application Guide

Social Application Guide Social Application Guide Version 2.2.0 Mar 2015 This document is intent to use for our following Magento Extensions Or any other cases it might help. Copyright 2015 LitExtension.com. All Rights Reserved

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

Single Sign On Requirements

Single Sign On Requirements Single Sign On Requirements Updated August 23, 2010 Table of Contents 1 Vision... 2 2 Implementation... 2 2.1 Individual users: October Implementation... 2 2.2 Business users: November Implementation...

More information

Please see detailed instructions on the entire Housing Online Process below!!

Please see detailed instructions on the entire Housing Online Process below!! 1 FAMU HOUSING ONLINE APPLICATION PROCESS FAMU Housing application process is online. This process will allow you to first, apply for housing online through your irattler account by selecting a term and

More information

Ameritas Single Sign-On (SSO) and Enterprise SAML Standard. Architectural Implementation, Patterns and Usage Guidelines

Ameritas Single Sign-On (SSO) and Enterprise SAML Standard. Architectural Implementation, Patterns and Usage Guidelines Ameritas Single Sign-On (SSO) and Enterprise SAML Standard Architectural Implementation, Patterns and Usage Guidelines 1 Background and Overview... 3 Scope... 3 Glossary of Terms... 4 Architecture Components...

More information

End User Guide. Version 2.8.0

End User Guide. Version 2.8.0 End User Guide Version 8.0 Table of Contents About this Guide... 5 Using this Manual... 5 Audience... 5 RedCarpet Overview... 6 What is RedCarpet?... 6 Who Uses RedCarpet?... 6 How Do I Get Started?...

More information

Instructions for Creating or Validating Your Cana Online Account

Instructions for Creating or Validating Your Cana Online Account Instructions for Creating or Validating Your Cana Online Account We are excited about our new online shop! Click http://canavineyards.com/website-update/ if you want to know more about what our online

More information

Remedy ITSM Service Request Management Quick Start Guide

Remedy ITSM Service Request Management Quick Start Guide Remedy ITSM Service Request Management Quick Start Guide Table of Contents 1.0 Getting Started With Remedy s Service Request Management. 3 2.0 Submitting a Service Request.7 3.0 Updating a Service Request

More information

Jackson Systems E-commerce Guide

Jackson Systems E-commerce Guide Accessing E-commerce To access the e-commerce feature, go to jacksonsystems.com and click on Contractor Login in the upper right hand corner. If you do not have a username and password, you can request

More information

Getting Started with Clearlogin A Guide for Administrators V1.01

Getting Started with Clearlogin A Guide for Administrators V1.01 Getting Started with Clearlogin A Guide for Administrators V1.01 Clearlogin makes secure access to the cloud easy for users, administrators, and developers. The following guide explains the functionality

More information

Joining a Meeting. Before You Join a Meeting

Joining a Meeting. Before You Join a Meeting When a meeting host schedules a meeting or starts an instant meeting by using the Meet Now option, the host and all invitees receive an email invitation with the meetings details. When it's time to join

More information

itds OAuth Integration Paterva itds OAuth Integration Building and re-using OAuth providers within Maltego 2014/09/22

itds OAuth Integration Paterva itds OAuth Integration Building and re-using OAuth providers within Maltego 2014/09/22 Paterva itds OAuth Integration itds OAuth Integration Building and re-using OAuth providers within Maltego AM 2014/09/22 Contents Maltego OAuth Integration... 3 Introduction... 3 OAuth within the Maltego

More information

Ordering Textbooks Online through the LCCC Bookstore

Ordering Textbooks Online through the LCCC Bookstore Ordering Textbooks Online through the LCCC Bookstore The following instructions will walk you through purchasing your textbooks online through the LCCC Bookstore. For a flat shipping rate, the LCCC bookstore

More information

USERS GUIDE. How to acquire an Associate Digital Identity Certificates from the ica Identity Authority and Configure MAS

USERS GUIDE. How to acquire an Associate Digital Identity Certificates from the ica Identity Authority and Configure MAS USERS GUIDE How to acquire an Associate Digital Identity Certificates from the ica Identity Authority and Configure MAS Introduction This guide describes how an authorized Bank of America Associate may

More information

How To Shop In Yomart

How To Shop In Yomart Yo-Mart Training Manual Requestor/Shopper Login url: http://www.appleap.appstate.edu/yomart_home.html You may also access Yo Mart on the Appleap website by clicking on System Access and then Yo Mart Shopping.

More information

These instructions will allow you to configure your computer to install necessary software to access mystanwell.com.

These instructions will allow you to configure your computer to install necessary software to access mystanwell.com. HOW TO: ACCESS MYSTANWELL.COM USING WINDOWS WITH MOZILLA FIREFOX What is mystanwell.com? The remote access web site called mystanwell.com allows staff to access Stanwell applications via the Internet using

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

Using SAML for Single Sign-On in the SOA Software Platform

Using SAML for Single Sign-On in the SOA Software Platform Using SAML for Single Sign-On in the SOA Software Platform SOA Software Community Manager: Using SAML on the Platform 1 Policy Manager / Community Manager Using SAML for Single Sign-On in the SOA Software

More information

Mashup Sites for SharePoint 2007 Authentication Guide. Version 3.1.1

Mashup Sites for SharePoint 2007 Authentication Guide. Version 3.1.1 Mashup Sites for SharePoint 2007 Authentication Guide Version 3.1.1 Copyright Copyright 2010-2011, JackBe Corp. and its affiliates. All rights reserved. Terms of Use This documentation may be printed and

More information

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved. Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,

More information

Mashup Sites for SharePoint 2007 Authentication Guide. Version 3.2.1

Mashup Sites for SharePoint 2007 Authentication Guide. Version 3.2.1 Mashup Sites for SharePoint 2007 Authentication Guide Version 3.2.1 Copyright Copyright 2012, JackBe Corp. and its affiliates. All rights reserved. Terms of Use This documentation may be printed and copied

More information

Safewhere*Identify 3.4. Release Notes

Safewhere*Identify 3.4. Release Notes Safewhere*Identify 3.4 Release Notes Safewhere*identify is a new kind of user identification and administration service providing for externalized and seamless authentication and authorization across organizations.

More information

Barry L. Zimmerman, Director Ventura County Human Services Agency

Barry L. Zimmerman, Director Ventura County Human Services Agency Barry L. Zimmerman, Director Ventura County Human Services Agency Introducing Foster Health Link Caregiver participation in focus groups and system testing prior to implementation Targeted communication

More information

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR User Guide for the RightFax Fax Service Web Utility August 2011 CONTENTS 1. Accessing the Web Utility 2. Change Password 3. Web Utility:

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

To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to work with each other.

To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to work with each other. w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for VMware Horizon To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to

More information

Trainer Resource ~ Suggesting a dotfit Me Program Subscription

Trainer Resource ~ Suggesting a dotfit Me Program Subscription Benefit of suggesting a dotfit Me subscription vs. a 14 Day Trial dotfit Me Subscription 14 Day Trial - Initial 30 days are free - 14 days free - No steps required to maintain subscriber - Conversion to

More information

Taylor & Francis Online Mobile FAQs

Taylor & Francis Online Mobile FAQs Taylor & Francis Online Mobile FAQs ACCESS Q. How do I access Taylor & Francis Online Mobile? A. Open the browser on your mobile device and enter the URL www.tandfonline.com. As you are accessing the site

More information

Sinclair Dental Home Page

Sinclair Dental Home Page Sinclair Dental Home Page Welcome to our Online Store guide. This guide will walk you through the online ordering process as well as highlight many of the features and benefits of our site. Please go to

More information

How To Use Web@Work On A Pc Or Macbook Online (For Pc) On A Macbook Or Ipa (For Macbook) On Pc Or Ipad (For Ipa) On An Pc Or Pc Or Aiphone (

How To Use Web@Work On A Pc Or Macbook Online (For Pc) On A Macbook Or Ipa (For Macbook) On Pc Or Ipad (For Ipa) On An Pc Or Pc Or Aiphone ( web@work Introduction to online ordering Log into web@work The web address for web@work is: http://online.waxie.com Enter your User Name and Password, click Login. Shipping Location Choose the appropriate

More information

Paya Card Services Payment Gateway Extension. Magento Extension User Guide

Paya Card Services Payment Gateway Extension. Magento Extension User Guide Paya Card Services Payment Gateway Extension Magento Extension User Guide Table of contents: 1. 2. 3. 4. 5. How to Install..3 General Settings......8 Use as Payment option..........10 Success View..........

More information

Remote Authentication and Single Sign-on Support in Tk20

Remote Authentication and Single Sign-on Support in Tk20 Remote Authentication and Single Sign-on Support in Tk20 1 Table of content Introduction:... 3 Architecture... 3 Single Sign-on... 5 Remote Authentication... 6 Request for Information... 8 Testing Procedure...

More information

Oracle Procurement. Punchout and Transparent Punchout Guide for Oracle iprocurement and Oracle Exchange Release 11i. Part No.

Oracle Procurement. Punchout and Transparent Punchout Guide for Oracle iprocurement and Oracle Exchange Release 11i. Part No. Oracle Procurement Punchout and Transparent Punchout Guide for Oracle iprocurement and Oracle Exchange Release 11i Part No. A92190-03 April 2003 Oracle Procurement Punchout and Transparent Punchout Guide

More information

How To Set Up A Xerox Econcierge Powered By Xerx Account

How To Set Up A Xerox Econcierge Powered By Xerx Account Xerox econcierge Account Setup Guide Xerox econcierge Account Setup Guide The free Xerox econcierge service provides the quickest, easiest way for your customers to order printer supplies for all their

More information

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide

Microsoft Dynamics GP 2010. SQL Server Reporting Services Guide Microsoft Dynamics GP 2010 SQL Server Reporting Services Guide April 4, 2012 Copyright Copyright 2012 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

Contents Release Notes... ... 3 System Requirements... ... 4 Administering Jive for Office... ... 5

Contents Release Notes... ... 3 System Requirements... ... 4 Administering Jive for Office... ... 5 Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Administering Jive for Office... 5 Getting Set Up...5 Installing the Extended API JAR File... 5 Updating Client Binaries...5 Client

More information

Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0

Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0 Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0 Contents Introduction... 3 Endpoint deployment... 3 Endpoint minimal hardware requirements:... 3 Endpoint software requirements:...

More information

Nationwide Marketing Storefront Guide

Nationwide Marketing Storefront Guide Nationwide Marketing Storefront Guide Table of Contents I. Introduction... 2 Marketing Storefront Overview... 2 Benefits of Marketing Storefront... 2 Features of Marketing Storefront... 2 Accessing Marketing

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

SAP NetWeaver AS Java

SAP NetWeaver AS Java Chapter 75 Configuring SAP NetWeaver AS Java SAP NetWeaver Application Server ("AS") Java (Stack) is one of the two installation options of SAP NetWeaver AS. The other option is the ABAP Stack, which is

More information

Allied Marketing Storefront Guide

Allied Marketing Storefront Guide Allied Marketing Storefront Guide Table of Contents I. Introduction... 2 Marketing Storefront Overview... 2 Benefits of Marketing Storefront... 2 Features of Marketing Storefront... 2 Accessing Marketing

More information

DaRIS portal visual user guide

DaRIS portal visual user guide DaRIS portal visual user guide In this guide, we show some basic operations that you can do with DaRIS portal. Login / logout To access to the portal, click on this link https://mf-erc.its.monash.edu.au:8443/daris

More information

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce

for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce for Salesforce CRM INSTALLATION GUIDE February 2011 www.crm.hoovers.com/salesforce Table of Contents Before You Begin... 3 First Time Installing Access Hoover s... 3 Updating Access Hoover s... 3 Note

More information

SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION

SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION SOLGARI CLOUD BUSINESS COMMUNICATION SERVICES CLOUD CONTACT CENTRE MICROSOFT DYNAMICS INTEGRATION APRIL 2015 Microsoft Dynamics CRM Integration The Solgari CRM Integration module provides out of the box

More information

INTEGRATION GUIDE. DIGIPASS Authentication for Salesforce using IDENTIKEY Federation Server

INTEGRATION GUIDE. DIGIPASS Authentication for Salesforce using IDENTIKEY Federation Server INTEGRATION GUIDE DIGIPASS Authentication for Salesforce using IDENTIKEY Federation Server Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is

More information

Business Banking Customer Login Experience for Enhanced Login Security

Business Banking Customer Login Experience for Enhanced Login Security Business Banking Customer Login Experience for Enhanced Login Security User credentials uniquely identify each person who uses the banking platform. The intent of authentication is unequivocal verification

More information

TeamViewer 9 Manual Management Console

TeamViewer 9 Manual Management Console TeamViewer 9 Manual Management Console Rev 9.2-07/2014 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of Contents 1 About the TeamViewer Management Console... 4 1.1 About the

More information

Setting Up Solar Web Commerce. Release 8.6.9

Setting Up Solar Web Commerce. Release 8.6.9 Setting Up Solar Web Commerce Release 8.6.9 Legal Notices 2011 Epicor Software Corporation. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Epicor and the Epicor logo

More information