622 questions
0votes
0answers
36views
Java okhttp3 Exceptions
My Spring Boot uses okhttp3 to send HTTP requests as a client. I have no control over the servers. (But I can ask server team to change the settings if needs be.) <dependency> <groupId>...
0votes
1answer
39views
Why is my app not running on my physical device [closed]
I have build an project on flutter (frontend) and fastapi(backend), database is Mysql(hosted). server is not hosted The output of my project is perfect on emulators, however I connect my phone with it(...
2votes
1answer
45views
How do I resolve the unobserved task exception thrown by TcpListener
I wrote a sample unit test with TcpListener. It works fine in .NET Framework 4.8, but it fails in .Net8.0-windows. TcpListener tcpListener; TaskScheduler.UnobservedTaskException += ...
1vote
0answers
38views
SocketException : Broken Pipe in RabbitMQ
I have a cluster with three RabbitMQ nodes. Everything works fine until my connection to the cluster is closed when an error appears: java.net.SocketException: Connection reset by peer Followed by : ...
0votes
1answer
42views
SocketException Broken Pipe not raised when curl is terminated
I have a Spring Rest Controller that returns millions of rows in a SpringBoot application. @GetMapping(value = "/getStreamOfJson") public void getStreamOfJson(HttpServletResponse resp) ...
0votes
0answers
126views
Flutter: Retrying connection due to "SocketException: The semaphore timeout period has expired"
I am working on a Flutter desktop(windows) application that communicates with a server over a socket connection. I'm encountering the following error intermittently when trying to establish a ...
-1votes
1answer
182views
iOS App - Runs great on first install, poor network subsequent runs, restarting 4 times in a row "fixes" it (until next time)
I made a mobile app using Flutter. This app is data heavy (API and map tiles). It always works on Android, iOS simulators, and Windows. But on a physical iOS device, (both release and debug modes), ...
1vote
0answers
56views
Hi, I am getting WebDriver Exception in Azure Devops pipeline for my Selenium Csharp based test suite
From last 15 days I started getting this line which is executing the command to print data to PDF, below is the details, I tried in local, its working perfectly fine, even in the VM where Test suite ...
1vote
1answer
84views
Android app now hangs w ObjectDisposedException or IOException
I have coded a Xamarin Forms mobile app and a webservice which has started to fail as the initial Activity is loading. (This is all in Visual Studio, with the webservice and the MyAppName.Android ...
1vote
0answers
135views
How to check for stale connections in a spring boot application
I have a spring boot application wherein I am calling a third-party POST API using RestTemplate. It mostly works and a JSON playload gets delivered successfully. However, randomly I am getting javax....
0votes
0answers
47views
DataInputStream not recognising input
I made a file transfer app in Java 11. I am using thread pool for handling maximum of 50 Threads and ServerHandler class that will server each user in its own thread once he is logged in. Here is the ...
1vote
1answer
2kviews
C# HttpClient - Unable to read data from the transport connection: Connection reset by peer
I have an API that is mounted in the Azure portal, and in one method I used httpclient to obtain a catalog of another API that is in a virtual machine and in http (Not https). If I try it locally, it ...
2votes
1answer
601views
Why I have too many established socket connection during high traffic with using HttpClientFactory in Azure function
I have Azure function app on dedicated premium App service plan. Function in one execution has to delivery two times some data to one api's endpoint. For sending data, I use http client which is ...
1vote
1answer
582views
Flutter_map ClientException with SocketException
I'm adding the "flutter_map" package to display OpenStreetMap on Android and iOS. It's working when I call mapcontroller.move, but I get an exception when zooming with finger gestures on iOS....
1vote
0answers
424views
How to solve Flutter Error No address associated with hostname in socket_patch lookup()
When i try http post request with Dio in my Android emulator, i get the "No address associated with hostname " Exception in this part Follwing code is already in Manifest this part {...