<?xml version="1.0" encoding="utf-8"?>
|
<configuration>
|
<startup>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
</startup>
|
<connectionStrings>
|
|
|
<add name="dbmodel" connectionString="data source=192.168.0.3;initial catalog=LA20025;persist security info=True;user id=sa;password=123abc.com;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" /></connectionStrings>
|
|
<appSettings>
|
<!--是否是虚拟仿真模式,true:是,false:否。生产环境要配置为false 【EditBy shaocx,2022-01-27】-->
|
<add key="IsVirtualMode" value="false"/>
|
</appSettings>
|
<system.serviceModel>
|
|
<bindings>
|
<basicHttpBinding>
|
<binding name="AutoServiceSoap" />
|
</basicHttpBinding>
|
</bindings>
|
<client>
|
<endpoint address="http://192.168.128.80:8082/AutoService.asmx" binding="basicHttpBinding" bindingConfiguration="AutoServiceSoap" contract="tianyong.AutoServiceSoap" name="AutoServiceSoap" />
|
</client>
|
<behaviors>
|
<serviceBehaviors>
|
<behavior name="">
|
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
</behavior>
|
</serviceBehaviors>
|
</behaviors>
|
<services>
|
<service name="yunneiWCS.wcf.yunneiWcf">
|
<endpoint address="" binding="basicHttpBinding" contract="yunneiWCS.wcf.IyunneiWcf">
|
<identity>
|
<dns value="localhost" />
|
</identity>
|
</endpoint>
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
<host>
|
<baseAddresses>
|
<add baseAddress="http://localhost:8733/Design_Time_Addresses/yunneiWCS.wcf/yunneiWcf/" />
|
</baseAddresses>
|
</host>
|
</service>
|
</services>
|
</system.serviceModel>
|
</configuration>
|