<?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: SmartTask's issue on the R81.20 for &amp;quot;Session Name Lenght&amp;quot; (probably a bug) in General Topics</title>
    <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180304#M30074</link>
    <description>&lt;P&gt;Hello Champion,&lt;BR /&gt;&lt;BR /&gt;I had tried your script before writing my post. It worked for the session description of less than 20 characters. But when entering a session name with more than 20 characters, the results were same that when using my script&lt;/P&gt;</description>
    <pubDate>Wed, 10 May 2023 08:08:30 GMT</pubDate>
    <dc:creator>patones1</dc:creator>
    <dc:date>2023-05-10T08:08:30Z</dc:date>
    <item>
      <title>SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180187#M30056</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;One SmartTask's&amp;nbsp; script which used to work on the version &lt;STRONG&gt;R81.10&lt;/STRONG&gt;, is not working correctly in the &lt;STRONG&gt;R81.20 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It is about the script to run before publishing that will force to write a &lt;U&gt;session name&lt;/U&gt; with more than &lt;STRONG&gt;20&lt;/STRONG&gt; characters :&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;#!/bin/bash&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;namelen=`echo $1 | base64 -id | jq -r .session.\"session-name\" | wc -c`&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;if [[ $namelen -le 20 ]]; then&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;printf '{"result":"failure","message":"Session name should be at least 20 characters"}\n'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;exit 0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;else&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;printf '{"result":"success"}\n'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;exit 0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;fi&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;So everything looks right when I write a session name of&lt;STRONG&gt; less&lt;/STRONG&gt; than &lt;STRONG&gt;20&lt;/STRONG&gt; characters. I will use the default session name :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="patones1_0-1683478824167.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20812iE7E9B4BB75EFC48B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="patones1_0-1683478824167.jpeg" alt="patones1_0-1683478824167.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;As usual, the publish operation failed :&lt;/P&gt;&lt;DIV class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="patones1_1-1683478824175.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20813iD2C62FFE57C1B598/image-size/medium?v=v2&amp;amp;px=400" role="button" title="patones1_1-1683478824175.jpeg" alt="patones1_1-1683478824175.jpeg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, I wrote a session name of&lt;STRONG&gt; more &lt;/STRONG&gt;than &lt;STRONG&gt;20&lt;/STRONG&gt; characters :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Publish+20.JPG" style="width: 497px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20814i38575502EB363D06/image-size/large?v=v2&amp;amp;px=999" role="button" title="Publish+20.JPG" alt="Publish+20.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Surprise. I got the &lt;STRONG&gt;same error&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="patones1_1-1683478824175.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20813iD2C62FFE57C1B598/image-size/medium?v=v2&amp;amp;px=400" role="button" title="patones1_1-1683478824175.jpeg" alt="patones1_1-1683478824175.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested the same in a &lt;STRONG&gt;R81.10&lt;/STRONG&gt; and the result with a session name of&lt;STRONG&gt; more&lt;/STRONG&gt; than &lt;STRONG&gt;20&lt;/STRONG&gt; characters, &lt;STRONG&gt;was the spected one&lt;/STRONG&gt; :&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="details 80.10.JPG" style="width: 343px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20815i96589EF33FE47A93/image-size/large?v=v2&amp;amp;px=999" role="button" title="details 80.10.JPG" alt="details 80.10.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It looks like there is a &lt;STRONG&gt;bug&lt;/STRONG&gt; on the &lt;STRONG&gt;R81.20&lt;/STRONG&gt; version&lt;/P&gt;&lt;P&gt;I will try to update the SMS with the last jumbo.&lt;BR /&gt;If you have no news, it means that the update did not work.&lt;/P&gt;&lt;P&gt;Have a nice end of the day&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 17:05:38 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180187#M30056</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-07T17:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180188#M30057</link>
      <description>&lt;P&gt;Is this for one of the CCSE class lab exercises?&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 17:56:42 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180188#M30057</guid>
      <dc:creator>Timothy_Hall</dc:creator>
      <dc:date>2023-05-07T17:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180190#M30058</link>
      <description>&lt;P&gt;I can try this in my R81.20 jumbo 10 lab tomorrow. So you just added new smart task to run this script, thats it?&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 19:14:25 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180190#M30058</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-07T19:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180191#M30059</link>
      <description>&lt;P&gt;It is the script of the CCSE lab. The good one.&lt;BR /&gt;I wonder if they have change it for the R81.20&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 21:18:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180191#M30059</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-07T21:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180192#M30060</link>
      <description>&lt;P&gt;Yes.&amp;nbsp; It needs to be run twice.&lt;BR /&gt;Once with a session name of less than 20 characters. (it will work)&lt;BR /&gt;And then with more than 20 characters. (I hope that with the Jumbo10, it will be able to publish).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 21:23:40 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180192#M30060</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-07T21:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180194#M30062</link>
      <description>&lt;P&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/48806"&gt;@patones1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tried it in R81.20 lab and it was exact same issue as you described.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 21:34:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180194#M30062</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-07T21:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180195#M30063</link>
      <description>&lt;P&gt;It looks like is the second part of the script that R81.20 doesn't see :&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;else&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;printf '{"result":"success"}\n'&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2023 22:04:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180195#M30063</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-07T22:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180221#M30065</link>
      <description>&lt;P&gt;That's normal and expected behaviour.&lt;BR /&gt;The first publish simply activates your SmartTask, not matter what is configured to perform.&lt;BR /&gt;Afterwards the SmartTask is ready for use.&lt;BR /&gt;&lt;A href="https://community.checkpoint.com/t5/SmartTasks/bd-p/SmartTasks" target="_self"&gt;SmartTask examples&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 10:22:20 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180221#M30065</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2023-05-08T10:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180222#M30066</link>
      <description>&lt;P&gt;&lt;EM&gt;The first publish simply activates your SmartTask ....&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This is obvious. My testing is after activating the SmartTask by publishing first.&lt;/P&gt;&lt;P&gt;Then I make changes and publish each change (once with session name of less than 20 characters and the other with more than 20)&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 10:32:50 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180222#M30066</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-08T10:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180268#M30069</link>
      <description>&lt;P&gt;You didn't get what I wanted you to test with my &lt;A href="https://community.checkpoint.com/t5/SmartTasks/bd-p/SmartTasks" target="_self"&gt;SmartTask examples&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Step1: Please go to&amp;nbsp;&lt;A href="https://community.checkpoint.com/t5/SmartTasks/Session-description-check/m-p/177546#M6" target="_self"&gt;this SmartTask&lt;/A&gt; and try if it works for you&lt;/P&gt;
&lt;P&gt;Step2: If step 1 works as expected, please change "session-description" to "session-name" and adjust the message accordingly. Test again and tell us your result.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 18:25:25 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180268#M30069</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2023-05-08T18:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180274#M30070</link>
      <description>&lt;P&gt;I just verified and works in R81.20...amazing work as always&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/687"&gt;@Danny&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 18:50:44 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180274#M30070</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-08T18:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180275#M30071</link>
      <description>&lt;P&gt;Thx, please comment this in the SmartTask as well.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 19:22:02 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180275#M30071</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2023-05-08T19:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180278#M30072</link>
      <description>&lt;P&gt;Just did.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 19:25:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180278#M30072</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-08T19:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for "Session Name Lenght" (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180304#M30074</link>
      <description>&lt;P&gt;Hello Champion,&lt;BR /&gt;&lt;BR /&gt;I had tried your script before writing my post. It worked for the session description of less than 20 characters. But when entering a session name with more than 20 characters, the results were same that when using my script&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 08:08:30 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180304#M30074</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-10T08:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for &amp;quot;Session Name Lenght&amp;quot; (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180345#M30076</link>
      <description>&lt;P&gt;My unaltered script won't work to verify your demand for session name length verification.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/48806"&gt;@patones1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;- I load your script,"&lt;FONT color="#339966"&gt;Session-Description&lt;/FONT&gt;", in the Script Repository.&lt;BR /&gt;- I create the smartTask "&lt;FONT color="#339966"&gt;Session-Description&lt;/FONT&gt;"&lt;BR /&gt;- I publish the smartTask operation.&lt;BR /&gt;- I make a change on a policy and I publish with a &lt;FONT color="#FF0000"&gt;session name&lt;/FONT&gt; of &lt;STRONG&gt;less&lt;/STRONG&gt; than 20 characters&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You need to adjust it first as in this example:&lt;/P&gt;
&lt;PRE class="code-preview_dark__v9aBF" tabindex="0" data-testid="code-preview-text-area"&gt;test `cat $1|jq -r .session.\"session-name\"|wc -c` -le 20 &amp;amp;&amp;amp; echo '{"result":"failure","message":"Session name should be at least 20 characters"}' || echo '{"result":"success"}'&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 10:26:31 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180345#M30076</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2023-05-09T10:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: SmartTask's issue on the R81.20 for &amp;quot;Session Name Lenght&amp;quot; (probably a bug)</title>
      <link>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180369#M30080</link>
      <description>&lt;P&gt;Hello Danny,&lt;/P&gt;&lt;P&gt;Yes, you are right. I was testing too fast without modifying the script.&lt;/P&gt;&lt;P&gt;The script &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;works perfectly&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;. When I write a session name of more than 20 characters,&amp;nbsp; It executes the result:"&lt;STRONG&gt;success&lt;/STRONG&gt;" as it should do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Succes_champion_Script.JPG" style="width: 532px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/20844i60AFE2562DC23652/image-size/large?v=v2&amp;amp;px=999" role="button" title="Succes_champion_Script.JPG" alt="Succes_champion_Script.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and sorry for the misunderstanding.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 12:15:01 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/SmartTask-s-issue-on-the-R81-20-for-quot-Session-Name-Lenght/m-p/180369#M30080</guid>
      <dc:creator>patones1</dc:creator>
      <dc:date>2023-05-09T12:15:01Z</dc:date>
    </item>
  </channel>
</rss>

