<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: BluePrismScheduleMonitor fails on startup in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101607#M3282</link>
    <description>Hi Martin,&lt;BR /&gt;&lt;BR /&gt;v1.0.2 is ready for download: &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I recommend starting fresh with this update rather than the steps in my other answer (copying/pasting that XML from this web page created a separate encoding issue). Let me know how this works.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Important to note&lt;/STRONG&gt;: Even with this new v1.0.2, when you run &lt;STRONG&gt;BluePrismScheduleMonitor.exe&lt;/STRONG&gt; for the first time, its ability to encrypt/decrypt the config gets bound to that computer. If you then move/copy the Schedule Monitor folder to another computer, you will see this encryption error again. In reality, the Schedule Monitor is not really portable between computers currently.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;My recommendation&lt;/STRONG&gt;: Just take care to download a fresh copy from the DX and only run the .exe once you have it placed on the computer where you want it to run long term.</description>
    <pubDate>Thu, 03 Feb 2022 21:15:36 GMT</pubDate>
    <dc:creator>charliekovacs</dc:creator>
    <dc:date>2022-02-03T21:15:36Z</dc:date>
    <item>
      <title>BluePrismScheduleMonitor fails on startup</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101605#M3280</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;i've tried to start the BluePrismScheduleMonitor.exe which i've download from DX (Function for Blue Prism Schedule Monitor - 1.0.1; &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor)" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor)&lt;/A&gt;. &lt;BR /&gt;But the start fails with this error message: "Failed to decrypt using provider 'DataProtectionConfigurationProvider'. Error message from the provider: Key not valid for use in specified state.".&lt;BR /&gt;&lt;BR /&gt;How can i get the right key to decrypt the locally stored configuration settings?</description>
      <pubDate>Thu, 03 Feb 2022 15:08:27 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101605#M3280</guid>
      <dc:creator>Stardust</dc:creator>
      <dc:date>2022-02-03T15:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: BluePrismScheduleMonitor fails on startup</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101606#M3281</link>
      <description>Hi Martin,&lt;BR /&gt;&lt;BR /&gt;I reproduced the same error and solved it with the below steps.&lt;BR /&gt;&lt;BR /&gt;1. Open the config file (&lt;STRONG&gt;BluePrismScheduleMonitor.exe.Config&lt;/STRONG&gt;) in Notepad (or similar)&lt;BR /&gt;2. Erase all of its contents and paste in the below XML snippet&lt;BR /&gt;3. Save the file&lt;BR /&gt;4. Run &lt;STRONG&gt;BluePrismSchedulerMonitor.exe&lt;/STRONG&gt; and see if that eliminates the error&lt;BR /&gt;&lt;BR /&gt;Let me know how that goes. I think I have the root issue identified. I will follow up with info about a v1.0.2 update that would fix this permanently.&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;configuration&amp;gt;
  &amp;lt;startup&amp;gt;
    &amp;lt;supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /&amp;gt;
  &amp;lt;/startup&amp;gt;
  &amp;lt;appSettings&amp;gt;
    &amp;lt;add key="LoggingEnabled" value="false" /&amp;gt;
    &amp;lt;add key="LogFolderLocation" value="" /&amp;gt;
    &amp;lt;add key="MaximumLogFileSize" value="100" /&amp;gt;
    &amp;lt;add key="MaximumNumberOfArchivalLogs" value="3" /&amp;gt;
    &amp;lt;add key="MinimumLogLevel" value="0" /&amp;gt;
    &amp;lt;add key="EmailSmtpHost" value="" /&amp;gt;
    &amp;lt;add key="EmailSmtpPort" value="" /&amp;gt;
    &amp;lt;add key="EmailUsername" value="" /&amp;gt;
    &amp;lt;add key="EmailPassword" value="" /&amp;gt;
    &amp;lt;add key="EmailUseSsl" value="" /&amp;gt;
    &amp;lt;add key="EmailRecipients" value="" /&amp;gt;
    &amp;lt;add key="DatabaseConnectionType" value="0" /&amp;gt;
    &amp;lt;add key="DatabaseServer" value="" /&amp;gt;
    &amp;lt;add key="DatabaseName" value="" /&amp;gt;
    &amp;lt;add key="DatabaseUser" value="" /&amp;gt;
    &amp;lt;add key="DatabasePassword" value="" /&amp;gt;
    &amp;lt;add key="DatabaseAdditionalParameters" value="" /&amp;gt;
    &amp;lt;add key="DatabaseCustomString" value="" /&amp;gt;
    &amp;lt;add key="LastRunTimestamp" value="" /&amp;gt;
    &amp;lt;add key="CurrentRunTimestamp" value="" /&amp;gt;
    &amp;lt;add key="ClientSettingsProvider.ServiceUri" value="" /&amp;gt;
  &amp;lt;/appSettings&amp;gt;
  &amp;lt;system.web&amp;gt;
    &amp;lt;membership defaultProvider="ClientAuthenticationMembershipProvider"&amp;gt;
      &amp;lt;providers&amp;gt;
        &amp;lt;add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /&amp;gt;
      &amp;lt;/providers&amp;gt;
    &amp;lt;/membership&amp;gt;
    &amp;lt;roleManager defaultProvider="ClientRoleProvider" enabled="true"&amp;gt;
      &amp;lt;providers&amp;gt;
        &amp;lt;add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /&amp;gt;
      &amp;lt;/providers&amp;gt;
    &amp;lt;/roleManager&amp;gt;
  &amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;​&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Feb 2022 19:39:12 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101606#M3281</guid>
      <dc:creator>charliekovacs</dc:creator>
      <dc:date>2022-02-03T19:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: BluePrismScheduleMonitor fails on startup</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101607#M3282</link>
      <description>Hi Martin,&lt;BR /&gt;&lt;BR /&gt;v1.0.2 is ready for download: &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism-schedule-monitor&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I recommend starting fresh with this update rather than the steps in my other answer (copying/pasting that XML from this web page created a separate encoding issue). Let me know how this works.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Important to note&lt;/STRONG&gt;: Even with this new v1.0.2, when you run &lt;STRONG&gt;BluePrismScheduleMonitor.exe&lt;/STRONG&gt; for the first time, its ability to encrypt/decrypt the config gets bound to that computer. If you then move/copy the Schedule Monitor folder to another computer, you will see this encryption error again. In reality, the Schedule Monitor is not really portable between computers currently.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;My recommendation&lt;/STRONG&gt;: Just take care to download a fresh copy from the DX and only run the .exe once you have it placed on the computer where you want it to run long term.</description>
      <pubDate>Thu, 03 Feb 2022 21:15:36 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101607#M3282</guid>
      <dc:creator>charliekovacs</dc:creator>
      <dc:date>2022-02-03T21:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: BluePrismScheduleMonitor fails on startup</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101608#M3283</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2629"&gt;@charliekovacs&lt;/a&gt; - For this ScheduleMonitor asset that you created, do you know if it can be expanded to integrate with type of API calls from say, a Blue Prism process?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Binit​</description>
      <pubDate>Tue, 15 Mar 2022 12:05:51 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/BluePrismScheduleMonitor-fails-on-startup/m-p/101608#M3283</guid>
      <dc:creator>BinitAmin</dc:creator>
      <dc:date>2022-03-15T12:05:51Z</dc:date>
    </item>
  </channel>
</rss>

