Tagged Questions
1
vote
2answers
29 views
How can I have an operation timeout in Portable Class Libraries?
I have a portable class library which targets everything. Because of this, there is no Task or async support.. Which is extremely painful.
So, I'm trying to implement a generic extension method so ...
0
votes
0answers
48 views
Adding a timeout to a process in a console application
I wrote a console application that finds some Excel files, opens them up and refreshes the data. Once in awhile Excel will crash or hang and I want to be able to be able to skip that file and keep ...
0
votes
1answer
37 views
WCF service timeout setting
I have a ASP.NET 4.0 app that is calling a WCF service. For testing, the closeTimeout, openTimeout, receiveTimeout, and sendTimeout values in the wsHttpBinding binding are all set to 01:00:00.
When I ...
0
votes
1answer
156 views
Setting ConnectionTimeout for OdbcConnection (System.Data.Odbc) in c# does not work
I have a .net 4.0 c# application which needs an odbc connection to mssql 2008. The connection usually works perfect. But when I run a query which usually runs for some minutes (and no, at this point ...
0
votes
1answer
53 views
Timeout does not apply to asynchronous operations. What is the idea behind it?
IHttpAsyncHandler, asynchronous webservices, HttpWebRequest.BeginGetResponse,... seem never timeout.
Timeout seems to apply only to synchronous operations.
I really want to know the reason why ...
7
votes
1answer
77 views
Concurrent collection for .NET with timeouts?
I have a concurrent collection.
var q = new ConcurrentQueue<int>(); // Or a stack/bag/etc...
I can get an item like this.
int i;
if (q.TryDequeue(out i))
DoStuff(i);
But I need it like ...
0
votes
2answers
72 views
Session Variable Mismatch Between Postback
I'm storing a session variable that I use to pass as a parameter for various data access calls. This variable is set when the session is first created, and it can be changed by the user depending on ...
2
votes
1answer
171 views
To Increase Request Timeout only on particular Web Page
Is it possible to increase the request timeout for just the one particular web page? I am working on ASP.Net 4.0 and I need one particular page to have a longer request timeout, since it is ...
0
votes
1answer
26 views
Longer send timeouts means longer delays too?
I'm getting frequent send timeout errors possibly from too much load on the database and the bulkiness of data. If sending the reply to a wcf request takes up 3 mins, then setting the timeout to 3+ ...
2
votes
1answer
87 views
Set a timeout value on calling a function in .NET
Is it possible to set a timeout value when calling a function in .NET? I am using a third party component called SharpBox that loops a set of Dropbox accounts and pulls in the contents to a given ...
0
votes
1answer
69 views
HttpWebRequest underlying connection closed Event/Notification
I have a .NET service with a client/server architecture where the client machines get connections to server machines through a software load balancer. I set the ...
3
votes
3answers
487 views
Session Timeout .NET
I searched but I dont`t find any specific answer for this question.
How I can get value in server how much time left, before session expires?
My session settings:
//timeout for example 10 min.
...
0
votes
1answer
75 views
Timeouts on Azure when using upload fields
I have a form that contains some upload fields. From most locations the form performs without issues. But for some locations (so far I've experienced it personally in 2 different places in Singapore) ...
2
votes
0answers
157 views
netNamedPipeBinding with host and client in same application NOT WORKING
i have developed a simple Windows Forms app where i host a NetNamedPipeBinding service, and the same app is the client that tries to invoke a function in the service, but i got this error:
This ...
7
votes
1answer
595 views
request.GetResponse gives always a Timeout
I made a Function for a program, which does work when the Request Type is GET, if it is POST, it always produces a Timeout Exception(and the timeout of 50s wasnt reached) on the Line HttpWebResponse ...
0
votes
1answer
207 views
TcpClient connection broken after timeout
I am setting timeout for a TcpClient using TcpClient.ReceiveTimeout property. When the TcpClient.Read() method throws an exception ("connected party did not properly respond after a period of time") ...
1
vote
1answer
866 views
SQL Server Connection Timeout C#
First off I'd like to let everyone know I have searched my particular problem and can't seem to find what's causing my problem.
I have an SQL Server 2008 instance running on a network machine and a ...
1
vote
1answer
341 views
Amazon.S3.IO S3DirectoryInfo [duplicate]
Possible Duplicate:
How to upload files to Amazon S3 (official SDK) that are larger than 5 MB (approx)?
I try to use the Amazon.S3.IO API. If i write 10mb there is no problem. If i write ...
1
vote
4answers
931 views
SQL Server long running query randomly timeout through .Net
We have a program that connects to our DB and run some Stored Procedures to get some data.
The database is a SQL Server 2008 and the program runs locally. The connection is via TCP/IP, but shared ...
0
votes
1answer
204 views
HttpWebRequest and Parallel.ForEach causes time out after spawning certain number of threads
I have ran into a problem and I am searching for the best way to handle it. I am using HttpWebRequest in a Parallel.ForEach loop (the code is below). I have tested the program on more than two dozen ...
10
votes
1answer
388 views
Browser.AttachTo<T>() causes intermittent exception “Timeout while Internet Explorer busy”
A WatiN step that runs as part of a continuous integration build process is failing while attempting to attach to a browser instance intermittently. Currently about 1 in 5 times.
...
0
votes
1answer
517 views
Workaround for .NET Remoting TcpChannel Timeout Issue
Since I (and many other people on the internet) are unable to configure the client-side TcpChannel timeout when using .NET Remoting (please don't suggest proper fixes, I've literally tried everything, ...
4
votes
1answer
307 views
Distinguish timeout from user cancellation
HttpClient has a builtin timeout feature (despite being all asynchronous, i.e. timeouts could be considered orthogonal to the http request functionality and thus be handled by generic asynchronous ...
4
votes
1answer
1k views
HttpWebRequest - The operation has timed out
I'm trying to invoke a web page, by using HttpWebRequest, however I'm getting "the operation has timed out error".
string sURL = "http://localhost:53667/MyPage.aspx";
WebRequest wrGETURL = ...
0
votes
2answers
518 views
await UDPClient.ReceiveAsync with timeout
I'm using UDPClient like below
dim c = New UDPClient(port)
client.CLient.ReceiveTimeout = 1
await client.ReceiveAsync()
However the await does not terminate or throw even
though I have set a ...
0
votes
1answer
500 views
GridView Databinding - timeout
I do have the ASP.NET page, that calls stored procedure through SqlDataSource on Page_Load and Binds GridView. On PageLoad I am doing something like this:
string connectionString = ...
1
vote
1answer
514 views
“The operation has timed out” inconsisted timeout error from Web Service hosted in Azure
I have created a web service application hosted in Azure. The service process runs at about 10 minutes to complete and returns a single string with 2782 characters. The service timeout has already ...
0
votes
0answers
28 views
HttpRuntime.exceededTimeout occurs but how to redirect?
I keep geting a HttpException that my timeout was exceeded. How do I get code to redirect to a page when this occurs? Is there anyway besides custom errors?
0
votes
0answers
161 views
Implementing timeout in HttpWebRequest for metro style app
As per MSDN
The Timeout property has no effect on asynchronous requests made with the BeginGetResponse or BeginGetRequestStream method.
We have to implement our own mechanism for timeout. There ...
1
vote
1answer
156 views
Web service method call times out, metadata request works fine
I have a WCF service which is not responding to method calls. On the client side, I get timeouts when I call any method.
Interestingly, when I update the reference on Visual Studio it works fine. It ...
1
vote
1answer
52 views
Stumped by timeout issue
Upon clicking a button in the browser, a .net web app on server A runs a WCF that calls a stored procedure on database server B. Server A then processes the results before sending back a response to ...
0
votes
2answers
433 views
SqlCommand.CommandTimeout is reached [duplicate]
Possible Duplicate:
How to catch SQLServer timeout exceptions
I have the following code:
using (SqlConnection connection = new ...
0
votes
1answer
2k views
Second call to HttpWebRequest.GetRequestStream() throws timeout exception
Help... I can't figure out why HttpWebRequest.GetRequestStream() is throwing a timeout
exception... it ALWAYS occurs when trying to establish the second (and subsequent)
connections using POST. ...
1
vote
1answer
141 views
Logging a WCF service timeout (not to svc trace)
We have a self hosted WCF service which receives and processes requests from proprietary devices. during a performance test we flooded the service in order to see what happens when too many requests ...
0
votes
1answer
196 views
SQL timeout in a .NET service
I have a very simple service that has always worked earlier but now I upgraded it to newer .NET version and it has stopped working with error message like this:
Timeout expired. The timeout ...
1
vote
2answers
1k views
SQL Server codeonly connection timeout
I just installed SQL Server 2012 alongside SQL Server 2008 R2
I can connect to it locally no problem
But when I try to connect via another pc on my LAN, I get a timeout:
Timeout expired. The ...
2
votes
2answers
506 views
WCF connections are aborted incorrectly / existing connection was forcibly closed by the remote host
I have a Windows application that uses WCF service. It has some WCF service calls, and ClientBase.Close() method is always called afterwards. When I close the application, I do not get any errors in ...
2
votes
2answers
771 views
TimeoutException in WCF after multiple calls
Maybe I am implementing WCF improperly, but I seem to be getting a WCF exception while using NetNamedPipedBindings after making numerous calls.
Here is the high level of what I am doing. Basically, ...
0
votes
3answers
157 views
ASP.NET session expires after 2:30
I have troubleshooted this for days now. The code is external. We are installing it on our system.
OS: Windows 7
Problem: when visiting the site for the first time, it takes about 2min30sec to ...
1
vote
2answers
267 views
Getting Command Timeout while debugging Stored Procedure with VS 2008
I am trying to debug my application that calls some stored procedure.
I don't have any problem with debugging the procedures.
The problem is, when I am debugging, the default command timeout for ...
0
votes
1answer
131 views
WCF timout that abort the current operation?
I have tried to set sendTimeout, receiveTimeout and the httpRuntim executionTimeout on our WCF (IIS7/TCP/WAS) application service.
The timeout works but the operation will continue to run, what we ...
4
votes
4answers
1k views
Implementing RegEx Timeout in .NET 4
Platform: Silverlight 4, .NET 4
With the .NET 4.5 Developer preview the RegEx class has been enhanced to allow setting of a Timeout value which would prevent the RegEx engine from hanging the UI if ...
0
votes
1answer
243 views
Catch Oracle timeout exceptions
I want to handle timeout exceptions differently from other SQL exceptions, much like
How to catch SQLServer timeout exceptions
However, our application supports both Oracle and MSSqlserver.
The ...
1
vote
0answers
234 views
.NET WebRequest and Proxy, timeout issue [closed]
I´m having a problem with WebRequest timeout when using proxy property.
Without a proxy, timeout property works fine, but setting a proxy doesn´t work anymore.
I think when setting a proxy the ...
0
votes
1answer
462 views
Waiting timeout for Firefox [WatiN]
Is there any way of changing the timeout for Firefox using WatiN?
It throws this error: "Timeout while waiting for main document becoming available".
1
vote
1answer
437 views
Checking oracle connection
I'm seriously stuck here with something obvious.
I have an application that communicates with Oracle and MSSQL servers.
Both of them build their connection strings and then
try
{
...
6
votes
1answer
901 views
Adjusting CommandTimeout in Dapper.NET?
I'm trying to run SQL backups through a stored procedure through Dapper (the rest of my app uses Dapper so I'd prefer to keep this portion running through it as well). It works just fine until the ...
0
votes
2answers
500 views
WCF NetTcpBinding timeout problems - strange behaviour
The binding I use is NetTcpBinding (over internet), with all the concurrency stuff and maxconnection set to high value (4000 maxconnection, concurrent, and so on), so the throttling is set really ...
1
vote
3answers
187 views
How can code within a Task know that it has timed out?
Consider the following code:
public class EventManager
{
public Task<string> GetResponseAsync(string request)
{
CancellationTokenSource tokenSource = new CancellationTokenSource();
...
0
votes
2answers
2k views
SQL Timeout through .NET code
So we have a process that runs and it calls our DB to get some data. When we run the proc that gets called through SQL Server Management Studio, it takes anywhere from 6 minutes to 15 minutes to run, ...




