Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Transactions / OletxTransactionHeader.cs / 1 / OletxTransactionHeader.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Transactions { using System; using System.Diagnostics; using System.ServiceModel; using System.ServiceModel.Channels; using System.Transactions; using System.Xml; using Microsoft.Transactions.Wsat.Messaging; class OleTxTransactionHeader : MessageHeader { const string OleTxHeaderElement = OleTxTransactionExternalStrings.OleTxTransaction; const string OleTxNamespace = OleTxTransactionExternalStrings.Namespace; static readonly XmlDictionaryString CoordinationNamespace = XD.CoordinationExternal10Dictionary.Namespace; // we keep using wscoor10 namespace for compatibility byte[] propagationToken; WsatExtendedInformation wsatInfo; public OleTxTransactionHeader(byte[] propagationToken, WsatExtendedInformation wsatInfo) { this.propagationToken = propagationToken; this.wsatInfo = wsatInfo; } public override bool MustUnderstand { get { return true; } } public override string Name { get { return OleTxHeaderElement; } } public override string Namespace { get { return OleTxNamespace; } } public byte[] PropagationToken { get { return this.propagationToken; } } public WsatExtendedInformation WsatExtendedInformation { get { return this.wsatInfo; } } protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) { if (this.wsatInfo != null) { if (this.wsatInfo.Timeout != 0) { writer.WriteAttributeString(XD.CoordinationExternalDictionary.Expires, CoordinationNamespace, XmlConvert.ToString(this.wsatInfo.Timeout)); } if (!string.IsNullOrEmpty(this.wsatInfo.Identifier)) { writer.WriteAttributeString(XD.CoordinationExternalDictionary.Identifier, CoordinationNamespace, this.wsatInfo.Identifier); } } WritePropagationTokenElement(writer, this.propagationToken); } public static OleTxTransactionHeader ReadFrom(Message message) { int index; try { index = message.Headers.FindHeader(OleTxHeaderElement, OleTxNamespace); } catch (MessageHeaderException e) { DiagnosticUtility.ExceptionUtility.TraceHandledException(e, TraceEventType.Error); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new TransactionException(SR.GetString(SR.OleTxHeaderCorrupt), e)); } if (index < 0) return null; OleTxTransactionHeader oleTxHeader; XmlDictionaryReader reader = message.Headers.GetReaderAtHeader(index); using (reader) { try { oleTxHeader = ReadFrom(reader); } catch (XmlException xe) { DiagnosticUtility.ExceptionUtility.TraceHandledException(xe, TraceEventType.Error); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new TransactionException(SR.GetString(SR.OleTxHeaderCorrupt), xe)); } } MessageHeaderInfo header = message.Headers[index]; if (!message.Headers.UnderstoodHeaders.Contains(header)) { message.Headers.UnderstoodHeaders.Add(header); } return oleTxHeader; } static OleTxTransactionHeader ReadFrom(XmlDictionaryReader reader) { WsatExtendedInformation info = null; if (reader.IsStartElement(XD.OleTxTransactionExternalDictionary.OleTxTransaction, XD.OleTxTransactionExternalDictionary.Namespace)) { string identifier = reader.GetAttribute(XD.CoordinationExternalDictionary.Identifier, CoordinationNamespace); if (!string.IsNullOrEmpty(identifier)) { // Verify identifier is really a URI Uri uri; if (!Uri.TryCreate(identifier, UriKind.Absolute, out uri)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.InvalidWsatExtendedInfo))); } } string attr = reader.GetAttribute(XD.CoordinationExternalDictionary.Expires, CoordinationNamespace); uint timeout = 0; if (!string.IsNullOrEmpty(attr)) { try { timeout = XmlConvert.ToUInt32(attr); } catch (FormatException e) { DiagnosticUtility.ExceptionUtility.TraceHandledException(e, TraceEventType.Error); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.InvalidWsatExtendedInfo), e)); } catch (OverflowException e) { DiagnosticUtility.ExceptionUtility.TraceHandledException(e, TraceEventType.Error); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.InvalidWsatExtendedInfo), e)); } } if (!string.IsNullOrEmpty(identifier) || timeout != 0) { info = new WsatExtendedInformation(identifier, timeout); } } reader.ReadFullStartElement(XD.OleTxTransactionExternalDictionary.OleTxTransaction, XD.OleTxTransactionExternalDictionary.Namespace); byte[] propagationToken = ReadPropagationTokenElement(reader); // Skip extensibility elements... while (reader.IsStartElement()) { reader.Skip(); } reader.ReadEndElement(); return new OleTxTransactionHeader(propagationToken, info); } public static void WritePropagationTokenElement(XmlDictionaryWriter writer, byte[] propagationToken) { writer.WriteStartElement(XD.OleTxTransactionExternalDictionary.PropagationToken, XD.OleTxTransactionExternalDictionary.Namespace); writer.WriteBase64(propagationToken, 0, propagationToken.Length); writer.WriteEndElement(); } public static bool IsStartPropagationTokenElement(XmlDictionaryReader reader) { return reader.IsStartElement(XD.OleTxTransactionExternalDictionary.PropagationToken, XD.OleTxTransactionExternalDictionary.Namespace); } public static byte[] ReadPropagationTokenElement(XmlDictionaryReader reader) { reader.ReadFullStartElement(XD.OleTxTransactionExternalDictionary.PropagationToken, XD.OleTxTransactionExternalDictionary.Namespace); byte[] propagationToken = reader.ReadContentAsBase64(); if (propagationToken.Length == 0) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.InvalidPropagationToken))); } reader.ReadEndElement(); return propagationToken; } } } // 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
- ButtonBase.cs
- PageRanges.cs
- QueryContinueDragEventArgs.cs
- UnsafeNativeMethods.cs
- ListViewInsertedEventArgs.cs
- embossbitmapeffect.cs
- DataGridViewComboBoxColumn.cs
- SqlXmlStorage.cs
- InOutArgument.cs
- BlurBitmapEffect.cs
- AssemblyAssociatedContentFileAttribute.cs
- EncoderReplacementFallback.cs
- ExtenderProvidedPropertyAttribute.cs
- XPathChildIterator.cs
- PropertyRecord.cs
- LocatorPartList.cs
- TagMapInfo.cs
- HttpListenerRequest.cs
- IntMinMaxAggregationOperator.cs
- translator.cs
- CheckBoxAutomationPeer.cs
- XmlKeywords.cs
- TempEnvironment.cs
- GenericEnumConverter.cs
- ImplicitInputBrush.cs
- QuaternionAnimationBase.cs
- ErasingStroke.cs
- SettingsAttributes.cs
- TextStore.cs
- StringValueSerializer.cs
- SingleSelectRootGridEntry.cs
- ConfigXmlWhitespace.cs
- MsmqIntegrationSecurity.cs
- PersonalizationEntry.cs
- CompilerWrapper.cs
- Block.cs
- XmlKeywords.cs
- ParseChildrenAsPropertiesAttribute.cs
- XmlSchemaImporter.cs
- WindowInteractionStateTracker.cs
- PeerDuplexChannelListener.cs
- COM2PropertyDescriptor.cs
- BitmapInitialize.cs
- SignedInfo.cs
- ImageClickEventArgs.cs
- _Events.cs
- ViewgenGatekeeper.cs
- DataGridColumnCollection.cs
- Internal.cs
- RequestDescription.cs
- OracleSqlParser.cs
- KeyEventArgs.cs
- HttpListenerElement.cs
- ConnectionManagementElementCollection.cs
- MetadataCollection.cs
- GenericPrincipal.cs
- HtmlTextArea.cs
- HtmlEmptyTagControlBuilder.cs
- SelectionItemPatternIdentifiers.cs
- PointAnimationUsingPath.cs
- WindowsRebar.cs
- LayoutTableCell.cs
- ValueChangedEventManager.cs
- Convert.cs
- X509CertificateChain.cs
- GeometryHitTestResult.cs
- RuntimeConfig.cs
- DataGridViewLinkColumn.cs
- GridViewAutomationPeer.cs
- InlineCategoriesDocument.cs
- TraceListener.cs
- ListControl.cs
- ConsoleCancelEventArgs.cs
- TableCell.cs
- ChangeBlockUndoRecord.cs
- Enum.cs
- ToolStripContainerActionList.cs
- streamingZipPartStream.cs
- WebRequestModulesSection.cs
- IApplicationTrustManager.cs
- TypefaceMetricsCache.cs
- WebResourceAttribute.cs
- ListItemViewAttribute.cs
- CompensableActivity.cs
- List.cs
- _NativeSSPI.cs
- ConnectionStringEditor.cs
- SchemaRegistration.cs
- XsdValidatingReader.cs
- ComponentDispatcherThread.cs
- ProjectionCamera.cs
- ExpandoObject.cs
- CalendarTable.cs
- XmlSchemaGroupRef.cs
- AutoResizedEvent.cs
- InteropBitmapSource.cs
- SqlNodeTypeOperators.cs
- ButtonBase.cs
- RelAssertionDirectKeyIdentifierClause.cs
- ScriptReferenceEventArgs.cs