1

在使用 CAS 服务器时,有什么方法可以增加代理票证的使用次数。另外,有什么办法可以增加票到期前的时间。我知道 CAS 中的ticketExpirationPolicies.xml文件,我尝试按如下方式更改文件

<bean id="serviceTicketExpirationPolicy" class="org.jasig.cas.ticket.support.MultiTimeUseOrTimeoutExpirationPolicy">
        <!-- This argument is the number of times that a ticket can be used before its considered expired. -->
        <constructor-arg
            index="0"
            value="10" />

        <!-- This argument is the time a ticket can exist before its considered expired.  -->
        <constructor-arg
            index="1"
            value="7200000" />
    </bean>

但这不会让我再次使用代理票。我收到消息那么,有没有其他方法可以做到这一点,或者我做错了什么。

谢谢

4

0 回答 0