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

What is causing sporadic error in SerialPort.Write under Mono?

I'm using a USB connection (FTDI) from Linux to an Arduino Nano under Mono. This mostly works but after a while I get, at a seemingly random time, a TimeoutException attempting to Write to the SerialPort. Apparently (see the FIXME and associated…
N8allan
  • 2,138
  • 19
  • 32
0
votes
1 answer

Protractor - Safari - Timed out awaiting response to command "sendKeysToElement"

One of my E2E Test is failing only on Safari browser, when trying to send Text to an…
0
votes
1 answer

Workflow 4 CodeActivity not throwing TimeoutException

I am new to Windows Workflow and trying to write a Long Running process. I am also trying to limit how long this process can run for. I am calling WorkflowInvoker.Invoke to trigger my Workflow passing it a small timespan for testing. If I try this…
WebDude
  • 6,125
  • 5
  • 33
  • 44
0
votes
0 answers

WCF Timeout Exception on IIS hosting

Thanks in Adavance. I am getting timeout exception after 5 minutes eventhough all timeouts are set to 10 minutes. Wcf is hosted in IIS. Client config is as below '
NitinK
  • 103
  • 1
  • 7
0
votes
1 answer

Spark on cluster: I would like to know the meaning of the following error and possible causes:

I've the follow errors/warns: 1) WARN AkkaRpcEndpointRef: Error sending message [message = Heartbeat(2,[Lscala.Tuple2;@58149ee3,BlockManagerId(2, 192.168.0.171, 49714))] in 1 attempts java.util.concurrent.TimeoutException: Futures timed out after…
Beniamino Del Pizzo
  • 873
  • 1
  • 7
  • 19
0
votes
1 answer

the operation has timed out system net mail smtpexception

I want to send mail using mail web application. While sending mail showing time out error. Help me to find a proper solution. protected void btnsubmit_Click(object sender, EventArgs e) { Ticket_MailTableAdapters.tbl_TicketTableAdapter tc; tc…
Reshma
  • 1,370
  • 7
  • 24
  • 38
0
votes
0 answers

Can we process a request based on time limit and if it exceeds time limit the process must stop?

Scenario: My application has web services(SOAP) and TIBCO third party System. Both are deployed in different servers. Both server has 8 instances. Condition: Tibco server can only wait for 5 min from java web service. After that time out…
user3839699
  • 21
  • 1
  • 5
0
votes
2 answers

Performance opening and closing connection vs commandTimeout

I'm using Mysql 5.6.4. c# 4. Case 1. Just say I setted commandTimeout = 300(5 minutes) and executed in 1 go. and then close the connection. Case 2. I setted commandTimeout = 150(2.5 minutes) and iterated the same procedure two times(retry count)…
Kaushik
  • 2,072
  • 1
  • 23
  • 31
0
votes
0 answers

GET DIAGNOSTICS Mysql how to catch the variable

I'm writing one update statement in my procedure but there are chances that CommandTimeout(30 sec for testing my code) may expire. So I was looking for a solution. Then I came to know that in mysql Diagnostic is available. So i tried that. It is…
Kaushik
  • 2,072
  • 1
  • 23
  • 31
0
votes
1 answer

Starting Windows service with OpenCover throws System.ServiceProcess.TimeoutException

I'm using OpenCover to start and cover a Windows service. I didn't write the service, but I've spoken to the developers and they said that on a good system, it can take up to 45 seconds for the service to complete all of its startup tasks. I'm able…
Sean Cogan
  • 2,516
  • 2
  • 27
  • 42
0
votes
2 answers

Parse.com without internet availability in Android

I am working on Android application in which I am using parse.com. I am using this code to check internet availability and it is working fine. But if I turn the internet on and make any parse request for example "Check UserName" , and during that…
0
votes
2 answers

Python using try to reduce timeout wait

I am using exscripts module which has a call conn.connect('IP address'). It tries to open a telnet session to that IP. It will generate an error after connection times out. The timeout exception is set somewhere in the code of the module or it…
0
votes
1 answer

Catch WCF Timeout

Currently i have an issue regarding the WCF Timeout. The problem is how catch the error from WCF and catch it in global.asax ? I put try and catch in the business service, however it does not work. Appreciate much for your answer. Regards
0
votes
1 answer

HTTP timeout exception

I am trying to get a JSON file with an HTTP request: HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); HttpResponse response = httpclient.execute(httppost); HttpEntity entity = response.getEntity(); is =…
Marco Ripamonti
  • 77
  • 2
  • 12
0
votes
1 answer

Informing User after Generating a Large Excel File in PHP

What is the best way to generate an excel file and inform the user after that? I am using PHPExcel to generate an excel file from an MSSQL Server to a webserver and allow a user to download it using a link. The problem is that the each time we try…
leonard.javiniar
  • 539
  • 8
  • 25