2017-07-27 09:58:04 +02:00
|
|
|
<?xml version="1.0"?>
|
2016-06-27 01:45:38 +02:00
|
|
|
<configuration>
|
|
|
|
|
<configSections>
|
2017-07-27 09:58:04 +02:00
|
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</configSections>
|
|
|
|
|
<system.diagnostics>
|
|
|
|
|
<sources>
|
|
|
|
|
<source name="System.ServiceModel" switchValue="All">
|
|
|
|
|
<listeners>
|
|
|
|
|
<add type="System.Diagnostics.DefaultTraceListener" name="Default">
|
2017-07-27 09:58:04 +02:00
|
|
|
<filter type=""/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</add>
|
|
|
|
|
<add initializeData="logs\Traces.svclog" type="System.Diagnostics.XmlWriterTraceListener" name="traceListener" traceOutputOptions="DateTime">
|
2017-07-27 09:58:04 +02:00
|
|
|
<filter type=""/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</add>
|
|
|
|
|
</listeners>
|
|
|
|
|
</source>
|
|
|
|
|
</sources>
|
|
|
|
|
</system.diagnostics>
|
2016-12-05 17:08:51 +01:00
|
|
|
<log4net>
|
2016-06-27 01:45:38 +02:00
|
|
|
<appender name="logFile" type="log4net.Appender.RollingFileAppender,log4net">
|
2017-07-27 09:58:04 +02:00
|
|
|
<param name="File" value="logs\android_soap_calls.txt"/>
|
|
|
|
|
<param name="AppendToFile" value="true"/>
|
|
|
|
|
<param name="RollingStyle" value="Date"/>
|
|
|
|
|
<param name="DatePattern" value="dd.MM.yyyy"/>
|
|
|
|
|
<param name="StaticLogFileName" value="true"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
<layout type="log4net.Layout.PatternLayout,log4net">
|
2017-07-27 09:58:04 +02:00
|
|
|
<param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</layout>
|
|
|
|
|
</appender>
|
|
|
|
|
<root>
|
2017-07-27 09:58:04 +02:00
|
|
|
<priority value="INFO"/>
|
|
|
|
|
<appender-ref ref="logFile"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</root>
|
|
|
|
|
</log4net>
|
|
|
|
|
<appSettings>
|
2017-07-27 09:58:04 +02:00
|
|
|
<add key="MultitenancyPath" value="F:\Projects\BeWo\Host\Multitenancy\"/>
|
|
|
|
|
<!-- C:\Projekte\BeWo\Host\Multitenancy\-->
|
|
|
|
|
<add key="BeWoPlanerAndroid.AndroidSoapService" value="http://localhost/AndroidSoapService.asmx"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</appSettings>
|
|
|
|
|
<system.serviceModel>
|
|
|
|
|
<behaviors>
|
|
|
|
|
<endpointBehaviors>
|
|
|
|
|
<behavior name="SecurityBehavior">
|
2017-07-27 09:58:04 +02:00
|
|
|
<MultitenancyExtension/>
|
|
|
|
|
<SecurityExtension/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</behavior>
|
|
|
|
|
<behavior name="SecurityAndSessionBehavior">
|
|
|
|
|
<!--wichtig: erst Mulittenancy dann session dann security!-->
|
2017-07-27 09:58:04 +02:00
|
|
|
<MultitenancyExtension/>
|
|
|
|
|
<HibernateSessionExtension/>
|
|
|
|
|
<SecurityExtension/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</behavior>
|
|
|
|
|
</endpointBehaviors>
|
|
|
|
|
<serviceBehaviors>
|
|
|
|
|
<behavior name="returnFaults">
|
2017-07-27 09:58:04 +02:00
|
|
|
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false"/>
|
|
|
|
|
<serviceDebug includeExceptionDetailInFaults="true"/>
|
|
|
|
|
<serviceThrottling maxConcurrentCalls="1000" maxConcurrentSessions="1000"/>
|
|
|
|
|
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</behavior>
|
|
|
|
|
</serviceBehaviors>
|
|
|
|
|
</behaviors>
|
|
|
|
|
<extensions>
|
|
|
|
|
<behaviorExtensions>
|
2017-07-27 09:58:04 +02:00
|
|
|
<add name="MultitenancyExtension" type="BeWo.Service.Multitenancy.MultitenancyBehaviorExtension, BeWo.Service, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"/>
|
|
|
|
|
<add name="SecurityExtension" type="BeWo.Service.Security.SecurityBehaviorExtension, BeWo.Service, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"/>
|
|
|
|
|
<add name="HibernateSessionExtension" type="BeWo.Service.UnitOfWork.HibernateSessionBehaviorExtension, BeWo.Service, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</behaviorExtensions>
|
|
|
|
|
</extensions>
|
|
|
|
|
<bindings>
|
|
|
|
|
<basicHttpBinding>
|
|
|
|
|
<binding name="BeWoBasicEndpoint" closeTimeout="00:05:00" openTimeout="00:05:00" receiveTimeout="00:10:00" sendTimeout="00:05:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
|
2017-07-27 09:58:04 +02:00
|
|
|
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
|
|
|
|
|
<security mode="None"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</binding>
|
|
|
|
|
<binding name="BeWoStreamingEndpoint" receiveTimeout="10:10:00" sendTimeout="10:01:00" maxBufferSize="65536" maxReceivedMessageSize="67108864" messageEncoding="Text" transferMode="StreamedRequest" useDefaultWebProxy="true">
|
2017-07-27 09:58:04 +02:00
|
|
|
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
|
|
|
|
|
<security mode="None"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</binding>
|
|
|
|
|
<binding name="QueryServiceEndpoint" closeTimeout="00:05:00" openTimeout="00:05:00" receiveTimeout="00:10:00" sendTimeout="00:05:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
|
2017-07-27 09:58:04 +02:00
|
|
|
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
<security mode="None">
|
2017-07-27 09:58:04 +02:00
|
|
|
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
|
|
|
|
|
<message clientCredentialType="UserName" algorithmSuite="Default"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</security>
|
|
|
|
|
</binding>
|
|
|
|
|
</basicHttpBinding>
|
|
|
|
|
</bindings>
|
|
|
|
|
<client>
|
2017-07-27 09:58:04 +02:00
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="QueryServiceEndpoint" contract="QueryService.IQueryService" name="QueryServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoStreamingEndpoint" contract="BeWo.ServiceProxy.IStreamingService" name="StreamingServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IEmployeeService" name="EmployeeServiceEndpoint"/>
|
|
|
|
|
<endpoint behaviorConfiguration="BeWoServiceBehavior" binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.ICustomerService" name="CustomerServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IUserService" name="UserServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IValueListService" name="ValueListServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IDownloadService" name="DownloadServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IResourceService" name="BeWoBasicEndpoint"/>
|
|
|
|
|
<endpoint behaviorConfiguration="BeWoServiceBehavior" binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IOperationsService" name="OperationsServiceEndpoint"/>
|
|
|
|
|
<endpoint behaviorConfiguration="BeWoServiceBehavior" binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IAccountingService" name="AccountingServiceEndpoint"/>
|
|
|
|
|
<endpoint behaviorConfiguration="BeWoServiceBehavior" binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IAnalysisService" name="AnalysisServiceEndpoint"/>
|
|
|
|
|
<endpoint binding="basicHttpBinding" bindingConfiguration="BeWoBasicEndpoint" contract="BeWo.ServiceProxy.IMailService" name="MailServiceEndpoint"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</client>
|
|
|
|
|
</system.serviceModel>
|
|
|
|
|
<system.webServer>
|
2017-07-27 09:58:04 +02:00
|
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
<modules>
|
2017-07-27 09:58:04 +02:00
|
|
|
<add name="SoapHibernateSession" type="BeWoPlanerAndroid.Service.SoapHibernateSessionManager, BeWoPlanerAndroid, Version=1.0.0.0, Culture=neutral"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</modules>
|
|
|
|
|
<handlers>
|
2017-07-27 09:58:04 +02:00
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit"/>
|
|
|
|
|
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit"/>
|
|
|
|
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
|
|
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0"/>
|
|
|
|
|
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0"/>
|
|
|
|
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</handlers>
|
2017-07-27 09:58:04 +02:00
|
|
|
<directoryBrowse enabled="true"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</system.webServer>
|
2017-07-27 09:58:04 +02:00
|
|
|
<!--
|
|
|
|
|
Eine Beschreibung der Änderungen von 'web.config' finden Sie unter 'http://go.microsoft.com/fwlink/?LinkId=235367'.
|
|
|
|
|
|
|
|
|
|
Die folgenden Attribute können für die <httpRuntime>-Kennung festgelegt werden.
|
|
|
|
|
<system.Web>
|
|
|
|
|
<httpRuntime targetFramework="4.5" />
|
|
|
|
|
</system.Web>
|
|
|
|
|
-->
|
2016-06-27 01:45:38 +02:00
|
|
|
<system.web>
|
2017-07-27 09:58:04 +02:00
|
|
|
<compilation debug="true" defaultLanguage="c#" targetFramework="4.5">
|
2016-06-27 01:45:38 +02:00
|
|
|
<assemblies>
|
2017-07-27 09:58:04 +02:00
|
|
|
<add assembly="BeWo.Service, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</assemblies>
|
|
|
|
|
</compilation>
|
|
|
|
|
<!--<compilation debug="true" targetFramework="4.5" />
|
|
|
|
|
<httpRuntime targetFramework="4.5" />-->
|
2017-07-27 09:58:04 +02:00
|
|
|
<pages controlRenderingCompatibilityVersion="4.0"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</system.web>
|
|
|
|
|
<runtime>
|
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
|
<dependentAssembly>
|
2017-07-27 09:58:04 +02:00
|
|
|
<assemblyIdentity name="Castle.Core" publicKeyToken="407dd0808d44fbdc" culture="neutral"/>
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-2.5.1.0" newVersion="2.5.1.0"/>
|
2016-06-27 01:45:38 +02:00
|
|
|
</dependentAssembly>
|
|
|
|
|
</assemblyBinding>
|
|
|
|
|
</runtime>
|
|
|
|
|
</configuration>
|