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

Azure Function Failing on portal with Exception: System.TimeoutException

I am new to Azure development and developed a function app I published my function app to Azure portal. It is working fine on my development machine but on portal it's throwing following exception (some times) The operation 'ScanLogs' with id…
shary.sharath
  • 649
  • 2
  • 14
  • 29
0
votes
1 answer

The exception "The HTTP request to *.svc has exceeded the allotted timeout..." is what TYPE of Exception?

I'm attempting to catch just this exception and no other exceptions. I do not want to have to hard code the exception's message text and was hoping I could accomplish it by having a specific catch to catch a TimeoutException, but didn't know if that…
Sam Williams
  • 162
  • 13
0
votes
0 answers

Why does urlfetchApp in google appscript is giving timeout error?

I am trying to get response from nseindia.com. From last month it's giving timeout error. Before that it worked perfectly. Do i have to use any additional methods? Did website put some kind of block? function debugoc2(){ var url =…
0
votes
1 answer

Often TimeoutException when using infinispan for http session clustering and caching

I have two servers that need to do http session clustering and caching. Each server has serveral nodes that need to share session.But when in process of forming cluster ,it often happens that each server cannot get the other server's correct node…
MrColt
  • 1
0
votes
2 answers

I am getting timeout exception even after using try catch in selenium python

I am using selenium to find a page and perform some action. I have coded it in a way that if chrome is not able to find the page, go to the next one. I have used try-catch for it but it is failing sometimes. driver.get(url.text()) try: …
Maha Waqar
  • 585
  • 1
  • 10
  • 24
0
votes
0 answers

Read timed out and duplicate messages

My application sends messages to a server, which performs the processing of them. Eventually, I get a java.net.SocketTimeoutException: Read timed out, when the server receives the message but the application down. When the application returns, it…
ewerton
  • 427
  • 1
  • 6
  • 13
0
votes
0 answers

Pyro4 random TimeoutError on receiveData

I've got a connection setup between two PCs using Pyro4, most of the time everything is working seamlessly, however sometimes I can get random TimeoutError like this: result = self.pyro_proxes[pyro_proxy_name].run_on_pool_controller(*args,…
RaStall
  • 55
  • 1
  • 4
0
votes
0 answers

Python udp socket send blocking too much time

I'm currently working on an internship for a college subject in which I need to use two UDP sockets in order to send and receive video data from a computer. To achieve this, I have created the following class called UDPConnection. It basically uses…
Javierd98
  • 708
  • 9
  • 27
0
votes
1 answer

How can I show ads and it gives me this error

My Admob ads not showing, I got this error E/Ads: Error waiting for future. java.util.concurrent.TimeoutException at java.util.concurrent.FutureTask.get(FutureTask.java:177) at…
0
votes
0 answers

selenium.common.exceptions.TimeoutException when reading an element using pythonanywhere server

I've been trying to read an element in social website with selenium with below code fragment. browser = webdriver.Firefox() browser.get(urls) read_text = WebDriverWait(browser,20).until(EC.presence_of_element_located((By.XPATH, xpath))).text The…
nr spider
  • 134
  • 1
  • 12
0
votes
1 answer

Randomly Login Timeout Expired errors from SQL 2000 DTS against SQL2008R2 databases

I have some JOBs running on SQL Server 2000, which are calling stored procedures or queries against remote SQL Servers (different editions). The JOB calls a DTS, and is the DTS who does the remote connection and executes the Stored Procedure or gets…
0
votes
2 answers

Doctrine2: PreFlush hook does timeout

I have two entities. First is my Parent entity, that has property called productsCount. This entity has some another entity linked to it called Store and store have linked Room. Each room can have multiple products in it. When I edit products that…
Michal Takáč
  • 1,005
  • 3
  • 17
  • 37
0
votes
0 answers

How to fix 'com.mchange.v2.resourcepool.TimeoutException' when using C3P0

I used c3p0-0.9.1.1.jar. The Database is Vertica. There are up to 12 concurrent threads. So i set minPoolSize to 12, maxPoolSize to 24, and initialPoolSize to 12. I have a connection problem. Mosttime time it works fine, but sometime it does not.…
Ryan Yin
  • 1
  • 2
0
votes
0 answers

Vert.x Java Webclient Timeout for Null headers holds connection?

Vert.x - 3.5.0 I have single vert.x vertical using single web client consuming 2 different API's on same destination host. I have connection maxPoolSize=100, keepAlive=true, connectionTimeout=9000 and request timeout =10000. My http call is failing…
Nitin Lodhe
  • 235
  • 1
  • 6
  • 14
0
votes
0 answers

How to monitor time remaining when running a php script looping?

I have a script that reads the directory and make a list of files, including some date about each file. A simple script like millions of others. Depending on the number of files in the directory and the availability of the server (is a shared…
Gustavo
  • 1,673
  • 4
  • 24
  • 39