54 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <configuration>
 | |
|   <configSections>
 | |
|   </configSections>
 | |
|   <appSettings>
 | |
|     <!--
 | |
|      <add key="SqlconnWMS" value="Data Source=10.10.9.235;Initial Catalog=epick;Persist Security Info=True;User ID=sa;Password=oone;" />
 | |
|     -->
 | |
| 	  <add key="SqlconnWMS" value="Data Source=localhost;Initial Catalog=epickjinuo;Integrated Security=True;Pooling=true;Max Pool Size = 300; Min Pool Size=0; Connection Lifetime = 300;packet size=1000 " />
 | |
|     <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则自动绑定订单和标签 -->
 | |
|   </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> |