Projektdateien hinzufügen.
This commit is contained in:
43
FileinterfaceCronScheduler/App.config
Normal file
43
FileinterfaceCronScheduler/App.config
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup useLegacyV2RuntimeActivationPolicy="true">
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
<appSettings>
|
||||
<!-- =============================================================== -->
|
||||
<!-- iTAC IMSApiDotNet / Login -->
|
||||
<!-- Values correspond to the original FileInterface configuration. -->
|
||||
<!-- =============================================================== -->
|
||||
<add key="IMS.AppID" value="FileInterfaceCronScheduler" />
|
||||
<add key="IMS.ServerUrl" value="http://YOUR-IMS-SERVER:PORT" />
|
||||
<add key="IMS.StationNumber" value="YOUR_STATION" />
|
||||
<add key="IMS.ClientNumber" value="1" />
|
||||
<add key="IMS.RegistrationType" value="S" />
|
||||
<!-- Relative paths are resolved from the EXE directory. -->
|
||||
<add key="IMS.PropertyDirectory" value="." />
|
||||
<!-- false = Cronjobs duerfen die IMS-CustomFunction parallel aufrufen. -->
|
||||
<add key="IMS.SerializeCalls" value="false" />
|
||||
<!-- Scheduler -->
|
||||
<add key="Scheduler.ConfigFile" value="cronjobs.json" />
|
||||
<add key="Watcher.ConfigFile" value="watcherjobs.json" />
|
||||
<add key="Scheduler.WebPrefix" value="http://127.0.0.1:8095/" />
|
||||
<!-- HTTP Basic Authentication for the administration web client. -->
|
||||
<!-- Default login: admin / admin. Change both values before production use. -->
|
||||
<!-- Set Scheduler.WebUser empty only if authentication shall explicitly be disabled. -->
|
||||
<add key="Scheduler.WebUser" value="admin" />
|
||||
<add key="Scheduler.WebPassword" value="admin" />
|
||||
<add key="ClientSettingsProvider.ServiceUri" value="" />
|
||||
</appSettings>
|
||||
<system.web>
|
||||
<membership defaultProvider="ClientAuthenticationMembershipProvider">
|
||||
<providers>
|
||||
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
|
||||
</providers>
|
||||
</membership>
|
||||
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
|
||||
<providers>
|
||||
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
|
||||
</providers>
|
||||
</roleManager>
|
||||
</system.web>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user