Questions tagged [timeoutexception]

TimeoutException is thrown when the time allotted for a process or operation has expired.

TimeoutException is thrown when the time allotted for a process or operation has expired.

427 questions
0
votes
1 answer

upload large video to databsse in asp.ngj

I searched about how I could save and store large video size greater than 4MB into database using asp.net . I tried a many codes. also I used :
Dalal
  • 27
  • 8
0
votes
0 answers

Android - Asynctask always timing out in android 4.1.1 (Galaxy Tab 2)

I have a very strange problem. My app uses an async task to make an http request. Everything works fine in lower versions, but when I test on a Samsung galaxy Tab 2 with Android 4.1.1 the asynctask ALWAYS throws a TimeoutException. Here's how I use…
Dandy
  • 303
  • 5
  • 14
0
votes
2 answers

WCF client throws System.TimeoutException after 20mins

I'm using WCF for IPC. There is a server and single client only, both .Net3.5 and run on the same machine, not elevated, without any system settings altered (under normal use). This runs without issue in all clients (from WinXp to Win8). But only in…
Odys
  • 8,951
  • 10
  • 69
  • 111
0
votes
1 answer

HttpWebRequest timeout issue after couple of calls

Below code is throwing a timeout exception after couple of calls (5 or 10 calls), it works fine always when I'm running fiddler in my machine. I read some answers here that if it's working when the fiddler is on then that means it could be a proxy…
user1971706
  • 59
  • 1
  • 6
0
votes
2 answers

Checking SerialPort.BytesToRead vs using TimeoutException in a read loop?

I have a .NET C# class which uses System.IO.Ports.SerialPort for serial port communication. It includes a thread which continuously read the serial port in a loop. I have always thought that using Exceptions as part of normal program flow was bad,…
Oberon
  • 95
  • 2
  • 10
0
votes
1 answer

linq2sql transactionscope timeout

I have added a transactionscope to a function that every night clears some tables and add the new items. The problem that I get the following error: Inner exception: Transaction Timeout The transaction has aborted. The job takes about 12 minutes to…
0
votes
1 answer

Blocked download without any exceptions

I try to download a file from a mobile device. The mobile is connected by wifi, and sometimes, the mobile change of location, and so connect to another wifi. For the download, I use : final URLConnection ucon = url.openConnection(); …
Kikiwa
  • 1,213
  • 2
  • 13
  • 20
0
votes
2 answers

Koala Facebook for Rails

How to raise timeout error using koala gem for Facebook in Rails ? if anybody knows, please let me know.
Kushal
  • 218
  • 2
  • 12
0
votes
1 answer

Orchard 324 no data sent error with custom module only on web server

I just started having a very strange issue with my custom module that has not started happening until last night. Basically when I try to request the custom view I created for the module the first couple of pages display fine and then all of a…
0
votes
1 answer

Server Timeout Error

I'm having problems executing a calculation procedure through an ASP.NET site to SQL Server. Not much detail, I know, but hoping someone on here can help. The procedure works in some instances and in some it does not. Here is the error message…
0
votes
1 answer

Timeoutexception on TCP not handled

I took this code from a website since VS 2010 doesn't support the timeout for the TCP connections: Private Function ConnectWithTimeout() As Boolean Dim ar As IAsyncResult = TCPClient.BeginConnect(IPAddress, TCPPort, Nothing, Nothing) Dim wh…
Stefano
  • 131
  • 1
  • 2
  • 8
0
votes
0 answers

Eclipse Java EE debug crashes

I keep getting an error of org.eclipse.jdi.TimeoutException while waiting for packet -- occurred creating step request. When that happens I need to restart Eclipse and start all over which is very unproductive. I tried changing the Timeout settings…
isapir
  • 21,295
  • 13
  • 115
  • 116
0
votes
4 answers

request.timeout doesn't throw exception

Uri URL2 = new Uri(@"http://www......com"); HttpWebRequest request2 = (HttpWebRequest)WebRequest.Create(URL2); request2.Timeout = 10000; HttpWebResponse response2 = (HttpWebResponse)request2.GetResponse(); I am making…
Oktay
  • 127
  • 1
  • 2
  • 15
0
votes
1 answer

SqlBulkCopy unusual TimeOut Error

I have a SqlBulkCopy operation that is taking data from an MS-Access 2007 database (via OleDbConnection) and using SqlBulkCopy to transfer that data to a SQL Server database. This has previously been working and continues to work for one MS-Access…
ChrisHDog
  • 4,473
  • 8
  • 51
  • 77
0
votes
1 answer

Retrieving parameters of WCF request from Silverlight when a TimeoutException occurs

I have a Silverlight project calling a WCF service. The service method GetData has one parameter, dataID, and is called through GetDataAsync and is handled by the autocreated classes with functions BeginGetData and EndGetData. In some cases the call…
Johan
  • 780
  • 7
  • 22