1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System.ServiceModel.Activation;
using System.Collections.Generic;
using System.Net.Security;
using System.Runtime.Serialization;
using System.ServiceModel.Security;
using System.Xml;
public sealed class MsmqTransportBindingElement : MsmqBindingElementBase
{
int maxPoolSize = MsmqDefaults.MaxPoolSize;
bool useActiveDirectory = MsmqDefaults.UseActiveDirectory;
QueueTransferProtocol queueTransferProtocol = MsmqDefaults.QueueTransferProtocol;
public MsmqTransportBindingElement() { }
MsmqTransportBindingElement(MsmqTransportBindingElement elementToBeCloned)
: base(elementToBeCloned)
{
this.useActiveDirectory = elementToBeCloned.useActiveDirectory;
this.maxPoolSize = elementToBeCloned.maxPoolSize;
this.queueTransferProtocol = elementToBeCloned.queueTransferProtocol;
}
internal override MsmqUri.IAddressTranslator AddressTranslator
{
get
{
switch (this.queueTransferProtocol)
{
case QueueTransferProtocol.Srmp:
return MsmqUri.SrmpAddressTranslator;
case QueueTransferProtocol.SrmpSecure:
return MsmqUri.SrmpsAddressTranslator;
default:
return this.useActiveDirectory ? MsmqUri.ActiveDirectoryAddressTranslator : MsmqUri.NetMsmqAddressTranslator;
}
}
}
public int MaxPoolSize
{
get
{
return this.maxPoolSize;
}
set
{
if (value < 0)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("value", value, SR.GetString(SR.MsmqNonNegativeArgumentExpected)));
}
this.maxPoolSize = value;
}
}
public QueueTransferProtocol QueueTransferProtocol
{
get
{
return this.queueTransferProtocol;
}
set
{
if (!QueueTransferProtocolHelper.IsDefined(value))
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
this.queueTransferProtocol = value;
}
}
public override string Scheme
{
get
{
return "net.msmq";
}
}
public bool UseActiveDirectory
{
get
{
return this.useActiveDirectory;
}
set
{
this.useActiveDirectory = value;
}
}
internal override string WsdlTransportUri
{
get
{
return TransportPolicyConstants.MsmqTransportUri;
}
}
public override BindingElement Clone()
{
return new MsmqTransportBindingElement(this);
}
public override bool CanBuildChannelFactory<TChannel>(BindingContext context)
{
return (typeof(TChannel) == typeof(IOutputChannel)
|| typeof(TChannel) == typeof(IOutputSessionChannel));
}
public override bool CanBuildChannelListener<TChannel>(BindingContext context)
{
return (typeof(TChannel) == typeof(IInputChannel)
|| typeof(TChannel) == typeof(IInputSessionChannel));
}
public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingContext context)
{
if (context == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
}
if (typeof(TChannel) == typeof(IOutputChannel))
{
MsmqChannelFactoryBase<IOutputChannel> factory = new MsmqOutputChannelFactory(this, context);
MsmqVerifier.VerifySender<IOutputChannel>(factory);
return (IChannelFactory<TChannel>)(object)factory;
}
else if (typeof(TChannel) == typeof(IOutputSessionChannel))
{
MsmqChannelFactoryBase<IOutputSessionChannel> factory = new MsmqOutputSessionChannelFactory(this, context);
MsmqVerifier.VerifySender<IOutputSessionChannel>(factory);
return (IChannelFactory<TChannel>)(object)factory;
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("TChannel", SR.GetString(SR.ChannelTypeNotSupported, typeof(TChannel)));
}
}
public override IChannelListener<TChannel> BuildChannelListener<TChannel>(BindingContext context)
{
if (context == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
}
TransportChannelListener msmqListener;
MsmqTransportReceiveParameters receiveParameters = new MsmqTransportReceiveParameters(this, MsmqUri.NetMsmqAddressTranslator);
if (typeof(TChannel) == typeof(IInputChannel))
{
msmqListener = new MsmqInputChannelListener(this, context, receiveParameters);
}
else if (typeof(TChannel) == typeof(IInputSessionChannel))
{
msmqListener = new MsmqInputSessionChannelListener(this, context, receiveParameters);
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("TChannel", SR.GetString(SR.ChannelTypeNotSupported, typeof(TChannel)));
}
AspNetEnvironment.Current.ApplyHostedContext(msmqListener, context);
MsmqVerifier.VerifyReceiver(receiveParameters, msmqListener.Uri);
return (IChannelListener<TChannel>)(object)msmqListener;
}
}
}
|