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
- InitializationEventAttribute.cs
- DataBoundControlAdapter.cs
- MetadataArtifactLoaderResource.cs
- GridLength.cs
- XmlTypeMapping.cs
- ListView.cs
- CollectionBuilder.cs
- XmlSchemaFacet.cs
- Enum.cs
- ToolBar.cs
- CommandArguments.cs
- CodePropertyReferenceExpression.cs
- SqlDataRecord.cs
- BigInt.cs
- PersonalizablePropertyEntry.cs
- OutputCacheSettingsSection.cs
- CompilerParameters.cs
- HitTestParameters3D.cs
- EdmPropertyAttribute.cs
- CheckBoxRenderer.cs
- MethodCallTranslator.cs
- _OSSOCK.cs
- FilteredXmlReader.cs
- NavigatingCancelEventArgs.cs
- StyleTypedPropertyAttribute.cs
- StdValidatorsAndConverters.cs
- DrawingAttributes.cs
- FixedSOMPageConstructor.cs
- ProviderCollection.cs
- IIS7UserPrincipal.cs
- ColorMap.cs
- MessageHeaderAttribute.cs
- PageCache.cs
- ReliableChannelListener.cs
- TextTreeNode.cs
- PipelineModuleStepContainer.cs
- SessionPageStateSection.cs
- ClientRuntimeConfig.cs
- SQLInt32Storage.cs
- CalendarData.cs
- EtwTrace.cs
- WindowsListViewScroll.cs
- ToolboxDataAttribute.cs
- UIElement.cs
- ProcessInfo.cs
- EncodedStreamFactory.cs
- BufferedMessageWriter.cs
- PerformanceCounter.cs
- EnumerableRowCollectionExtensions.cs
- CollectionEditVerbManager.cs
- FileInfo.cs
- RNGCryptoServiceProvider.cs
- __ComObject.cs
- MimeBasePart.cs
- shaperfactoryquerycachekey.cs
- CollectionViewProxy.cs
- ExceptionUtil.cs
- DataControlFieldTypeEditor.cs
- _ScatterGatherBuffers.cs
- OleDbErrorCollection.cs
- WebConfigurationManager.cs
- TableColumn.cs
- TextDecoration.cs
- RequestCacheEntry.cs
- DataServiceProviderMethods.cs
- SaveCardRequest.cs
- OperationAbortedException.cs
- Metafile.cs
- EntityRecordInfo.cs
- DecimalConstantAttribute.cs
- DesignOnlyAttribute.cs
- IImplicitResourceProvider.cs
- OdbcError.cs
- ScriptRegistrationManager.cs
- OperandQuery.cs
- ProviderCommandInfoUtils.cs
- UInt64Converter.cs
- ConfigurationException.cs
- ClockController.cs
- OleDbTransaction.cs
- XPathDocument.cs
- DateTimeFormatInfo.cs
- IteratorFilter.cs
- CharacterMetricsDictionary.cs
- MemberAccessException.cs
- XmlHelper.cs
- RequiredFieldValidator.cs
- GenericEnumConverter.cs
- TextTreeFixupNode.cs
- IntSecurity.cs
- DataContractSerializerOperationFormatter.cs
- ListViewDeletedEventArgs.cs
- Options.cs
- ASCIIEncoding.cs
- DbCommandTree.cs
- TagMapCollection.cs
- Visitors.cs
- SecurityTokenInclusionMode.cs
- Control.cs
- DataPagerCommandEventArgs.cs