Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Org.eclipse.higgins.rpps"

(OpenID 2.0 Support)
(Sign-on Confirmation Notify)
Line 38: Line 38:
 
===Sign-on Confirmation Notify===
 
===Sign-on Confirmation Notify===
  
  // Locate the URIICard-type I-Card whose URI matches 'cref'. Find the
+
  // Locate the URIICard-type I-Card whose URI matches 'cref'. If no such
 +
// card exists, create it. Find the
 
  // Digital Subject whose unique identifier is 'cuid'. On the uniqueIdentifier
 
  // Digital Subject whose unique identifier is 'cuid'. On the uniqueIdentifier
 
  // attribute value itself: (1) if 'success' is true, add/update to "now" the
 
  // attribute value itself: (1) if 'success' is true, add/update to "now" the

Revision as of 00:27, 14 December 2006


Overview

Provides support for Higgins clients, including the Higgins Browser Extension.

Token-based Authentication

  • Get a Digital Identity
// Get a DigitalIdentity that will satisfy the RP agent's policy
// Return a DigitalIdentity token
DigitalIdentity getDigitalIdentity(RPSPolicy policy)

When the user's browser with the Higgins extension lands on a site that requires a Digital Identity for authentication, HBX sends a 'getDigitalIdentity' request to RP Protocol Support passing the RP Policy along as a parameter. RP Protocol Support uses I-Card Selector Service to get the list of all of the users cards (as well as the degree to which they match the RP policy). It packages up all the graphical and other information required to display the I-Card selector UI and sends this to either the ISS Web UI or the ISS Client UI component. After the user selects an I-Card, the ISS Web UI or ISS Client UI returns the selection, retreives the I-Card and uses its metadata appropriately to retreive either a security token or a connection to an IdAS Context.

Connection to Higgins Client

  • Create a new account on the Higgins service registered to the client (e.g. HBX)
  • Verification of HBX authentication
  • Returns the Terms of Service of the Higgins service (human readable text document)

HTML form filling

  • If there is a form filling script for the current page&site, retreive data from the appropriate I-Card, and pass this data along with the script the client (e.g. HBX) so that the client can fill in forms on that page

HTML scraping

  • If there is an HTML scraping script for the current page&site, pass it to client (e.g. HBX) and retreive from client attribute data that RP Protocol Support can store in a site-specific IdASCard I-Card

RSS+SSE Support

  • Acquire a card
// acquire the RSS feed from the RP site and then 
// create a new (site-specific) I-Card whose attributes are defined in the feed
acquireICard(String subscribeURL)
  • Create an RSS-SSE feed that publishes the minimal subset of attributes required/supported by the RP site from the appropriate I-Card. If available, subscribe to a reverse RSS-SSE feed and use the data to update the a site-specific Card I-Card.

OpenID 2.0 Support

  • <to be written>

Sign-on Confirmation Notify

// Locate the URIICard-type I-Card whose URI matches 'cref'. If no such 
// card exists, create it. Find the
// Digital Subject whose unique identifier is 'cuid'. On the uniqueIdentifier
// attribute value itself: (1) if 'success' is true, add/update to "now" the
// the lastVerifiedFromSource metadata property's timestamp and
// (2) add/update the lastVerifiedAttempt metadata property's timestamp
// to "now".
void connectionNotify(ContextRef cref, String cuid, boolean success)
  • The Higgins browser extension invokes this method after it has attempted to use the username 'cuid' at the website 'cref' with the password (retrieved from the browser's password manager) along with a HTML scraping script retrieved from RP Protocol Support to sign in to this site.

See Also

Back to the top