57 lines
2.3 KiB
Plaintext
57 lines
2.3 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<configuration>
|
||
|
<configSections>
|
||
|
</configSections>
|
||
|
<appSettings>
|
||
|
<!--
|
||
|
<add key="SqlconnWMS" value="Data Source=192.168.0.4;Initial Catalog=epick;Persist Security Info=True;User ID=sa;Password=123@qwe;" />
|
||
|
-->
|
||
|
<add key="SqlconnWMS" value="Data Source=PC-201703311528\ELE;Initial Catalog=epick;Integrated Security=True" />
|
||
|
|
||
|
|
||
|
<add key="ClientSettingsProvider.ServiceUri" value="" />
|
||
|
<add key="BaseUri" value="http://127.0.0.1:9998/DNlight/" />
|
||
|
<add key="DeskId" value="0" />
|
||
|
<add key="IsAutoBind" value="0" /><!-- 大于0则自动绑定订单和标签 -->
|
||
|
<add key="hisKeepDays" value="30" />
|
||
|
</appSettings>
|
||
|
<system.web>
|
||
|
<membership defaultProvider="ClientAuthenticationMembershipProvider">
|
||
|
<providers>
|
||
|
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
|
||
|
</providers>
|
||
|
</membership>
|
||
|
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
|
||
|
<providers>
|
||
|
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
|
||
|
</providers>
|
||
|
</roleManager>
|
||
|
</system.web>
|
||
|
<system.serviceModel>
|
||
|
<behaviors>
|
||
|
<serviceBehaviors>
|
||
|
<behavior name="">
|
||
|
<serviceMetadata httpGetEnabled="true" />
|
||
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
||
|
</behavior>
|
||
|
</serviceBehaviors>
|
||
|
</behaviors>
|
||
|
<!--
|
||
|
<services>
|
||
|
<service name="DeiNiu.wms.win.ServiceLight">
|
||
|
<endpoint address="" binding="basicHttpBinding" contract="DeiNiu.wms.win.IServiceLight">
|
||
|
<identity>
|
||
|
<dns value="localhost" />
|
||
|
</identity>
|
||
|
</endpoint>
|
||
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
||
|
<host>
|
||
|
<baseAddresses>
|
||
|
<add baseAddress="http://localhost:8732/ServiceLight/" />
|
||
|
</baseAddresses>
|
||
|
</host>
|
||
|
</service>
|
||
|
</services>
|
||
|
-->
|
||
|
</system.serviceModel>
|
||
|
</configuration>
|