0
votes
2answers
244 views

IOException on accept thread

One part of my application connects to a device through Bluetooth and normally works fine but occasionally it won't connect and I get the following error 03-11 10:29:20.328: ...
1
vote
3answers
629 views

iOS - BluetoothManager private API - accept incoming pairing request

I used the following examples to make use of the iOS BluetoothManager private API: http://www.pocketmagic.net/2012/07/bluetooth-and-ios-use-bluetooth-in-your-iphone-apps/#.UPPx_eSIWc8 My intention ...
0
votes
1answer
493 views

Can't accept an incoming bluetooth connection unless device is discoverable

I've hit my wits end with this one. I have a typical BluetoothServerSocket that I'm trying to get the A&D Weight scale (UC-321PBT) to connect to. Their company has an app (myFitnessCompanion) ...
1
vote
0answers
414 views

BluetoothServerSocket.accept() won't return in the accept thread, while a Client socket is aquired

So I have this Android Bluetooth Project and I get a really annoying problem; Let me describe the context: The two phones wich are to be connected aquire their BluetoothSockets using the exact method ...
1
vote
0answers
551 views

Android BluetoothServerSocket accept encounter an exception but endpoint device has connected?

I'm developing a program on Android to establish connections between my phone and outer devices. The code that establishes ServerSocket and accept connection from peers is like this: while ...
2
votes
0answers
2k views

Android Bluetooth Server socket will be blocked on accept() if it processes more than one conntion

I have studied the android bluetooth example. What I'm confused is that other devices has sent a connection request, and the server is just blocked so long without accepted if previous connection ...