4
votes
2answers
463 views

How to single sign on services work?

If I have 10 websites, how can I create a single-sign-on such that if they login to any of the 10 websites, going to the other websites automatically detects they are logged in and logs them in. How ...
1
vote
2answers
380 views

Authenticating (setting cookies) on 2 seperate domains

I'd appreciate any thoughts/insight any of you might have on this... I have two domains running the same applications e.g. mysite.com and mysite.org and I have a requirement that when a user logs ...
2
votes
1answer
188 views

Single logon with different applications approach ruby on rails

What would be the best approach in the following situation: Main application that handles authentication of users (preferably Devise). Several different applications that can access user database ...
1
vote
1answer
45 views

How to pass devise sign_in information into different application with rails

I have 3 applications which need to talk to each other using a combination of SSO, https and devise for authentication. What I'm trying to figure out is how to perform a sign in on one rails ...
1
vote
1answer
1k views

Does Ruby CAS server provides restful interface for opening sessions, obtaining service tickets?

I have installed Ruby CAS server and my application is a simple Restful Authentication User Management Application , i would to like experiment my application by providing a Central Authentication ...
0
votes
1answer
84 views

Single Sign On for one Rails application on many domains

We are having one application that runs on one base domain. Application resolves where the traffic is coming, which means we have multiple domains (www.example.com, www.something.com...), but in ...
0
votes
1answer
34 views

Rails API for Federated ID

I am looking for a Rails API for a federated id service or cloud sso. I've been playing around with the idea. Of CAS and omniauth but for an enterprise-ish app it would be better if it could auth ...
0
votes
1answer
391 views

Rails Sessions and SiteMinder/SSO

I am integrating Rails with my company's SSO system. I have the SiteMinder Apache module installed and enabled on my server. The Rails application inspects the request object in a before_filter to ...
1
vote
0answers
32 views

shared auth (single sign-on) across app based on different rails versions

Currently I develop new app for my customer and need to integrate it with the old one. My current app based on Ruby 1.9.3 and latest Rails version. Old app written on Ruby 1.8.7 and something like ...
1
vote
0answers
46 views

SSO from VB.NET web application to ROR web site

I am supporting a website that is built on ruby on rails . Now there is another web application on VB.NET in which one link to be provided that will seamlessly lead the authenticated users of ROR ...
1
vote
0answers
140 views

Single Sign On with OpenID for Google Apps Marketplace App: openid_identifier parameter

I've created an App for the Google Apps Marketplace and need to integrate Single Sign On with OpenID. After installing the App, the link to our App is: ...
1
vote
0answers
274 views

SSO and Rails Sessions

I'm currently integrating my company's SSO solution with my Rails 3.1.3 application. I'm using Apache with the company's SiteMinder module enabled to do this. SiteMinder re-routes the request based ...
0
votes
0answers
15 views

use old version of devise 1.1.7 on ruby 1.9.3 and rails 3.2.11 or connect it with new version via sso

I need to integrate old app which use devise 1.1.7 and rails 3.0.4 with modern app based on rails 3.2.11 via SSO. Anybody could advice how to do that? Currently when I try to open the page on the new ...
0
votes
0answers
105 views

Rails and Wordpress log in integration

I have a Ruby on Rails app with an existing users table in a MySQL database with name, email, and password_digest columns. The password digest column is created with bcrypt and has_secure_password. ...