| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
- </startup>
- <connectionStrings>
- <add name="gov_ls" providerName="MySql.Data.MySqlClient" connectionString="Database=gov_ls;Data Source=127.0.0.1;UserId=root;Password=root;pooling=false;CharSet=utf8;Port=3306;allow zero datetime=true"/>
- </connectionStrings>
- <system.serviceModel>
- <bindings>
- <basicHttpBinding>
- <binding name="BasicHttpBinding_ICodeService"/>
- </basicHttpBinding>
- </bindings>
- <behaviors>
- <endpointBehaviors>
- <behavior name="NewBehavior0">
- <webHttp helpEnabled="true" defaultBodyStyle="Wrapped"/>
- </behavior>
- </endpointBehaviors>
- <serviceBehaviors>
- <behavior name="NewBehavior0">
- <serviceMetadata httpGetEnabled="true"/>
- <serviceDebug includeExceptionDetailInFaults="true"/>
- </behavior>
- </serviceBehaviors>
- </behaviors>
- <services>
- <service behaviorConfiguration="NewBehavior0" name="Winsoft.GOV.WCF.PowerMettersService">
- <clear/>
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
- <endpoint binding="basicHttpBinding" contract="Winsoft.GOV.WCF.IPowerMettersService"/>
- <host>
- <baseAddresses>
- <add baseAddress="http://127.0.0.1:12351"/>
- </baseAddresses>
- </host>
- </service>
- </services>
- </system.serviceModel>
- </configuration>
|