You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the code.
I find a bug when I call multiple executeRequest(httpget) in a process.
The code not responding in response = httpclient.execute(request);
This happens because the connection does not close when an error occurs.
Solution:
Its neccesary put in catch response.close() in method get();
Example:
Hi,
Thanks for the code.
I find a bug when I call multiple executeRequest(httpget) in a process.
The code not responding in response = httpclient.execute(request);
This happens because the connection does not close when an error occurs.
Solution:
Its neccesary put in catch response.close() in method get();
Example:
The text was updated successfully, but these errors were encountered: