Reputation: 1138
I have the following code which was working fine:
HttpConnection request =
(HttpConnection) Connector.open("https://www.google.com");
// It locks at the following line until an exception is thrown
int responseCode = request.getResponseCode();
All of the sudden it began to block at the getResponseCode() line until an exception is thrown with the following message:
Local connection timed out after ~ 120000
All is happening in the simulator, and I have MDS enabled.
Upvotes: 0
Views: 560