Tagged Questions
The expiry tag has no wiki summary.
13
votes
4answers
2k views
Maximum Year in Expry Date of Credit Card
Various online services have different values for maximum year of expiry, when it comes to Credit Cards.
For instance:
Basecamp: +15 years (2025)
Amazon: +20 years (2030)
Paypal: +19 years (2029)
...
8
votes
1answer
428 views
Facebook Page Access Tokens - Do these expire?
I'm building an app that allows users to administrate their Facebook Fan Pages. This requires the following two Access Tokens:
A User Access Token
A Page Access Token
I'm quite familiar with User ...
6
votes
2answers
518 views
What conditions cause a web browser to display the “Page Expired” message?
I assumed that sending a page out with an expiry (a la)...
Response.Cache.SetExpires(System.DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
...
3
votes
4answers
305 views
How long should you let a user stay signed in for on a web application?
Background to question:
We are building an online web application that requires the user to sign in. We will add the ability to "keep me signed in on this computer for x weeks."
Question:
What is ...
3
votes
2answers
399 views
What's the reason for my ASP.NET Cache never expiring, despite having a sliding expiration time set?
So, I've cached a value using the ASP.NET Cache object, with the following code:
Cache.Insert("TEST_VALUE", 150, null, Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(120));
As I understand it, ...
2
votes
3answers
51 views
Mass object Expiring Strategy architecture
Lets say I have table in my database with few million objects. Each object has property dateCreated.
By default all object should expire 48 hours from the time they were created.
What would be the ...
2
votes
0answers
204 views
WCF Service Certificate - how to manage certificate expiry
I have a WCF service that uses a certificate in the following way:
Credentials.ServiceCertificate.SetCertificate(System.Security.Cryptography.X509Certificates.StoreLocation.LocalMachine, _
...
2
votes
1answer
342 views
Generating unique URL based on user IP for Amazon cloudfront content
I have contents in Amazon cloudfront. These contents are private but will be given access to users when they purchase to get access to the contents for limited period of time.
I want the URLs given ...
2
votes
3answers
812 views
How to unittest Session timeout in Django
I have a requirement something like this:
As soon as the user signsup(and will be in the waiting state untill he confirms his email address), a session variable is set something like ...
2
votes
1answer
1k views
Design Classic ASP applications to detect session expiration dynamically
I've got a Classic ASP application that relies on session; if the user leaves a screen idle and then runs a form post or other operation, I'd like to know whether the session has expired.
Currently ...
1
vote
1answer
47 views
iOS - Getting expiration time of in-app subscription purchases
In my iOS app, I included in-app purchase for subscription. In order to use the app, they have to purchase the subscription and then only it will work.
I don't have any server and so I'll maintain ...
1
vote
1answer
114 views
StoreKit - How to get the correct expiry date?
I have got StoreKit to work for auto-renewable subscriptions and can successfully buy and renew subscriptions via the Sandbox. So far, so good.
The problem I am having is that the expiry date being ...
1
vote
1answer
83 views
apache expiryByType configuration
I am following the suggestion from pagespeed to set a expiry header for most resources, however, I can't seem to set the configuration for all hosts served, it only works if I set it for one single ...
1
vote
1answer
857 views
MySQL delete row after 'expiry'
I am trying to delete expired entries in a MySQL database, on creation or update a field called lastBeat is updated with CURRENT_TIME and I use the following query to check/delete rows older than 20 ...
0
votes
1answer
9 views
Add expiry headers to off-server objects?
I just want to ask if it is possible to add expiry headers to the off-domain objects, for example, if i include jQuery from google CDN , can i add expiry header to it using htaccess or PHP?
0
votes
1answer
18 views
Can/Should I disable the cache expiry when backing data store is unavailable?
I'm just started out with Ehcache, and it seems pretty good so far. I'm using it in a simplistic fashion to speed up reads against a database, but I wonder whether I can also use it to let the ...
0
votes
2answers
35 views
Is there a way to identify the cause for session expiry?
The session time out is set to 20mins but the application session keeps expiring abruptly well within 20 mins. I am not able to identify the cause of session expiry? Is there a way to find what is ...
0
votes
0answers
237 views
vb.net Cookie getting delete upon closing browser?
I am facing a problem with cookie expiry.
Although I set the expiry after 3 days but the cookie
gets deleted upon closing the browser.
Here is my code.
Private Sub setMyCookie(ByVal username As ...
0
votes
1answer
318 views
Active Directory Password Synchronization agent's Identity Manager User Password Expiry
Active Directory Password Synchronization agent is a tool supplied by IBM tivoli for Synchronizing the password with the enterprise applications that are integrated with Tivoli Identity Manager ...
0
votes
0answers
57 views
asp.net web service error “messages includes expiry but clocks are not synchronized”
I got this error "messages includes expiry but clocks are not synchronized" while calling a web service. When I fiddle my .net generated soap request I see an expired timespan node in my soap header. ...
0
votes
0answers
82 views
rails session will expiry when i change client side time?
I don't want session be controlled by client, what shall i do ?
0
votes
2answers
328 views
Activation codes
I am not sure what shall i put as Title for this Question, But I am here looking for help.
I work in a company which makes desktop based application on CORE JAVA Platform.
We provide an ACTIVATION ...
0
votes
1answer
1k views
FormsAuthentication.SetAuthCookie
hi we are using FormsAuthentication.SetAuthCookie(profile.Id, false);
Now the question is when does this cookie expires?
It ofcourse expires once i close all the browsers but it doesn't i keep the ...
0
votes
6answers
239 views
Consensus on software license protection?
Is there any generally accepted guidelines as to when and how often to check with a license server that the license is still active?
Edit: For clarification, the software I am dealing with would have ...
-1
votes
2answers
311 views
Session Clearing Issue with PHP
Hi Im using a facebook connect application.Imagine its a kind of application, where users come to my site, clicks connect button, logs in facebook and comes back to my site and wait for another user ...
-1
votes
1answer
102 views
HTTP_CLIENT_TIMEOUT and cookie expiry period are same?
Is HttpURLConnection.HTTP_CLIENT_TIMEOUT is true, then does this mean session expired?
If yes,
Then, does this same as, cookie expiry ?