我有以下属性:
protected BasicHttpBinding Binding
{
get
{
var config = ConfigurationManager.GetSection("basicHttpBinding") as ServiceModelSectionGroup;
foreach (ChannelEndpointElement bindings in config.Bindings.BasicHttpBinding.Bindings)
{
string binding = bindings.Binding;
if (binding != null)
{
return new BasicHttpBinding(binding);
}
}
return null;
}
}
当我调试它时,它失败并出现空异常:对象引用未设置为此行的对象实例:
foreach (ChannelEndpointElement bindings in config.Bindings.BasicHttpBinding.Bindings)
但是,我注意到它上面的行也是空的。
这是app.config文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="IntelexWSSoap" closeTimeout="00:01:00" openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
.....
</basicHttpBinding>
</bindings>
....
</system.serviceModel>
</configuration>
我无法弄清楚它失败的原因。
答案 0 :(得分:4)
试试这个:
var config = ConfigurationManager.GetSection("system.serviceModel/bindings") as
System.ServiceModel.Configuration.BindingsSection;
<basicHttpBinding>
不是配置部分,它是<bindings>
配置部分中的一个元素。
答案 1 :(得分:3)
看起来你正在获取“basicHttpBinding”部分,但后来尝试将其转换为ServiceModelSectionGroup
,它引用了“system.serviceModel”部分,因此返回null
。
请尝试ConfigurationManager.GetSection("system.serviceModel")
。