1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <configSections>
- <sectionGroup name="applicationSettings"
- type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <section name="Foghorn.Service.Properties.Settings"
- type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
- requirePermission="false" />
- </sectionGroup>
- </configSections>
- <connectionStrings>
- <add name="FoghornEntities"
- connectionString="metadata=res://*/FoghornModel.csdl|res://*/FoghornModel.ssdl|res://*/FoghornModel.msl;provider=System.Data.SqlClient;provider connection string="data source=(local);initial catalog=Foghorn;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework""
- providerName="System.Data.EntityClient" />
- </connectionStrings>
- <appSettings>
- <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
- </appSettings>
- <system.web>
- <compilation debug="true" />
- </system.web>
- <!-- When deploying the service library project, the content of the config file must be added to the host's
- app.config file. System.Configuration does not support config files for libraries. -->
- <system.serviceModel>
- <services>
- <service name="Foghorn.WcfService.FoghornService">
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:8733/Design_Time_Addresses/Foghorn.WcfService/FoghornService/" />
- </baseAddresses>
- </host>
- <!-- Service Endpoints -->
- <!-- Unless fully qualified, address is relative to base address supplied above -->
- <endpoint address="" binding="basicHttpBinding" contract="Foghorn.WcfService.IFoghornService">
- <!--
- Upon deployment, the following identity element should be removed or replaced to reflect the
- identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
- automatically.
- -->
- <identity>
- <dns value="localhost" />
- </identity>
- </endpoint>
- <!-- Metadata Endpoints -->
- <!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. -->
- <!-- This endpoint does not use a secure binding and should be secured or removed before deployment -->
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
- </service>
- </services>
- <behaviors>
- <serviceBehaviors>
- <behavior>
- <!-- To avoid disclosing metadata information,
- set the values below to false before deployment -->
- <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True" />
- <!-- To receive exception details in faults for debugging purposes,
- set the value below to true. Set to false before deployment
- to avoid disclosing exception information -->
- <serviceDebug includeExceptionDetailInFaults="False" />
- </behavior>
- </serviceBehaviors>
- </behaviors>
- </system.serviceModel>
- <applicationSettings>
- <Foghorn.Service.Properties.Settings>
- <setting name="GrowlDefaultPort" serializeAs="String">
- <value>23053</value>
- </setting>
- </Foghorn.Service.Properties.Settings>
- </applicationSettings>
- </configuration>
|