使用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>
但这不允许我再次使用代理票证。我收到消息所以,有没有其他办法可以做到这一点,或者我做错了什么。
由于