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
8
votes
8 answers

Glassfish 4 on Eclipse - times out - java.util.concurrent.TimeoutException

I am having troubles getting a Glassfish server to actually start and stay running on an Eclipse (luna) install. I have had Glassfish working fine in Netbeans. I have created the server in Eclipse and I can start it but the progress bar gets to…
pelagos
  • 1,025
  • 3
  • 17
  • 27
7
votes
1 answer

TimeoutException, TaskCanceledException C#

I am new to C# and I find exceptions a bit confusing... I have a web app with the following code: try { //do something } catch (TimeoutException t) { Console.WriteLine(t); } catch (TaskCanceledException tc) { …
Marta
  • 1,132
  • 1
  • 10
  • 26
7
votes
1 answer

Service Bus 2.1 For Windows Server - TimeOutException on EndReceive Method

I am using Service Bus 2.1 For Windows Server and I have a method to receive message asynchronously. The body of my method is: var waitTimeout = TimeSpan.FromSeconds(10); // Declare an action acting as a callback whenever a message arrives…
Adrien
  • 307
  • 1
  • 5
  • 11
6
votes
1 answer

Execution expired exception crashing Ruby thread, but Timeout::Error is handled

Can anyone explain why I might see this stack (caused by an HTTParty::post request) when the call to the method looks like this: begin response = HTTParty::post(url, options) rescue logger.warn("Could not post to #{url}") rescue…
esilver
  • 27,713
  • 23
  • 122
  • 168
6
votes
1 answer

selenium.common.exceptions.TimeoutException error using WebDriverWait with expected_conditions through Selenium and Python

Traceback (most recent call last): File "Inventorytest.py", line 88, in j.go_to_application() File "Inventorytest.py", line 65, in go_to_application EC.element_to_be_clickable((By.ID, 'FavoriteApp_ITEM')) File…
6
votes
0 answers

How to solve TimeoutException: com.android.internal.os.BinderInternal$GcWatcher.finalize() timed out after 10 seconds?

I saw this issue in my bug report: Fatal Exception: java.util.concurrent.TimeoutException: com.android.internal.os.BinderInternal$GcWatcher.finalize() timed out after 10 seconds at java.lang.Daemons$Daemon.isRunning(Unknown Source) at…
Kingfisher Phuoc
  • 8,052
  • 9
  • 46
  • 86
6
votes
2 answers

Timeout exception even after setting timeout property for operation

Timeout issue: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.\r\nThe the statement has been terminated. I am having 17 millions of records to dump in my application database.These…
I Love Stackoverflow
  • 6,738
  • 20
  • 97
  • 216
6
votes
1 answer

Retrofit 2 Error: java.net.SocketTimeoutException: failed to connect to /192.168.86.1 (port 8080) after 10000ms

I'm trying to make my App connect to a local web service using Retrofit 2 but i'm always getting this error. I'm sure the web service is responding because i'm using a tool in firefox that make the @GET request and the return is OK, returns me the…
Apolo
  • 81
  • 1
  • 1
  • 6
6
votes
3 answers

In python, selenium, how do I set the error messages for a wait?

I have the following code: WebDriverWait(self.driver, 20).until(expected_conditions.element_to_be_clickable(click)) Now this sometimes fails and I know why it fails. But the error gives me TimeoutException: Message: Which is useless. Can I…
Andrew
  • 1,571
  • 17
  • 31
6
votes
1 answer

How to solve time out error in selenium webdriver with java?

My Html

Registration Form

Ab123
  • 415
  • 2
  • 13
  • 34
6
votes
1 answer

There have been too many calls from this ad-account. Wait a bit and try again

I am trying to fetch the reportstats from our account. I need to make async calls because otherwise I would get and error that the data is to old. When I create multiple requests I will get the error: "There have been too many calls from this…
Jostcrow
  • 369
  • 5
  • 13
6
votes
2 answers

Timeout error in Until Successful

We have a flow where we have implemented a soap client to send soap messages to Service provider. We need to retry the service call for 3 times if it fails. So we have used HTTP Outbound Endpoint inside until successful scope. It is doing retry as…
Kaaviraaj
  • 175
  • 2
  • 11
5
votes
1 answer

iOS 5 Safari JavaScript execution exceeded timeout

I am working on a mobile web app that is primarily self-contained and communicated with the server only when necessary. Currently, the libraries being used are: jQuery 1.6.4 jQuery UI 1.8.3 Modified/patched version of jQTouch Up until the release…
illvm
  • 1,336
  • 13
  • 28
5
votes
1 answer

"java.io.IOException: Connection timed out" VS HttpTimeoutException On java 11 HTTP Client

I'm using Java 11 http-client (java.net.http). The send() method declares these exceptions: @throws IOException @throws InterruptedException @throws IllegalArgumentException @throws SecurityException I am interested in catching exceptions caused by…
user12396421
  • 175
  • 1
  • 10
5
votes
3 answers

Selenium tests fail with azure pipeline sometimes and pass locally

Test cases fail while not finding a link or any validation messages after a button click. I used explicit waits for page to load: var waitForDocumentReady = new WebDriverWait(WebDriver, TimeSpan.FromSeconds(10)); …
1
2
3
28 29