I have created a plugin responsible for doing things that should be scheduled.
The code behind the plugin works fine. The problem is, even scheduling the plugin, nothing happens after minutes.
I am putting my plugin attached, and here is my JiwaPluginSchedulerService.exe.config:
- Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="Settings" type="JiwaFinancials.Jiwa.JiwaPluginSchedulerService.Configuration.ConfigurationHandler,JiwaPluginSchedulerService" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
<Settings>
<PollInterval>60000</PollInterval>
<Databases>
<Database>
<DatabaseName>FPTest</DatabaseName>
<ServerName>GREG-HP\SQLEXPRESS</ServerName>
<JiwaUsername>Admin</JiwaUsername>
<JiwaPassword>password</JiwaPassword>
</Database>
</Databases>
</Settings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
PS: The Stored Procedure doesn't do nothing special, it just gets all the parameters from the database.
Could someone help me with this?
Cheers


