60 lines
2.0 KiB
XML
60 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
|
|
<appSettings>
|
|
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
|
|
</appSettings>
|
|
<system.web>
|
|
<compilation debug="true"/>
|
|
</system.web>
|
|
<!-- 部署服务库项目时,必须将配置文件的内容添加到
|
|
主机的 app.config 文件中。System.Configuration 不支持库的配置文件。-->
|
|
<system.serviceModel>
|
|
<services>
|
|
|
|
<service name="RiaServiceLibrary.PublicService">
|
|
<endpoint address="" binding="basicHttpBinding" contract="RiaServiceLibrary.IPublicService">
|
|
<identity>
|
|
<dns value="localhost"/>
|
|
</identity>
|
|
</endpoint>
|
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
|
|
<host>
|
|
<baseAddresses>
|
|
<add baseAddress="http://localhost:8733/Design_Time_Addresses/RiaServiceLibrary/PublicService/"/>
|
|
</baseAddresses>
|
|
</host>
|
|
</service>
|
|
</services>
|
|
<behaviors>
|
|
<serviceBehaviors>
|
|
<behavior>
|
|
<!-- 为避免泄漏元数据信息,
|
|
请在部署前将以下值设置为 false -->
|
|
<serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
|
|
<!-- 要接收故障异常详细信息以进行调试,
|
|
请将以下值设置为 true。在部署前设置为 false
|
|
以避免泄漏异常信息-->
|
|
<serviceDebug includeExceptionDetailInFaults="False"/>
|
|
</behavior>
|
|
</serviceBehaviors>
|
|
</behaviors>
|
|
</system.serviceModel>
|
|
|
|
<runtime>
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral"/>
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-0.85.4.369" newVersion="0.85.4.369"/>
|
|
|
|
</dependentAssembly>
|
|
|
|
</assemblyBinding>
|
|
|
|
</runtime>
|
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/></startup></configuration>
|