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
2
votes
4 answers

Very Simple Stored Procedure Will Time Out

I have a problem with this one stored procedure that works 99% of the time throughout our application, but will time out when called from a particular part of the application. The table only has 3 columns and contains about 300 records. The stored…
2
votes
1 answer

Caught TimeOut Exception

i am developing a wp8 app, i use a HttpClient to perform PostAsync and GetAsync operations, i am setting the timeout to 1 second : private HttpClient client = new HttpClient(); client.Timeout = TimeSpan.FromMilliseconds(1000); I have a try catch…
CarlosJavier
  • 1,005
  • 1
  • 16
  • 29
2
votes
1 answer

EntityFramework The wait operation timed out on long running task

I'm using EF5 to migrate some data from one database to another. I would generally use SQL for something like this however I need other functionality (like creating users in the MembershipProvider) and was hoping to do it all in EF. I'm migrating…
Serj Sagan
  • 28,927
  • 17
  • 154
  • 183
2
votes
1 answer

SQL Server runs very slow when called from .NET application

I have SQL call to stored procedure in my ASP.NET application using nHibernate: GetNamedQuery("MyProc") .SetString("param1", value1) .SetString("param2", value2) ... SQL Server 2005 used here. It runs well on our testing environment, this call…
Roman
  • 391
  • 2
  • 4
  • 17
2
votes
1 answer

Neo4j Rest Read timed out exception

Using Neo4j 1.9 in REST mode and Spring Data for neo4j .. while performing load test on my app I am getting the exception below... com.sun.jersey.api.client.ClientHandlerException: java.net.SocketTimeoutException: Read timed out at…
assaf_miz84
  • 687
  • 2
  • 15
  • 33
2
votes
0 answers

CRM 2011 Custom Report rsProcessAborted System.TimeoutException

I am having a problem with a Custom Report in CRM 2011. I am creating a FetchXML based report in BIDS, where the preview works with no problems. I then upload the RDL file into CRM. When I run the report I get an rsProcessingAborted Error (not much…
xtajn
  • 21
  • 1
2
votes
1 answer

Futures, TimeoutException, and Callables with finally blocks

Will a finally block withing a thread be called if the Callable is canceled via future.get(timeout, TimeUnit.SECONDS)? class MyCallable implements Callable>{ public Future call(){ Connection conn = pool.getConnection(); …
user1980584
  • 61
  • 1
  • 4
2
votes
1 answer

Future.get(long timeout, TimeUnit unit) does not return in JBoss 6

Hi have problems with an asynchronous method call in JBoss 6.0 Final. The classes look like the following: One is just some kind of storage which contains a number of objects. @Singleton public class Storage { private Map
Sancho
  • 71
  • 1
  • 6
1
vote
3 answers

TimeoutException in simultaneous calls to WCF services from Silverlight application

Analysing log files I've noticed that ~1% of service calls ended with TimeoutException on the Silverlight client side. The services (wcf) are quite simple and do not perform long computations. According the log all calls to the services are always…
1
vote
0 answers

Web Service -- timeout exception -- (although the sp is returning records in 10 sec.)

I am getting "Time out" error message from one of the web service method, sometimes it's working fine and sometimes throwing error. Database sroc. is taking hardly 10 sec. to execute, but still it's throwing timeout error in my application. One…
1
vote
0 answers

Unable to redirect to a URL in Selenium Python

I am automating a website for my study project but when I am performing a get function on the url it's not redirecting me to the desired url instead the page keeps on loading and after sometime it throws error. The url I want to access is first it…
1
vote
1 answer

How to increase timeout of Amplify in Nextjs? (504 code)

I'm new to AWS and hosted a NextJS using Amplify where my application does have an API that takes 20-30 seconds to complete (App script connected). Right now, every request of this function return 504. My fetch duration: Tried reading the…
1
vote
0 answers

does django-redis support retry on TimeOut Exception while doing CRUD operation on Redis?

I am using the django-redis package version (4.12.1), I am getting a TimeOut Exception(Intermittent issue) while reading data from the Redis cache, I would like to Retry for some N number of times to fetch the data I tried using these settings but…
1
vote
0 answers

org.openqa.selenium.TimeoutException: java.util.concurrent.TimeoutException by netty HTTP handler

I am running tests using selenium webdriver. But with 111 chrome update, had to add "--remote-allow-origins=*" argument to make webdriver work. Then started getting following exception at random elements(findElement)/commands(sendKeys,…
saab
  • 11
  • 2
1
vote
1 answer

Service Bus Timeout Exception

We have a service bus topic with 300+ number of subscriptions, all these subscribers are azure functions (python) and we are facing a timeout exception that we are trying to understand better and is where we would appreciate inputs from the…