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
0 answers

Selenium + Python + onclick + NoSuchElementException

I have an "onclick" element in a webpage whose HTML reads as follows: Text 1 I am trying to use selenium to click on this element. I tried the following code (including an implicit wait) import time from…
0
votes
0 answers

MySQL with C# bulk data import cursor with stored procedure throwing error Timeout expired.

We have to import the data from excel/csv to the MySQL database tables. We have implemented cursor in a stored procedure to import users and its details from the temporary table to the actual tables. All the validations and checks are applied in…
Pooja
  • 11
  • 3
0
votes
1 answer

Selenium, Python (raise TimeoutException(message, screen, stacktrace) TimeoutException)

from selenium import webdriver from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait url =…
0
votes
1 answer

Timeout Exception Wildfly Service Deployment

I am trying to deploy a service configured in Jboss-wildfly (Wildfly 9.0.1). During deployment it gets stuck at specific moment and after 600 seconds I am getting a TimeoutException and deployment fails. I have increased the timeout period but still…
0
votes
0 answers

Unable to update metadata after ____ ms | Java application unable to get metadata from kafka

I was trying a producer that I created in Java to send a message to a topic on Kafka broker. I am able to send messages to the topic via console i.e. by using kafka-console-producer.sh. But when I am trying to do the same with a producer that I…
0
votes
1 answer

redirecting to log inpage in the case of sqltime out exception

i have developed a web application with asp.net and c#.net and i use sql server DB, i am getting sql time out exception occasionally, i want to redirect to the loginpage in the case of sqltimeout exception? how can that be done
subash
  • 4,050
  • 14
  • 51
  • 78
0
votes
0 answers

java.util.concurrent.TimeOutException while trying to launch Wildfly server

I am receiving the following error while trying to deploy war file in Wildfly server. Wildfly error Tried increasing the timeout parameter in standalone.config file. But didn't work. Earlier, I was able to deploy the same. But, I had made few…
Spring
  • 21
  • 3
0
votes
1 answer

C# Service HTTP Request ignoring custom timeout values

I have two applications working together. The first is the client that communicates with the second, the service. Both are written in C#/.NET. The client has a web page which submits a form based on previously submitted data (also within the…
Nubtacular
  • 1,367
  • 2
  • 18
  • 38
0
votes
1 answer

Script error copying to Rackspace

I am using Rackspace for Ubuntu cloud server. Everyday a script(I guess the script is from rackspace) executes on the cloud servers which copies the backfile to the Rackspace CloudFiles and sends the mail as if the files are copied and I've…
user465465
  • 441
  • 3
  • 13
  • 26
0
votes
1 answer

How to proxy applications with Nginx and Docker

I get an 5#5: *23 upstream timed out (110: Connection timed out) while connecting to upstream, client: error with nginx. I have read and applied the Nginx reverse proxy causing 504 Gateway Timeout question. However my case sligthly different,…
GaborH
  • 689
  • 2
  • 11
  • 24
0
votes
1 answer

Selenium:Timed out receiving message from renderer exception when switching to new tab

I am trying to verify the content of PDF. In our application when we click on a link a new tab opens with embedded pdf[No URL in new tab], my task is to verify the content of PDF. I am trying to switch to new PDF and do Ctrl + A and Ctrl + c as…
mk_
  • 164
  • 1
  • 14
0
votes
1 answer

how to get simple android client and pc server get working

I have a simple server running on my pc and a simple client on my htc desire running android 2.2. The server and client both use the same port. I hard code the servers ip into the clients code. When I try to connect to the running server via the…
mnish
  • 3,877
  • 12
  • 36
  • 54
0
votes
1 answer

Retrofit, TimeoutException onFailure

I'm using retrofit authentication, and I have a timeoutexception. I saw many questions, but I can't solve this. Here's the code public class FragmentRegistration extends Fragment { View mainView; EditText username, email, password, name; …
user9251161
0
votes
0 answers

Retrofit, TimeoutException

I'm using retrofit authentication, and I have a timeoutexception. I saw many questions, but I can't solve this. Here's the code public class FragmentRegistration extends Fragment { View mainView; EditText username, email, password, name; Button…
user9251161
0
votes
2 answers

How to time out python function after X milliseconds?

I'm calling a function A(i) in python . I want it to be terminated if it executes for more than X milliseconds. I've looked at some ways of timing out including signal.alarm(), but they all take the time in integral seconds. I want to do something…
mjsxbo
  • 2,116
  • 3
  • 22
  • 34