Is it possible to the the session timeout in seconds in ISA Server? I have an intranet access by ISA Server and the session timeout is too short and I would like to increase it.
I have Ubuntu 12.04 running in virtual box inside Windows 7. I have the network adapter set as NAT and everything networking wise seems to be running smoothly (internet / git ect.). However, for some reason, svn always times out when i.e
michael@michael-VirtualBox:~/Documents/deleteme$ svn co svn://svn.openwrt.org/openwrt/trunk/
svn: Can't connect…
Is your application scalable under increased activity? Timothy Claason brings us a methodology for testing how your application will deal with database load.
This question already has an answer here:
Any app that tells me to take regular breaks from working?
3 answers
What I'd like to do is lock the screen and have it wait a set amount of…
On remotely rebooting a 12.04 machine I found it hanging at the "unable to mount soandso: Skip, Manual Abort? " (That's pretty much how I remember the message) The machine was basically stopped there until I hooked up a keyboard and pressed "s". I can see the rationale for the question, but I'd really like to know where to configure it or turn it…
Maybe I'm doing something wrong, but shouldn't the commands (run separately)
notify-send -t 1 "test"
notify-send -t 1000 "test"
notify-send -t 10000 "test"
Have different timeouts? The first being nearly instantaneous, the second one taking 1 sec and the third 100 seconds. In all cases it seems to take about six seconds.
I'm using the…
I am running Ubuntu 12.04.
I cannot for the life of me get the grub menu (with options) to go away.
I would like it to auto-boot into the first option. I've edited /etc/default/grub so that it looks like the following:
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s…
For testing I have 1 isolated page - no masters, controls, …. My sessions are lost after about 30 seconds. I’ve tried setting timeout on the page itself, in web.config, both, and neither. Tried forms authentication with timeout and windows authentication. Recycle the AppPool after changes.
I can response.write from the Session_Start ,…
How do I increase the timeout in NHibernate Linq To Sql?
Not the Connection Timeout but the ado command timeout.
using (ISession session = NHibernateHelper.OpenSession(NHibernateHelper.Databases.CarrierCDR))
using (session.BeginTransaction(IsolationLevel.ReadUncommitted))
{
lCdrs = (from verizon in…
I'd like to set the timeout on a specific Session Variable in a .Net web application, but leave other Session variables alone. Is this possible?
Example:
I have 5 Session Variables
Session(var1)
Session(var2)
Session(var3)
Session(var4)
Session(var5)
I want to set it so that Session(var1) through…
Hi,
we are developing a SOAP webservice (Apache/PHP). All run well for small size calls, but with a 1Mb soap call (the HTTPS call size is 1MB) our Delphi Soap client stop with a timeout on all PC but one, and our PHP clients run well with a default_socket_timeout=300, but stop with a "Error…
I'm thinking of setting the timeout on all my tooltips in a WinForms application to infinity (or an extremely large value). The motivation is that it's annoying for the user if the tooltip disappears while I'm still reading it, without providing any extra value whatsoever as far as I can…
I'm doing a basic select against a view. Unfortunately the result can be slow and I'm getting timeout errors intermittently. How can I increase the timeout?
Using .NET 3.5, Sql Server 2000, Linq2Entities
I'm using the very basic query List<MyData> result =…
Hi all. I am looking for the VB.NET code of a very handy little *.bas file I used to use in Visual Basic 6. The file was called timeout.bas and it was the greatest module ever to me. I want to switch to start using VB.NET finally but this single file is holding…
I'm having reports and complaints from my user that they will be using a screen and get kicked back to the login screen immediately on their next request. It doesn't happen all the time but randomly. After looking at the Web server the error that shows up in the…
when there is a value in my session variable my ajax calls work properly... But when a session is timedout it doesn't seem to work returning empty json result....
public JsonResult GetClients(int currentPage, int pageSize)
{
if…
The story behind:
Old script written in ruby 1.8.6 that opens a connection to a ftp and download a configuration file. For a specific client with a windows ftp server the script just hangs. The log stops writing after it opens the connection to the…
I am trying lock block on page test.cfm and below is code written on page.
<cfscript>
writeOutput("Before lock at #now()#");
lock name="threadlock" timeout="3" type="exclusive"
{
writeOutput("<br/>started at #now()#");
thread…
Hi All
I am developing 2 web applications based on "ASP.NET_SessionId" cookies to check session timeout and also to logout :
protected void Session_Start(object sender, EventArgs e)
{
if (Context.Session != null)
{
…
Hi
What is the difference between a abandon Session and a cookie timeout, what if the session is abandon and the cookie is still alive, is that can lead to a problem?
<sessionState timeout="1" />
<authentication mode="Forms">
…
This is my below code, I am confuse why this thing is happening. In this code getLocationByIpTimeout is a method in which I am passing two things- one is the ip address and second is the timeout. So I will get the timeout exception if the…
I'm running Apache, mod_wsgi and Django. Uploading a file over 100mb causes a timeout on IE 7 and 8, but successfully uploaded on Firefox 3.5. Specifically the error is "Internet Explorer cannot display the webpage". The timeout is not…
On Bluehost shared hosting (Apache 2.2 + FastCGI + APC), I have the problem
that some requests take almost exactly one minute to respond. Yet time spent in PHP
is only two seconds. To demonstrate the issue, I created a temporary test…
Hi,
I have create REST client in C# using example on this page: http://msdn.microsoft.com/en-us/library/aa395208(v=vs.90).aspx. Server is built in PHP.
When I send request to some urls I have this exception:
The request channel…