<?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 All your pending sessions… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66692#M19297</link>
    <description>All your pending sessions are taking up a license - delete them all (including on previous days that you might not be able to see until you change the day filter in control room)</description>
    <pubDate>Tue, 10 Apr 2018 15:58:00 GMT</pubDate>
    <dc:creator>Denis__Dennehy</dc:creator>
    <dc:date>2018-04-10T15:58:00Z</dc:date>
    <item>
      <title>Scheduler creating a session but not starting it - session stays in pending status</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66691#M19296</link>
      <description>Hi,

A bunch of our scheduled&amp;nbsp;processes got stuck on "Pending" status after sessions were created yesterday. Their sessions were created in between a 5 minute window period. Other scheduled processes were able to run on other resource PC after this time.

Few points here:

1. Resource PCs are all connected to the App Server

2. Processes were all set to run "Exclusive"

3. Resource PC event log

- showing only Session Created, but doesn't show session started like usual and no error message

- no network interruption shown

&amp;nbsp;

Any suggestion would be much appreciated.

&amp;nbsp;

Thank you

Shirley</description>
      <pubDate>Tue, 03 Apr 2018 00:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66691#M19296</guid>
      <dc:creator>ShirleyZhang1</dc:creator>
      <dc:date>2018-04-03T00:29:00Z</dc:date>
    </item>
    <item>
      <title>All your pending sessions…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66692#M19297</link>
      <description>All your pending sessions are taking up a license - delete them all (including on previous days that you might not be able to see until you change the day filter in control room)</description>
      <pubDate>Tue, 10 Apr 2018 15:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66692#M19297</guid>
      <dc:creator>Denis__Dennehy</dc:creator>
      <dc:date>2018-04-10T15:58:00Z</dc:date>
    </item>
    <item>
      <title>Hi Denis, Does this mean,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66693#M19298</link>
      <description>Hi Denis, Does this mean, even process (sessions)&amp;nbsp;which are in pending status are license counted. My understanding till now is license counted based on the number of concurrent sessions which are in running. Please correct me if I am wrong!
Thanks and REgards,
Syed Raza</description>
      <pubDate>Thu, 12 Apr 2018 11:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66693#M19298</guid>
      <dc:creator>syed.viqar.raza</dc:creator>
      <dc:date>2018-04-12T11:54:00Z</dc:date>
    </item>
    <item>
      <title>A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66694#M19299</link>
      <description>A pending session is included in the concurrent session number - it is part of a prevention stopping two people starting a session at the same time using the same final available session license.&amp;nbsp; This will not be an issue for you as you should not have any pending sessions - usually a pending session becomes running almost immediately.</description>
      <pubDate>Thu, 12 Apr 2018 19:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66694#M19299</guid>
      <dc:creator>Denis__Dennehy</dc:creator>
      <dc:date>2018-04-12T19:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66695#M19300</link>
      <description>Hi,&lt;BR /&gt;we're facing the issue that Scheduler created pending sessions and didn't start them since BP 6.3.&amp;nbsp;&lt;BR /&gt;We got a "session clearer" vbo, basically this Code:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim maxSessionCount As Integer = 32767

Dim sessions As ICollection(Of clsProcessSession) = gSv.GetFilteredSessions(
 New String(){"All"},
 New String(){resource},
 New String(){user}.  'user, 
 SessionStatus.Pending, 
 Nothing,
 Nothing,
 Nothing,
 False,
 False, 
 maxSessionCount,
 sortInfo)

Dim talker As New clsTalker(120)
Dim err As String = Nothing
If Not talker.Connect(resource, err) Then Throw New Exception( "Could not connect to '" &amp;amp; resource &amp;amp; "' - " &amp;amp; err)
If Not talker.Authenticate() Then Throw New Exception( "Authentication Error")

Dim succeeded As New List(Of Guid)
Dim failed As New List(Of Guid)

For Each sess As clsProcessSession In sessions
	If talker.Say("delete " &amp;amp; sess.SessionID.ToString(), "SESSION DELETED : " &amp;amp; sess.SessionID.ToString())  Then succeeded.Add(sess.SessionID) _
	 Else failed.Add(sess.SessionID)
Next

If failed.Count &amp;gt; 0 Then 
  Throw New Exception( "Failed to delete sessions: " &amp;amp; String.Join(", ", failed) &amp;amp;
 If(succeeded.Count &amp;gt; 0, " (successfully deleted " &amp;amp; succeeded.Count &amp;amp; " session/s)", "")​&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;It was running very well under 6.4 and deletes the pending session for the given user/resource.&lt;BR /&gt;But after migration to 6.7.1 it doesn't work anymore.&lt;BR /&gt;&lt;BR /&gt;Obviously something was changed in the clsTalker.&amp;nbsp;&lt;BR /&gt;1) it requires now a TimeOut Value.&lt;BR /&gt;2) Talker.Say("delete " &amp;amp; sess.SessionID' doesn't delete the session, it still persists.&lt;BR /&gt;&lt;BR /&gt;Where can I get a documentation about AutomateAppCore.clsTalker ? What is the command for Talker.say delete session?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot in advance and BR&lt;BR /&gt;AJ&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Nov 2020 16:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66695#M19300</guid>
      <dc:creator>UsrAJ</dc:creator>
      <dc:date>2020-11-10T16:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66696#M19301</link>
      <description>&lt;P&gt;up! we too are searching something for delete pending itens&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;someone can help?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gustavo Klein&lt;BR /&gt;System Analyst&lt;BR /&gt;UTC&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Nov 2020 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66696#M19301</guid>
      <dc:creator>GustavoKlein</dc:creator>
      <dc:date>2020-11-13T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: All your pending sessions…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66697#M19302</link>
      <description>Hello Denis&lt;BR /&gt;could you confirm this is still the case in BP v6.10? Pending sessions do consume / reserve licences?&lt;BR /&gt;Thank&amp;amp;regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Alexander Bopp&lt;BR /&gt;Business Automation Engineer&lt;BR /&gt;Credit Suisse AG&lt;BR /&gt;Europe/Zurich&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 12:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66697#M19302</guid>
      <dc:creator>AlexanderBopp</dc:creator>
      <dc:date>2021-10-21T12:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: All your pending sessions…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66698#M19303</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/45411"&gt;@AlexanderBopp&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Yes Pending sessions do consume/reserve license​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jerin Jose&lt;BR /&gt;Technical Product Owner&lt;BR /&gt;EY&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;*"If you find  this post helpful mark it as best answer, .*&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 13:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66698#M19303</guid>
      <dc:creator>JerinJose</dc:creator>
      <dc:date>2021-10-21T13:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66699#M19304</link>
      <description>I believe that this type of delete directly on the database makes the warranty of the blue prism product lose, can you confirm that? &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Sr Business Analyst&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;PAULISTA&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 13:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66699#M19304</guid>
      <dc:creator>EmersonF</dc:creator>
      <dc:date>2021-10-21T13:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66700#M19305</link>
      <description>Generally, you should not delete sessions directly from the database. You can use the resource PC's HTTP interface, or AutomateC, to stop a pending/running session. If you feel you need to remove those sessions from the database I'd suggest opening a ticket with support. They should have the necessary tools to perform the action.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 14:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66700#M19305</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-10-21T14:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66701#M19306</link>
      <description>this VBO was provided by Blueprism only so i guess its safe to use.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jerin Jose&lt;BR /&gt;Technical Product Owner&lt;BR /&gt;EY&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;*"If you find  this post helpful mark it as best answer, .*&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 14:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66701#M19306</guid>
      <dc:creator>JerinJose</dc:creator>
      <dc:date>2021-10-21T14:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: A pending session is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66702#M19307</link>
      <description>If support or PS provided it then you should be covered.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 14:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Scheduler-creating-a-session-but-not-starting-it-session-stays/m-p/66702#M19307</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-10-21T14:48:00Z</dc:date>
    </item>
  </channel>
</rss>

