<?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: ADF Ticket Expire time in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24860#M10779</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using adf with APS.&lt;/P&gt;&lt;P&gt;What is the ticket expire time? I am using basic auth.&lt;/P&gt;</description>
    <pubDate>Fri, 21 Aug 2020 05:47:07 GMT</pubDate>
    <dc:creator>sp2</dc:creator>
    <dc:date>2020-08-21T05:47:07Z</dc:date>
    <item>
      <title>ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24858#M10777</link>
      <description>I am using adf with alfresco.Alfresco session timeout is 30 min and ticket expiration time is 1 hr.What will happen if I make adf idle after login up 30 min?Will I need to login again?Eugenio Romano‌ Please comment on this.</description>
      <pubDate>Tue, 26 Feb 2019 13:16:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24858#M10777</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2019-02-26T13:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24859#M10778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep you need to login&amp;nbsp;the cool thing is that you can automatically redirect a user to the login page over a 401 event for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE style="color: #a9b7c6; background-color: #2b2b2b; font-size: 9.0pt;"&gt;&lt;BR /&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;import &lt;/SPAN&gt;{ Component&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;ViewEncapsulation&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;OnInit } &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;from &lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;'@angular/core'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;import &lt;/SPAN&gt;{ AuthenticationService&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;AlfrescoApiService&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;PageTitleService } &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;from &lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;'@alfresco/adf-core'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;import &lt;/SPAN&gt;{ Router } &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;from &lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;'@angular/router'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;import &lt;/SPAN&gt;{ MatDialog } &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;from &lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;'@angular/material'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #bbb529;"&gt;@Component&lt;/SPAN&gt;({&lt;BR /&gt;    &lt;SPAN style="color: #9876aa;"&gt;selector&lt;/SPAN&gt;: &lt;SPAN style="color: #6a8759;"&gt;'app-root'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;    &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;templateUrl&lt;/SPAN&gt;: &lt;SPAN style="color: #6a8759;"&gt;'./app.component.html'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;    &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;styleUrls&lt;/SPAN&gt;: [&lt;SPAN style="color: #6a8759;"&gt;'./app.component.scss'&lt;/SPAN&gt;]&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;    &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;encapsulation&lt;/SPAN&gt;: ViewEncapsulation.&lt;SPAN style="color: #9876aa;"&gt;None&lt;BR /&gt;&lt;/SPAN&gt;})&lt;BR /&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;export class &lt;/SPAN&gt;AppComponent &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;implements &lt;/SPAN&gt;OnInit {&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;constructor&lt;/SPAN&gt;(&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;private &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;pageTitleService&lt;/SPAN&gt;: PageTitleService&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;private &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;alfrescoApiService&lt;/SPAN&gt;: AlfrescoApiService&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;private &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;authenticationService&lt;/SPAN&gt;: AuthenticationService&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;private &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;router&lt;/SPAN&gt;: Router&lt;SPAN style="color: #cc7832;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;private &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;dialogRef&lt;/SPAN&gt;: MatDialog) {&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN style="color: #ffc66d;"&gt;ngOnInit&lt;/SPAN&gt;() {&lt;BR /&gt;        &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa;"&gt;pageTitleService&lt;/SPAN&gt;.&lt;SPAN style="color: #ffc66d;"&gt;setTitle&lt;/SPAN&gt;(&lt;SPAN style="color: #6a8759;"&gt;'title'&lt;/SPAN&gt;)&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;        &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa;"&gt;alfrescoApiService&lt;/SPAN&gt;.&lt;SPAN style="color: #ffc66d;"&gt;getInstance&lt;/SPAN&gt;().&lt;SPAN style="color: #9876aa;"&gt;on&lt;/SPAN&gt;(&lt;SPAN style="color: #6a8759;"&gt;'error'&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;(error) =&amp;gt; {&lt;BR /&gt;            &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;if &lt;/SPAN&gt;(error.&lt;SPAN style="color: #9876aa;"&gt;status &lt;/SPAN&gt;=== &lt;SPAN style="color: #6897bb;"&gt;401&lt;/SPAN&gt;) {&lt;BR /&gt;                &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;if &lt;/SPAN&gt;(!&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa;"&gt;authenticationService&lt;/SPAN&gt;.&lt;SPAN style="color: #ffc66d;"&gt;isLoggedIn&lt;/SPAN&gt;()) {&lt;BR /&gt;                    &lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa;"&gt;dialogRef&lt;/SPAN&gt;.&lt;SPAN style="color: #ffc66d;"&gt;closeAll&lt;/SPAN&gt;()&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                    &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832; font-weight: bold;"&gt;this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa;"&gt;router&lt;/SPAN&gt;.&lt;SPAN style="color: #ffc66d;"&gt;navigate&lt;/SPAN&gt;([&lt;SPAN style="color: #6a8759;"&gt;'/login'&lt;/SPAN&gt;])&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;                &lt;/SPAN&gt;}&lt;BR /&gt;            }&lt;BR /&gt;        })&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;    &lt;/SPAN&gt;}&lt;BR /&gt;}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Mar 2019 14:39:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24859#M10778</guid>
      <dc:creator>eugenio_romano</dc:creator>
      <dc:date>2019-03-07T14:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24860#M10779</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using adf with APS.&lt;/P&gt;&lt;P&gt;What is the ticket expire time? I am using basic auth.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 05:47:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24860#M10779</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-08-21T05:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24861#M10780</link>
      <description>&lt;P&gt;Is there a place to configure the expire time for the tickets?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 02:40:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24861#M10780</guid>
      <dc:creator>Upladder</dc:creator>
      <dc:date>2023-09-06T02:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24862#M10781</link>
      <description>&lt;P&gt;Check the documentation on ACS, the configuration is done in the property files in backend&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 13:21:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24862#M10781</guid>
      <dc:creator>denys</dc:creator>
      <dc:date>2023-09-27T13:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24863#M10782</link>
      <description>&lt;P&gt;&amp;gt; Check the documentation on ACS, the configuration is done in the property files in backend&lt;/P&gt;&lt;P&gt;I explored the documentation on ACS.&lt;BR /&gt;I only find "A ticket is valid for a specific time".&lt;BR /&gt;I did not find properties and a path for the specific configuration file in backend.&lt;BR /&gt;&lt;A href="https://docs.alfresco.com/content-services/latest/develop/rest-api-guide/install/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/latest/develop/rest-api-guide/install/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-11-03 at 09-07-02 Alfresco Docs - Install and authenticate.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/52iD6067B745DA05E0D/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2023 14:04:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24863#M10782</guid>
      <dc:creator>Upladder</dc:creator>
      <dc:date>2023-11-03T14:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24864#M10783</link>
      <description>&lt;P&gt;It's in the repository properties file:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Alfresco/alfresco-community-repo/blob/master/repository/src/main/resources/alfresco/repository.properties#L545" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/Alfresco/alfresco-community-repo/blob/master/repository/src/main/resources/alfresco/repository.properties#L545&lt;/A&gt;&lt;/P&gt;&lt;P&gt;can also be googled or searched on stack overflow&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/7426878/alfresco-ticket-validity" target="_blank" rel="nofollow noopener noreferrer"&gt;https://stackoverflow.com/questions/7426878/alfresco-ticket-validity&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2023 14:22:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24864#M10783</guid>
      <dc:creator>denys</dc:creator>
      <dc:date>2023-11-03T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: ADF Ticket Expire time</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24865#M10784</link>
      <description>&lt;P&gt;And you already raised exact same question mutliple times, and got the solution marked as solved. &lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/session-timeout/td-p/312741" target="_blank" rel="nofollow noopener noreferrer"&gt;https://hub.alfresco.com/t5/alfresco-content-services-forum/session-timeout/td-p/312741&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2023 14:26:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/adf-ticket-expire-time/m-p/24865#M10784</guid>
      <dc:creator>denys</dc:creator>
      <dc:date>2023-11-03T14:26:33Z</dc:date>
    </item>
  </channel>
</rss>

