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
|
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel
{
using System;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime;
using System.ServiceModel.Activities;
using System.ServiceModel.Channels;
using System.ServiceModel.XamlIntegration;
using System.Xml.Linq;
using SMASR = System.ServiceModel.Activities.SR;
public class Endpoint
{
Collection<AddressHeader> headers;
[DefaultValue(null)]
public string BehaviorConfigurationName
{
get;
set;
}
[Fx.Tag.KnownXamlExternal]
[DefaultValue(null)]
public Binding Binding
{
get;
set;
}
[DefaultValue(null)]
[TypeConverter(typeof(ServiceXNameTypeConverter))]
public XName ServiceContractName
{
get;
set;
}
// concrete AddressHeader descendants aren't currently XAMLable, they are not initialized until runtime
// If user adds an address header, this object will fail to xamlize.
[Fx.Tag.KnownXamlExternal]
public Collection<AddressHeader> Headers
{
get
{
if (this.headers == null)
{
this.headers = new Collection<AddressHeader>();
}
return this.headers;
}
}
[DefaultValue(null)]
[TypeConverter(typeof(EndpointIdentityConverter))]
public EndpointIdentity Identity
{
get;
set;
}
[DefaultValue(null)]
public Uri ListenUri
{
get;
set;
}
[DefaultValue(null)]
public string Name
{
get;
set;
}
[DefaultValue(null)]
public Uri AddressUri
{
get;
set;
}
public EndpointAddress GetAddress()
{
return GetAddress(null);
}
public EndpointAddress GetAddress(ServiceHostBase host)
{
if (this.AddressUri == null)
{
string endpointName = ContractValidationHelper.GetErrorMessageEndpointName(this.Name);
string contractName = ContractValidationHelper.GetErrorMessageEndpointServiceContractName(this.ServiceContractName);
throw FxTrace.Exception.AsError(new InvalidOperationException(
SMASR.MissingUriInEndpoint(endpointName, contractName)));
}
Uri address = null;
if (this.AddressUri.IsAbsoluteUri)
{
address = this.AddressUri;
}
else
{
if (this.Binding == null)
{
string endpointName = ContractValidationHelper.GetErrorMessageEndpointName(this.Name);
string contractName = ContractValidationHelper.GetErrorMessageEndpointServiceContractName(this.ServiceContractName);
throw FxTrace.Exception.AsError(new InvalidOperationException(
SMASR.RelativeUriRequiresBinding(endpointName, contractName, this.AddressUri)));
}
if (host == null)
{
string endpointName = ContractValidationHelper.GetErrorMessageEndpointName(this.Name);
string contractName = ContractValidationHelper.GetErrorMessageEndpointServiceContractName(this.ServiceContractName);
throw FxTrace.Exception.AsError(new InvalidOperationException(
SMASR.RelativeUriRequiresHost(endpointName, contractName, this.AddressUri)));
}
address = host.MakeAbsoluteUri(this.AddressUri, this.Binding);
}
return new EndpointAddress(address, this.Identity, new AddressHeaderCollection(this.Headers));
}
}
}
|