Discussion:
I am Looking for freelance. To configure the my shibboleth sp .
miki8757
2014-08-28 05:28:06 UTC
Permalink
Hi


I am Looking for freelance. To configure the my shibboleth sp .


I installed the Shibboleth on server2008 with IIS7.
I've made the necessary settings on the server (DNS and CER) and in
shibboleth.xml
Also I've set up one IDP.

Shibboleth server should function only to authentication
Then it should redirect to another server with a parameter of email.

need help via teamviewr to finish config the sp .
I would be grateful if you could send me a quote for this job.

my email is miki8757-***@public.gmane.org



--
View this message in context: http://shibboleth.1660669.n2.nabble.com/I-am-Looking-for-freelance-To-configure-the-my-shibboleth-sp-tp7606140.html
Sent from the Shibboleth - Users mailing list archive at Nabble.com.
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org
Dave Perry
2014-08-28 08:50:59 UTC
Permalink
I'm assuming the IdP can be set to send the email address to the SP as an attribute (called mail by default I think) and you're ok configuring the attribute-map to listen for this attribute.

I have setup something that acts on a shibboleth attribute, which you might find of interest:
Our library catalogue site supports shibboleth - but there are two sites, one for two of our colleges and one for another.
So I setup something (at http://oursite.ourdomain.ac.uk/secure/) - secure is set to be forced shibboleth login.
Index.php in that /secure folder looks at the attributes - in this case, it checks the org-dn one to see which site a user is based at (as this is stored in their network profile and the Idp releases that attribute). If org-dn = site B, it does a redirect to site B's catalogue site - otherwise it just sends them to the main one.
So in theory you could setup a /secure folder that is force protected by shibboleth, and in your index.php make it do the following:
- look at the email address attribute (mail I think), I do this as a header (e.g. $_SERVER['mail'] in PHP)
- build a url including it (e.g. http://yoursite.yourdomain.com/sitetoredirecto/?mail=emailaddressfromattribute )
- redirect to it (PHP code: header("Location: urltoredirectto"); )

Or do it in ASP if you're happier as it's IIS - I'm just quicker at PHP so prefer to use that always.

HTH
_________________________________________________
Dave Perry
eLearning Technologist, Hull College Group

Room L34 - Queens Gardens Library
Wilberforce Drive, Queen's Gardens, Hull, HU1 3DG
Extension 2230 / Direct Dial 01482 381930

* Need a fast reply? Try elearning-NOSDTyrR4+***@public.gmane.org *

-----Original Message-----
From: users-bounces-***@public.gmane.org [mailto:users-bounces-***@public.gmane.org] On Behalf Of miki8757
Sent: 28 August 2014 06:28
To: users-***@public.gmane.org
Subject: I am Looking for freelance. To configure the my shibboleth sp .

Hi


I am Looking for freelance. To configure the my shibboleth sp .


I installed the Shibboleth on server2008 with IIS7.
I've made the necessary settings on the server (DNS and CER) and in shibboleth.xml Also I've set up one IDP.

Shibboleth server should function only to authentication Then it should redirect to another server with a parameter of email.

need help via teamviewr to finish config the sp .
I would be grateful if you could send me a quote for this job.

my email is miki8757-***@public.gmane.org



--
View this message in context: http://shibboleth.1660669.n2.nabble.com/I-am-Looking-for-freelance-To-configure-the-my-shibboleth-sp-tp7606140.html
Sent from the Shibboleth - Users mailing list archive at Nabble.com.
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org

**********************************************************************
This message is sent in confidence for the addressee
only. It may contain confidential or sensitive
information. The contents are not to be disclosed
to anyone other than the addressee. Unauthorised
recipients are requested to preserve this
confidentiality and to advise us of any errors in
transmission. Any views expressed in this message
are solely the views of the individual and do not
represent the views of the College. Nothing in this
message should be construed as creating a contract.

Hull College owns the email infrastructure, including the contents.

Hull College is committed to sustainability, please reflect before printing this email.
**********************************************************************

TEXT
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org
Cantor, Scott
2014-08-28 14:51:58 UTC
Permalink
Post by Dave Perry
Our library catalogue site supports shibboleth - but there are two sites,
one for two of our colleges and one for another.
So I setup something (at http://oursite.ourdomain.ac.uk/secure/) - secure
is set to be forced shibboleth login.
Index.php in that /secure folder looks at the attributes - in this case,
it checks the org-dn one to see which site a user is based at (as this is
stored in their network profile and the Idp releases that attribute). If
org-dn = site B, it does a redirect to site B's catalogue site -
otherwise it just sends them to the main one.
Sure, but why couldn't I just go directly to them? If they're different
servers, there's no security involved with the Shibboleth portion that's
impacting the eventual destination.

-- Scott
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org
Dave Perry
2014-08-28 15:21:35 UTC
Permalink
All 3 sites (/secure, /HeritageScripts and /HarrogateScripts) are on the same 'site' in IIS so same server.
/secure is forced auth, the other two will use the Shibboleth-passed attributes from headers if a login session is present (so you can browse the site without having to login, but being logged in gives you useful features like renewing books and seeing what you have out on loan).

Shame the last upgrade, by 0.1 of a version, broke this feature (I've confirmed Shibboleth attributes are picked up by the two paths in question, and that the Heritage Online program settings match the older one, so it's something to do with the webapp itself I reckon).

Dave

_________________________________________________
Dave Perry
eLearning Technologist, Hull College Group

Room L34 - Queens Gardens Library
Wilberforce Drive, Queen's Gardens, Hull, HU1 3DG
Extension 2230 / Direct Dial 01482 381930

* Need a fast reply? Try elearning-NOSDTyrR4+***@public.gmane.org *


-----Original Message-----
From: users-bounces-***@public.gmane.org [mailto:users-bounces-***@public.gmane.org] On Behalf Of Cantor, Scott
Sent: 28 August 2014 15:52
To: Shib Users
Subject: Re: I am Looking for freelance. To configure the my shibboleth sp .
Post by Dave Perry
Our library catalogue site supports shibboleth - but there are two
sites, one for two of our colleges and one for another.
So I setup something (at http://oursite.ourdomain.ac.uk/secure/) -
secure is set to be forced shibboleth login.
Index.php in that /secure folder looks at the attributes - in this
case, it checks the org-dn one to see which site a user is based at (as
this is stored in their network profile and the Idp releases that
attribute). If org-dn = site B, it does a redirect to site B's
catalogue site - otherwise it just sends them to the main one.
Sure, but why couldn't I just go directly to them? If they're different servers, there's no security involved with the Shibboleth portion that's impacting the eventual destination.

-- Scott

--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org

**********************************************************************
This message is sent in confidence for the addressee
only. It may contain confidential or sensitive
information. The contents are not to be disclosed
to anyone other than the addressee. Unauthorised
recipients are requested to preserve this
confidentiality and to advise us of any errors in
transmission. Any views expressed in this message
are solely the views of the individual and do not
represent the views of the College. Nothing in this
message should be construed as creating a contract.

Hull College owns the email infrastructure, including the contents.

Hull College is committed to sustainability, please reflect before printing this email.
**********************************************************************

TEXT
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org
Cantor, Scott
2014-08-28 15:26:06 UTC
Permalink
Post by Dave Perry
All 3 sites (/secure, /HeritageScripts and /HarrogateScripts) are on the
same 'site' in IIS so same server.
That's different, yes. When the OP says "redirect to another server", I'm
assuming they mean the usual.
Post by Dave Perry
/secure is forced auth, the other two will use the Shibboleth-passed
attributes from headers if a login session is present (so you can browse
the site without having to login, but being logged in gives you useful
features like renewing books and seeing what you have out on loan).
Sure, that's routine.

-- Scott
--
To unsubscribe from this list send an email to users-unsubscribe-***@public.gmane.org
Loading...