Achtung, hier musste ich serverseitig noch .NET Activation (4.7) freischalten. Da habe ich leider eine Weile suchen müssen..
64 lines
2.8 KiB
XML
64 lines
2.8 KiB
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<configSections>
|
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
<section name="bsmd.pasttrack.service.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
|
</sectionGroup>
|
|
</configSections>
|
|
<appSettings>
|
|
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
|
|
</appSettings>
|
|
<!--
|
|
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
|
|
|
|
The following attributes can be set on the <httpRuntime> tag.
|
|
<system.Web>
|
|
<httpRuntime targetFramework="4.5" />
|
|
</system.Web>
|
|
-->
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.5"/>
|
|
<httpRuntime targetFramework="4.5"/>
|
|
</system.web>
|
|
|
|
<system.serviceModel>
|
|
<behaviors>
|
|
<serviceBehaviors >
|
|
<behavior name="ServiceBehavior">
|
|
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
|
|
<serviceMetadata httpGetEnabled="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>
|
|
<endpointBehaviors>
|
|
<behavior name="web">
|
|
<webHttp/>
|
|
</behavior>
|
|
</endpointBehaviors>
|
|
</behaviors>
|
|
<services>
|
|
<service name="bsmd.pasttrack.service.Service" behaviorConfiguration="ServiceBehavior">
|
|
<endpoint binding="webHttpBinding" contract="bsmd.pasttrack.service.IService" behaviorConfiguration="web">
|
|
</endpoint>
|
|
</service>
|
|
</services>
|
|
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
|
|
</system.serviceModel>
|
|
|
|
<system.webServer>
|
|
<modules runAllManagedModulesForAllRequests="true"/>
|
|
<!--
|
|
To browse web app root directory during debugging, set the value below to true.
|
|
Set to false before deployment to avoid disclosing web app folder information.
|
|
-->
|
|
<directoryBrowse enabled="true"/>
|
|
</system.webServer>
|
|
<applicationSettings>
|
|
<bsmd.pasttrack.service.Properties.Settings>
|
|
<setting name="ConnectionString" serializeAs="String">
|
|
<value>Server=192.168.2.25\SQLEXPRESS;Database=ais;Uid=aisuser;Pwd=aispasswd</value>
|
|
</setting>
|
|
</bsmd.pasttrack.service.Properties.Settings>
|
|
</applicationSettings>
|
|
</configuration> |