Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions etc/cas/config/attribute-map-prod.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,13 @@
<!-- Washington University in St. Louis (WUSTL) -->
<Attribute name="urn:oid:1.3.6.1.4.1.14519.1.1" id="institutionalidentity"/>

<!-- Washington State University -->
<Attribute name="urn:oid:1.3.6.1.4.1.5923.1.1.1.6" id="login"/> <!-- eppn? -->
Comment thread
cslzchen marked this conversation as resolved.
Outdated
<!-- ldapiness ensues... -->
<Attribute name="urn:oid:0.9.2342.19200300.100.1.3" id="email"/>
<Attribute name="urn:oid:2.5.4.42" id="firstName"/>
<Attribute name="urn:oid:2.5.4.4" id="lastName"/>
<Attribute name="urn:oid:2.16.840.1.113730.3.1.241" id="displayName"/>
Comment thread
cslzchen marked this conversation as resolved.
Outdated
<Attribute name="urn:oid:2.5.4.11" id="department"/>
Comment thread
cslzchen marked this conversation as resolved.
Outdated

</Attributes>
15 changes: 14 additions & 1 deletion etc/cas/config/instn-authn-prod.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
</user>
</xsl:when>
<!-- Harvard University (HARVARD) -->
<xsl:when test="$idp='http://www.okta.com/exk1xrjz6q65XDb2J1d8 '">
<xsl:when test="$idp='http://www.okta.com/exk1xrjz6q65XDb2J1d8'">
Comment thread
cslzchen marked this conversation as resolved.
<id>harvard</id>
<user>
<username><xsl:value-of select="//attribute[@name='mail']/@value"/></username>
Expand Down Expand Up @@ -895,6 +895,19 @@
<eduPerson>false</eduPerson>
</user>
</xsl:when>
<!-- Washington State University (WSU) -->
<xsl:when test="$idp='http://www.okta.com/exk196cuygihbtIwD2p8'">
Comment thread
cslzchen marked this conversation as resolved.
<id>wsu</id>
<user>
<username><xsl:value-of select="//attribute[@name='mail']/@value"/></username>
<fullname><xsl:value-of select="//attribute[@name='displayname']/@value"/></fullname>
<familyName><xsl:value-of select="//attribute[@name='lastName']/@value"/></familyName>
<givenName><xsl:value-of select="//attribute[@name='firstName']/@value"/></givenName>
Comment thread
cslzchen marked this conversation as resolved.
Outdated
<middleNames/>
<departmentRaw><xsl:value-of select="//attribute[@name='department']/@value"/></departmentRaw>
Comment thread
cslzchen marked this conversation as resolved.
Outdated
<suffix/>
</user>
</xsl:when>
<!-- Washington University in St. Louis (WUSTL) -->
<xsl:when test="$idp='https://login.wustl.edu/idp/shibboleth'">
<id>wustl</id>
Expand Down
6 changes: 6 additions & 0 deletions etc/cas/config/shibboleth2-prod.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@
backingFilePath="vua-prod-idp-metadata.xml"
reloadInterval="180000" />

<!-- Washington State University (WSU) -->
<MetadataProvider type="XML"
uri="https://login.wsu.edu/app/exk196cuygihbtIwD2p8/sso/saml/metadata"
Comment thread
cslzchen marked this conversation as resolved.
backingFilePath="wsu-prod-idp-metadata.xml"
reloadInterval="180000" />
Comment thread
cslzchen marked this conversation as resolved.
Outdated

<!-- Here is the end of non-InCommon/eduGAIN IdPs. Current total: 9 unique provider and 9 institutions. -->

<!-- Here goes all InCommon/eduGAIN IdPs, all of which are production IdP server using the MDQ service -->
Expand Down
Loading