Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / MsmqOutputChannel.cs / 1 / MsmqOutputChannel.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Runtime.CompilerServices; using System.IdentityModel.Selectors; using System.IdentityModel.Tokens; using System.ServiceModel; using System.ServiceModel.Security; using System.Transactions; using System.ServiceModel.Security.Tokens; using SR = System.ServiceModel.SR; using System.Net.Security; sealed class MsmqOutputChannel : TransportOutputChannel { MsmqQueue msmqQueue; MsmqTransactionMode transactionMode; readonly byte[] preamble; // cached .NET framing singleton preamble SynchronizedDisposablePool> outputMessages; MsmqChannelFactory factory; SecurityTokenProviderContainer certificateTokenProvider; public MsmqOutputChannel(MsmqChannelFactory factory, EndpointAddress to, Uri via, bool manualAddressing) : base(factory, to, via, manualAddressing, factory.MessageVersion) { // construct the .NET framing preamble used for every message byte[] modeBytes = ClientSingletonSizedEncoder.ModeBytes; EncodedVia encodedVia = new EncodedVia(this.Via.AbsoluteUri); EncodedContentType encodedContentType = EncodedContentType.Create(factory.MessageEncoderFactory.Encoder.ContentType); this.preamble = DiagnosticUtility.Utility.AllocateByteArray(modeBytes.Length + ClientSingletonSizedEncoder.CalcStartSize(encodedVia, encodedContentType)); Buffer.BlockCopy(modeBytes, 0, this.preamble, 0, modeBytes.Length); ClientSingletonSizedEncoder.EncodeStart(this.preamble, modeBytes.Length, encodedVia, encodedContentType); this.outputMessages = new SynchronizedDisposablePool >(factory.MaxPoolSize); if (factory.IsMsmqX509SecurityConfigured) { this.certificateTokenProvider = factory.CreateX509TokenProvider(to, via); } this.factory = factory; } void CloseQueue() { this.outputMessages.Dispose(); if (null != this.msmqQueue) this.msmqQueue.Dispose(); this.msmqQueue = null; } void OnCloseCore(bool isAborting, TimeSpan timeout) { this.CloseQueue(); this.outputMessages.Dispose(); if (factory.IsMsmqX509SecurityConfigured) { if (isAborting) this.certificateTokenProvider.Abort(); else this.certificateTokenProvider.Close(timeout); } } protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { OnCloseCore(false, timeout); return new CompletedAsyncResult(callback, state); } protected override void OnEndClose(IAsyncResult result) { CompletedAsyncResult.End(result); } protected override void OnClose(TimeSpan timeout) { OnCloseCore(false, timeout); } protected override void OnAbort() { OnCloseCore(true, TimeSpan.Zero); } void OnOpenCore(TimeSpan timeout) { OpenQueue(); if (factory.IsMsmqX509SecurityConfigured) { this.certificateTokenProvider.Open(timeout); } } void OpenQueue() { try { this.msmqQueue = new MsmqQueue(this.factory.AddressTranslator.UriToFormatName(this.RemoteAddress.Uri), UnsafeNativeMethods.MQ_SEND_ACCESS); } catch (MsmqException ex) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } if (this.factory.ExactlyOnce) { this.transactionMode = MsmqTransactionMode.CurrentOrSingle; } else { this.transactionMode = MsmqTransactionMode.None; } } protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) { OnOpenCore(timeout); return new CompletedAsyncResult(callback, state); } protected override void OnEndOpen(IAsyncResult result) { CompletedAsyncResult.End(result); } protected override void OnOpen(TimeSpan timeout) { OnOpenCore(timeout); } protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) { OnSend(message, timeout); return new CompletedAsyncResult(callback, state); } protected override void OnEndSend(IAsyncResult result) { CompletedAsyncResult.End(result); } protected override void OnSend(Message message, TimeSpan timeout) { // serialize the indigo message to byte array and copy the .NET framing preamble ArraySegment messageData = this.factory.MessageEncoderFactory.Encoder.WriteMessage( message, int.MaxValue, this.factory.BufferManager, preamble.Length); Buffer.BlockCopy(preamble, 0, messageData.Array, messageData.Offset - preamble.Length, preamble.Length); byte[] buffer = messageData.Array; int offset = messageData.Offset - preamble.Length; int size = messageData.Count + preamble.Length; MsmqOutputMessage msmqMessage = this.outputMessages.Take(); if (msmqMessage == null) { msmqMessage = new MsmqOutputMessage (this.factory, size, this.RemoteAddress); MsmqDiagnostics.PoolFull(this.factory.MaxPoolSize); } try { msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.MsmqTransportSecurity.MsmqAuthenticationMode, timeout); msmqMessage.Body.EnsureBufferLength(size); msmqMessage.Body.BufferLength = size; Buffer.BlockCopy(buffer, offset, msmqMessage.Body.Buffer, 0, size); this.factory.BufferManager.ReturnBuffer(buffer); bool lockHeld = false; try { Msmq.EnterXPSendLock(out lockHeld, this.factory.MsmqTransportSecurity.MsmqProtectionLevel); this.msmqQueue.Send(msmqMessage, this.transactionMode); MsmqDiagnostics.DatagramSent(msmqMessage.MessageId, message); } catch (MsmqException ex) { if (ex.FaultSender) this.Fault(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } finally { if (lockHeld) { Msmq.LeaveXPSendLock(); } } } finally { if (!this.outputMessages.Return(msmqMessage)) { msmqMessage.Dispose(); } } } } } // 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
- HierarchicalDataBoundControl.cs
- DateTimeOffsetConverter.cs
- XamlToRtfWriter.cs
- WebZone.cs
- CodeObjectCreateExpression.cs
- TextParagraphProperties.cs
- IDQuery.cs
- SerializableAttribute.cs
- ProfilePropertyNameValidator.cs
- TreeChangeInfo.cs
- BoundField.cs
- SoapFault.cs
- UInt32.cs
- SecurityContextSecurityTokenAuthenticator.cs
- SqlBuilder.cs
- EdmComplexPropertyAttribute.cs
- IxmlLineInfo.cs
- Crypto.cs
- DelegateBodyWriter.cs
- ImageBrush.cs
- Maps.cs
- WebPartTransformerCollection.cs
- __TransparentProxy.cs
- Transform3D.cs
- RangeBase.cs
- ellipse.cs
- PageCodeDomTreeGenerator.cs
- RectAnimation.cs
- AddressUtility.cs
- ImportStoreException.cs
- NullRuntimeConfig.cs
- SplitterCancelEvent.cs
- RequestCacheValidator.cs
- SqlBuffer.cs
- HtmlInputHidden.cs
- Pens.cs
- Int64Converter.cs
- DataGridHeaderBorder.cs
- ExpressionBinding.cs
- ImageList.cs
- TimeSpanMinutesConverter.cs
- LongTypeConverter.cs
- ColorConverter.cs
- ChangesetResponse.cs
- UTF8Encoding.cs
- ScaleTransform3D.cs
- TrustLevelCollection.cs
- ProgressBarHighlightConverter.cs
- BooleanStorage.cs
- DataGridLengthConverter.cs
- RegexCompilationInfo.cs
- Int32Converter.cs
- HtmlUtf8RawTextWriter.cs
- ColorKeyFrameCollection.cs
- WebPartMovingEventArgs.cs
- RepeaterCommandEventArgs.cs
- TemplatePropertyEntry.cs
- IDQuery.cs
- ColorAnimationBase.cs
- PersonalizationEntry.cs
- StylusTouchDevice.cs
- TextCharacters.cs
- DirectoryInfo.cs
- XPathScanner.cs
- DatePicker.cs
- Rule.cs
- SelectionPattern.cs
- BeginEvent.cs
- ContractInferenceHelper.cs
- SmiRecordBuffer.cs
- ModuleBuilderData.cs
- InvalidAsynchronousStateException.cs
- XamlTypeMapper.cs
- NullableFloatMinMaxAggregationOperator.cs
- User.cs
- LocalizationComments.cs
- MethodBody.cs
- OracleInternalConnection.cs
- Behavior.cs
- X509CertificateTokenFactoryCredential.cs
- ConnectorDragDropGlyph.cs
- ExpressionCopier.cs
- RestHandlerFactory.cs
- Preprocessor.cs
- WmlValidationSummaryAdapter.cs
- Application.cs
- Wizard.cs
- DeflateStreamAsyncResult.cs
- AlignmentYValidation.cs
- ListItemCollection.cs
- ParamArrayAttribute.cs
- EventProvider.cs
- Attributes.cs
- CheckBox.cs
- LongCountAggregationOperator.cs
- ContentTextAutomationPeer.cs
- StackSpiller.cs
- SupportingTokenChannel.cs
- CaseStatement.cs
- ItemDragEvent.cs