X-Git-Url: https://repo.niif.hu/gitweb/gitweb.cgi?p=java-idp.git;a=blobdiff_plain;f=src%2Fedu%2Finternet2%2Fmiddleware%2Fshibboleth%2Fidp%2Fprofile%2Fsaml1%2FShibbolethSSOProfileHandler.java;h=da1ab1fdf023ccbdd193596c00201dd91274c5db;hp=80b401048cd8602c6f1b19209ca1020cd115350c;hb=08c7c0b00787e80db6c5cabde59d6b327109826f;hpb=5b004103cd64eaf4740d9d1845593b9cf905022e diff --git a/src/edu/internet2/middleware/shibboleth/idp/profile/saml1/ShibbolethSSOProfileHandler.java b/src/edu/internet2/middleware/shibboleth/idp/profile/saml1/ShibbolethSSOProfileHandler.java index 80b4010..da1ab1f 100644 --- a/src/edu/internet2/middleware/shibboleth/idp/profile/saml1/ShibbolethSSOProfileHandler.java +++ b/src/edu/internet2/middleware/shibboleth/idp/profile/saml1/ShibbolethSSOProfileHandler.java @@ -183,6 +183,8 @@ public class ShibbolethSSOProfileHandler extends AbstractSAML1ProfileHandler { HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest(); ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext(); + requestContext.setCommunicationProfileId(getProfileId()); + requestContext.setMetadataProvider(getMetadataProvider()); requestContext.setSecurityPolicyResolver(getSecurityPolicyResolver()); @@ -282,6 +284,7 @@ public class ShibbolethSSOProfileHandler extends AbstractSAML1ProfileHandler { protected ShibbolethSSORequestContext buildRequestContext(ShibbolethSSOLoginContext loginContext, HTTPInTransport in, HTTPOutTransport out) throws ProfileException { ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext(); + requestContext.setCommunicationProfileId(getProfileId()); requestContext.setMessageDecoder(getMessageDecoders().get(getInboundBinding()));