Does anyone have experience using shibboleth and coldfusion?
We’re looking into using SSO for one of our sites but I have no experience with it. I’m working with someone on campus but he doesn’t know coldfusion.
Primarily, I’m interested in how to access the shibboleth variables being passed along.
Any help is appreciated,
Alli
Alli Hearne
Asst. Network Administrator
University of North Carolina
Dept. of Family Medicine
--
Upcoming events: http://www.meetup.com/Triangle-Area-ColdFusion-Users-Group/
Follow us on Twitter: @tacfug
---
You received this message because you are subscribed to the Google Groups "TACFUG" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tacfug+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
--
Upcoming events: http://www.meetup.com/Triangle-Area-ColdFusion-Users-Group/
Follow us on Twitter: @tacfug
---
You received this message because you are subscribed to the Google Groups "TACFUG" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tacfug+unsubscribe@googlegroups.com.
John,
We had to put this project on indefinite hold while we focused on other projects, so the answer is no.
We hope to pick this project up in the near future. I was able to get a response from someone about the variables. Here’s what they sent me (specific to my environment). Sorry I couldn’t be more helpful. Hope this helps:
Generally for coldfusion you can use something like CGI.SHIB_AFFILIATION. REMOTE_USER will give you the ON...@unc.edu.
I get the onyen as #uid#, as seen below:
<cflogin>
<cfif IsDefined("remote_user")>
<cfquery name="getuserinfo" datasource="#APPLICATION.datasource#">
SELECT user_level, user_onyen, user_ID
FROM users
WHERE user_onyen = '#uid#'
</cfquery>
<cfif getuserinfo.recordCount eq 1>
<cfloginuser
name="#uid#"
password=""
roles="#getuserinfo.user_level#">
<cfset SESSION.auth = structNew()>
<cfset SESSION.auth.onyen = uid>
<cfset SESSION.auth.role = getuserinfo.user_level>
<cfelse>
<p>Sorry, you are not authorized to access this application. Please try again.</p>
<cfabort>
</cfif>
<cfelse>
<p>Sorry, you are not logged in to this application. Please try again.</p>
<cfabort>
</cfif>
</cflogin>
--
Upcoming events: http://www.meetup.com/Triangle-Area-ColdFusion-Users-Group/
Follow us on Twitter: @tacfug
---
You received this message because you are subscribed to the Google Groups "TACFUG" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tacfug+un...@googlegroups.com.
Thanks Alli,
Once I find a solution I will post it.
Thanks
You received this message because you are subscribed to a topic in the Google Groups "TACFUG" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tacfug/3s5jlI0xOS4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tacfug+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.