Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
192 views

I have project that involves taking a picture every one hour with a Raspberry and saving it to Google Drive. I'm using the google-api-python-client to connect to a Google Drive and apscheduler to ...
Pablo Rios's user avatar
0 votes
1 answer
79 views

I try to write a TcpClientPool to manage a KeepAlive behavior with the host public class TcpClientPool : IDisposable { private readonly ConcurrentDictionary<string, TcpClient> _clients = new ...
thibsc's user avatar
  • 4,101
0 votes
0 answers
91 views

I am facing below issue while fetching data from Xero. javax.ws.rs.ProcessingException:java.net.SocketTimeoutException: SocketTimeoutException invoking https://api.xero.com/api.xro/2.0/Payments?page=1:...
Vish's user avatar
  • 184
1 vote
0 answers
192 views

I recently got a power plug with WIFI to control a lamp. Toggling the lamp on/off works great when calling the URL from a browser. For more convenience, I wanted to implement a quick settings toggle ...
kopi_b's user avatar
  • 1,493
1 vote
0 answers
151 views

Our microservice is writing large volume of data to redis. Since the sequential processing is taking nearly 50 min to process the file, i tried to implement asynchronous processing. Following are the ...
JulieFrancis's user avatar
0 votes
1 answer
863 views

I have the issue where whenever I attempt to get a response from the ChatGPT Java API by Theo Kanning, I get the error message java.net.SocketTimeoutException: timeout after waiting ~10 seconds. I was ...
TYG's user avatar
  • 29
0 votes
0 answers
817 views

I am making following Jira Issue Search Rest API call to fetch all the issues in a project having 1 or more issuelinks from my Jira instance and I am using pagination for collecting all issues from a ...
Preethi H R 's user avatar
1 vote
1 answer
1k views

We are trying to change the socket timeout in Jira as some of the REST API calls are taking too long to respond due to which we are getting Request Time Out Error. For changing it, we tried the ...
apoorva sharma's user avatar
1 vote
1 answer
276 views

So I've been using karate for a while now, and there has been an issue we were facing since over the last year: org.apache.http.conn.ConnectTimeoutException Other threads about that mentioned ...
Mohammed Amine Jallouli's user avatar
0 votes
1 answer
1k views

I have an android project I've started working on that connects to a backend API. Both the backend and the client use Firebase Authentication. The problem is that I've been running into an issue when ...
ZMobile's user avatar
3 votes
2 answers
9k views

I am trying to add a custom retry strategy to my HttpClient such that it retries on SocketTimeoutException and NoHttpResponseException. However, the custom retry strategy is not getting invoked in ...
Maitreyee Mehta's user avatar
3 votes
1 answer
8k views

I created an Apache HTTP client CloseableHttpClient client = HttpClients.custom() .setMaxConnPerRoute(25) .setMaxConnTotal(50) ....
Pavel Petrashov's user avatar
-1 votes
2 answers
4k views

I am doing socket programming in Java and I am confused by setSoTimeout() and its exceptions. I have a simple Callable<String> on the server-side for accepting connections: private Callable<...
Mahm00d's user avatar
  • 3,927
0 votes
1 answer
977 views

I'm a beginner to elasticsearch and I want to delete a huge amount of document which matches to the particular query. I'm using DeleteByQueryRequest for this purpose. I tried the code below. String ...
Ajay Venkatesh's user avatar
2 votes
0 answers
274 views

Recently I am working on an android app, but there is something working with my APIs my phone and my laptop at the same wifi, here is the scenario I send the request to API from the postman then go to ...
Anwar Elsayed's user avatar
0 votes
1 answer
936 views

I have: An express application which exposes a REST api and needs to connect to a MySQL database (see below) An AWS RDS MySQL 5.6.34 database on a db.t2.medium instance In the case of a single ...
revy's user avatar
  • 4,817
1 vote
1 answer
2k views

Following is my offline interceptor code. It crashes in case of low network and throws SocketTimeoutException. How to avoid app from crashing in this case? internal class CacheOfflineInterceptor : ...
Ragini's user avatar
  • 785
0 votes
0 answers
2k views

I've been following https://quarkus.io/guides/kubernetes-config in order to create a configMap and test my Quarkus service into my CDK v3.5.0-1 before to push it to OpenShift 3.11 but ...
Frédéric Thomas's user avatar
0 votes
0 answers
538 views

I want to send a formbody using okhttp in java from the Android APP client-side to check if new file is available on the server, and handle this request through a PHP script on AWS EC2 server to send ...
Tina's user avatar
  • 1
2 votes
0 answers
2k views

I have a spring boot applicaiton running which connects to mongoserver in azure cloud. The app continuesly gets java.net.SocketException: Connection reset exception for the first request after 4 secs ...
user09's user avatar
  • 966
2 votes
2 answers
16k views

I am developing an application using play framework (version 2.8.0), java(version 1.8) with an oracle database(version 12C). There is only zero or one hit to the database in a day, I am getting below ...
surendrapanday's user avatar
1 vote
0 answers
340 views

I'm having trouble deploying a flask app to the Google app engine. It works fine when I run it locally but as soon as it's deployed to the app engine it fails. With two exceptions (I'm always getting ...
Midnight's user avatar
  • 443
-1 votes
1 answer
316 views

i'm having a problem with the connection for my app (Android). I'm using the following code to check if i have internet connection. ConnectivityManager cm = (ConnectivityManager)context ...
lzn202's user avatar
  • 1
0 votes
0 answers
3k views

I have a java application with Apache ServiceMix and Apache Camel. Here is my Camel Spring XML configuration: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="...
PiotrekM's user avatar
2 votes
0 answers
215 views

I am using POCO library for socket connection. I Notice poco select API doesn't wait till the poco::timespan. ReadData() { SocketList read; SocketList write; Socket::select(read, write, ...
Deny 's user avatar
  • 23

1
2 3 4 5 6