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 178 179 180 181
|
//----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
namespace System.ServiceModel.Activation
{
using System.Collections;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Globalization;
using System.Net;
using System.Security;
using System.Runtime;
class HttpHostedTransportConfiguration : HostedTransportConfigurationBase
{
Collection<HostedHttpTransportManager> transportManagerDirectory;
internal protected HttpHostedTransportConfiguration(string scheme)
: base(scheme)
{
CreateTransportManagers();
}
internal HttpHostedTransportConfiguration()
: this(Uri.UriSchemeHttp)
{ }
HostedHttpTransportManager CreateTransportManager(BaseUriWithWildcard listenAddress)
{
UriPrefixTable<ITransportManagerRegistration> table = null;
if (object.ReferenceEquals(this.Scheme, Uri.UriSchemeHttp))
{
table = HttpChannelListener.StaticTransportManagerTable;
}
else
{
table = SharedHttpsTransportManager.StaticTransportManagerTable;
}
HostedHttpTransportManager httpManager = null;
lock (table)
{
ITransportManagerRegistration registration;
if (!table.TryLookupUri(listenAddress.BaseAddress, listenAddress.HostNameComparisonMode, out registration))
{
httpManager = new HostedHttpTransportManager(listenAddress);
table.RegisterUri(listenAddress.BaseAddress, listenAddress.HostNameComparisonMode, httpManager);
}
}
return httpManager;
}
void CreateTransportManagers()
{
Collection<HostedHttpTransportManager> tempDirectory = new Collection<HostedHttpTransportManager>();
string[] bindings = HostedTransportConfigurationManager.MetabaseSettings.GetBindings(this.Scheme);
foreach (string binding in bindings)
{
TryDebugPrint("HttpHostedTransportConfiguration.CreateTransportManagers() adding binding: " + binding);
BaseUriWithWildcard listenAddress = BaseUriWithWildcard.CreateHostedUri(this.Scheme, binding, HostingEnvironmentWrapper.ApplicationVirtualPath);
bool done = false;
if (ServiceHostingEnvironment.MultipleSiteBindingsEnabled)
{
//In this specific mode we only create one transport manager and all the
//hosted channel listeners hang off of this transport manager
listenAddress = new BaseUriWithWildcard(listenAddress.BaseAddress, HostNameComparisonMode.WeakWildcard);
done = true;
}
HostedHttpTransportManager httpManager = CreateTransportManager(listenAddress);
//httpManager will be null when 2 site bindings differ only in ip address
if (httpManager != null)
{
tempDirectory.Add(httpManager);
ListenAddresses.Add(listenAddress);
}
if (done)
{
break;
}
}
transportManagerDirectory = tempDirectory;
}
static bool canDebugPrint = true;
[Conditional("DEBUG")]
static void TryDebugPrint(string message)
{
if (canDebugPrint)
{
try
{
Debug.Print(message);
}
catch (SecurityException e)
{
canDebugPrint = false;
// not re-throwing on purpose
DiagnosticUtility.TraceHandledException(e, TraceEventType.Warning);
}
}
}
internal HostedHttpTransportManager GetHttpTransportManager(Uri uri)
{
if (ServiceHostingEnvironment.MultipleSiteBindingsEnabled)
{
Fx.Assert(transportManagerDirectory.Count == 1, "There should be only one TM in this mode");
return transportManagerDirectory[0];
}
// Optimized common cases without having to create an enumerator.
switch (this.transportManagerDirectory.Count)
{
case 0:
return null;
case 1:
{
HostedHttpTransportManager manager = this.transportManagerDirectory[0];
if (manager.Port == uri.Port &&
(string.Compare(manager.Scheme, uri.Scheme, StringComparison.OrdinalIgnoreCase) == 0) &&
(manager.HostNameComparisonMode != HostNameComparisonMode.Exact ||
string.Compare(manager.ListenUri.Host, uri.NormalizedHost(), StringComparison.OrdinalIgnoreCase) == 0))
{
return manager;
}
return null;
}
default:
{
HostedHttpTransportManager foundTransportManager = null;
HostedHttpTransportManager weakTransportManager = null;
string scheme = uri.Scheme;
int port = uri.Port;
string host = null;
foreach (HostedHttpTransportManager manager in this.transportManagerDirectory)
{
if (manager.Port == port &&
string.Compare(manager.Scheme, scheme, StringComparison.OrdinalIgnoreCase) == 0)
{
if (manager.HostNameComparisonMode == HostNameComparisonMode.StrongWildcard)
{
return manager;
}
if (manager.HostNameComparisonMode == HostNameComparisonMode.WeakWildcard)
{
weakTransportManager = manager;
}
if ((manager.HostNameComparisonMode == HostNameComparisonMode.Exact) &&
(string.Compare(manager.Host, host ?? (host = uri.NormalizedHost()),
StringComparison.OrdinalIgnoreCase) == 0))
{
foundTransportManager = manager;
}
}
}
return foundTransportManager ?? weakTransportManager;
}
}
}
}
}
|