-
as seen on Server Fault
- Search for 'Server Fault'
Is it possible to show a different page(custom timeout page vs Login page) on Session Timeout using an ISA Server?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Greetings,
I have the following JS code:
var reloadTimer = function (options) {
var seconds = options.seconds || 0,
logoutURL = options.logoutURL,
message = options.message;
this.start = function () {
setTimeout(function (){
if ( confirm(message) ) {
// RESET TIMER…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can help improve your code by making it easier to write and maintain. The index of all my past little wonders posts can be found here. When I started the “Little Wonders” series, I really wanted…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My question is related to http://stackoverflow.com/questions/2370140/how-to-rescue-timeout-issues-ruby-rails.
Here's the common way to rescue from a timeout:
def action
# Post using Net::HTTP
rescue Timeout::Error => e
# Do something
end
I'd like to determine if the exception was raised…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
With HttpClient, I am setting the default socket/connection timeout with the following:
HttpParams params = new BasicHttpParams();
HttpConnectionParams.setSoTimeout(params, 30000);
HttpConnectionParams.setConnectionTimeout(params, 30000);
mClient = new DefaultHttpClient(connectionManager, params);
I'm…
>>> More