<?xml version="1.0" encoding="utf-8"?>
|
<configuration>
|
<configSections>
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
</configSections>
|
<startup>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
</startup>
|
<system.serviceModel>
|
<bindings>
|
<basicHttpBinding>
|
<binding name="CustomWebBinding" sendTimeout="00:05:00" maxBufferPoolSize="2147483647"
|
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
|
transferMode="Streamed">
|
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
|
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
|
</binding>
|
</basicHttpBinding>
|
</bindings>
|
<client />
|
<behaviors>
|
<serviceBehaviors>
|
<behavior name="">
|
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
</behavior>
|
</serviceBehaviors>
|
</behaviors>
|
<services>
|
<service name="siemensSapService.wcf.sapWcf">
|
<endpoint address="" binding="basicHttpBinding" contract="siemensSapService.wcf.IsapWcf" bindingConfiguration="CustomWebBinding">
|
<identity>
|
<dns value="localhost" />
|
</identity>
|
</endpoint>
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
<host>
|
<baseAddresses>
|
<add baseAddress="http://localhost:8733/Design_Time_Addresses/siemensSapService.wcf/sapWcf/" />
|
</baseAddresses>
|
</host>
|
</service>
|
</services>
|
</system.serviceModel>
|
<entityFramework>
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
|
<parameters>
|
<parameter value="v11.0" />
|
</parameters>
|
</defaultConnectionFactory>
|
<providers>
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
</providers>
|
</entityFramework>
|
<connectionStrings>
|
|
|
<add name="dbModel" connectionString="data source=.;initial catalog=YrtWMS_Siemens2;persist security info=True;user id=sa;password=123abc.com;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
|
|
</connectionStrings>
|
</configuration>
|