Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k views

Disconnect a bluetooth socket in Android

I'm developing a program in which, from an Android Phone, I have to connect as a client to a Bluetooth medical sensor. I'm using the official Bluetooth API and no problem during connection (SPP ...
2
votes
1answer
500 views

How to detect a Socket disconnection?

I've implemented a task using the async Sockets pattern in Silverlight 3. I started with Michael Schwarz's implementation and built on top of that. So basically, my Silverlight app establishes a ...
1
vote
1answer
325 views

ASIHTTPRequest no error when lost connection

I am downloading file (with apache tomcat 6.0.32). When I make disconnect (shutdown tomcat) some times ASHITTPRequest generate error, but sometimes (most of times exactly...ALL TIME EXACTLY! Only if ...
0
votes
0answers
14 views

Random Disconnection in game

i am hosting a game that my players randomly disconnect at. I am a beginner at debugging and when i debugged the disconnecting code i got this: Daemon Thread [AnonymousIoService-8] (Suspended ...
0
votes
1answer
79 views

Detecting Socket disconnect

I've a Socket connected to another device on my LAN. How can i detect the disconnection When i unplug the device from the AC. The thread is blocked on: BufferedReader b=// b.readLine();
0
votes
1answer
79 views

Socket connection between end points on the same machine

When two end points of a socket connection reside on the same machine (Wintel, in this case), do messages between each other traverse onto the NIC card, network medium, and then back to the ...
0
votes
1answer
117 views

Is it possible to create an event and handle it, if the connection to a MySQL server is lost?

Let's say I have my client application and it makes a connection to the MySQL server. Fantastic. I don't implement this as a thread. I just utilise the MySQLConnection class. And now let's say Jim ...