Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / RequestSecurityTokenForRemoteTokenFactory.cs / 1 / RequestSecurityTokenForRemoteTokenFactory.cs
namespace Microsoft.InfoCards { using System; using System.Xml; using System.Collections; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; // // This derviced variant of RequestSecurityToken is used to generate an RST to the remote token factory. // internal class RequestSecurityTokenForRemoteTokenFactory : RequestSecurityToken { public RequestSecurityTokenForRemoteTokenFactory( RequestSecurityTokenParameters rstParams ) : base( rstParams ) { } protected override void WriteAppliesToElement() { switch( AppliesToBehaviorDecisionTable.GetAppliesToBehaviorDecisionForRst( Policy, m_rstParams.Card.RequireAppliesto ) ) { case AppliesToBehaviorDecision.SendRPAppliesTo: IDT.TraceDebug( "IPSTSCLIENT: Writing RP AppliesTo to RST" ); Serializer.WriteAppliesToElement( Policy.PolicyAppliesTo, m_rstParams.Version ); break; case AppliesToBehaviorDecision.SendCustomAppliesTo: IDT.TraceDebug( "IPSTSCLIENT: Writing Recipient Identity to RST to create a custom AppliesTo" ); Serializer.WriteAppliesToElement( Policy.ImmediateTokenRecipient.Address, m_rstParams.Version ); break; default: // // Do not write AppliesTo // break; } } protected override void WriteSecondaryParametersElement() { // // Write out a copy of the policy XML to the SecondaryParameters element if we are using the // oasis 2007 version of WS-Trust. // if( XmlNames.WSSpecificationVersion.WSTrustOasis2007 == ProtocolVersionProfile.WSTrust.Version ) { // // If the policy contains optional claims but the user has elected to not sent optional claims, then we // cannot sent secondaryParameters (as we do not want accidental disclosure of information to a // non-auditing STS). // bool writeSeconaryParameters = true; if( Policy.OptionalClaims.Length > 0 ) { // // If the policy contains one or more optional claims, check to see if the user // is willing to send optional claims. // writeSeconaryParameters = m_rstParams.DiscloseOptionalClaims && !( OptionalClaimsExceedCard( m_rstParams.Card, m_rstParams.Policy ) ); } // // Write the secondaryParameters element only when AppliesTo is present // switch( AppliesToBehaviorDecisionTable.GetAppliesToBehaviorDecisionForRst( Policy, m_rstParams.Card.RequireAppliesto ) ) { case AppliesToBehaviorDecision.SendRPAppliesTo: case AppliesToBehaviorDecision.SendCustomAppliesTo: break; default: // // Do not write SecondaryParameters as the appliesTo decision is either 'not send' or 'failed match' // writeSeconaryParameters = false; break; } if( writeSeconaryParameters ) { if( null != Policy.RelyingPartyPolicy ) { Serializer.WriteSecondaryParametersElement( Policy.RelyingPartyPolicy.PolicyXml ); } else { // // If the incoming RST Template did not contain SecondaryParameters, we simply write the // original request. // Serializer.WriteSecondaryParametersElement( Policy.ClientPolicy.PolicyXml ); } } } } protected override void CustomWriteBodyContents( XmlDictionaryWriter writer ) { InitializeWriters( writer ); WriteRSTOpeningElement(); WriteRequestTypeElement(); WriteInfoCardReferenceElement(); WriteClaimsElement(); WriteKeyTypeElement(); WriteKeySupportingElements(); WriteAppliesToElement(); WritePPIDElement(); WriteEncryptionAlgorithmElement(); WritePassOnElements(); WriteDisplayTokenElement(); WriteUnprocessedPolicyElements(); WriteSecondaryParametersElement(); WriteEndElement(); } // // Summary // Checks to see if the optional claims in the policy exceed the claims present in the card. // // Returns // True if at least one optional claim in the policy is not present in the card. False otherwise. // private bool OptionalClaimsExceedCard( InfoCard card, InfoCardPolicy policy ) { // // Compare the set of requested optional claims in the policy against the card's claims. // InfoCardClaimCollection claims = card.GetClaims(); bool claimNotFoundInCard = false; foreach( string claimUri in policy.OptionalClaims ) { if( !claims.ContainsKey( claimUri ) ) { claimNotFoundInCard = true; } } return claimNotFoundInCard; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionPoint.cs
- SQLInt32.cs
- StrokeNode.cs
- CodePrimitiveExpression.cs
- PeerUnsafeNativeMethods.cs
- ArgIterator.cs
- PhysicalFontFamily.cs
- Line.cs
- HtmlEmptyTagControlBuilder.cs
- Globals.cs
- ListViewTableRow.cs
- StrokeCollectionConverter.cs
- FormView.cs
- SmtpLoginAuthenticationModule.cs
- StructureChangedEventArgs.cs
- SqlExpander.cs
- SurrogateChar.cs
- CollectionAdapters.cs
- HtmlShimManager.cs
- MergeLocalizationDirectives.cs
- TextModifier.cs
- TextTreeFixupNode.cs
- GacUtil.cs
- Certificate.cs
- PageBuildProvider.cs
- GenericAuthenticationEventArgs.cs
- Win32PrintDialog.cs
- WSHttpBindingBase.cs
- FieldDescriptor.cs
- IntegrationExceptionEventArgs.cs
- CodeTypeReferenceCollection.cs
- SwitchAttribute.cs
- Formatter.cs
- WaitHandleCannotBeOpenedException.cs
- RequestCacheEntry.cs
- GroupQuery.cs
- InputMethod.cs
- Repeater.cs
- selecteditemcollection.cs
- SystemFonts.cs
- Rotation3DKeyFrameCollection.cs
- StatusCommandUI.cs
- RealProxy.cs
- ToggleButtonAutomationPeer.cs
- BaseResourcesBuildProvider.cs
- AbsoluteQuery.cs
- ObjectViewFactory.cs
- NativeMethodsOther.cs
- MessageContractAttribute.cs
- DateTimeConstantAttribute.cs
- ExpressionBuilder.cs
- BlockUIContainer.cs
- Cursors.cs
- QueryRewriter.cs
- OperationFormatStyle.cs
- DesignerAutoFormatCollection.cs
- ItemAutomationPeer.cs
- PersonalizationProvider.cs
- ImageMap.cs
- FormsAuthenticationTicket.cs
- WorkflowHostingResponseContext.cs
- ThicknessAnimationUsingKeyFrames.cs
- Highlights.cs
- StrongName.cs
- CriticalHandle.cs
- ApplicationDirectoryMembershipCondition.cs
- RuleValidation.cs
- XmlSerializerImportOptions.cs
- FontUnitConverter.cs
- CodeFieldReferenceExpression.cs
- CustomTypeDescriptor.cs
- _StreamFramer.cs
- SourceInterpreter.cs
- Vector3DValueSerializer.cs
- DataKeyArray.cs
- PathTooLongException.cs
- DataObjectCopyingEventArgs.cs
- sitestring.cs
- TriggerBase.cs
- Sql8ExpressionRewriter.cs
- CatalogPart.cs
- HttpHandlerAction.cs
- GetImportFileNameRequest.cs
- SizeF.cs
- XmlSerializerVersionAttribute.cs
- AssociationSetEnd.cs
- ListCommandEventArgs.cs
- TypeToken.cs
- SourceFileBuildProvider.cs
- EdmValidator.cs
- DES.cs
- ConfigurationManagerHelperFactory.cs
- ContentTypeSettingClientMessageFormatter.cs
- Mapping.cs
- QilStrConcat.cs
- SqlClientPermission.cs
- WebRequest.cs
- SingleStorage.cs
- IDQuery.cs
- WebHttpEndpoint.cs