我正在尝试启动并运行蓝牙套接字连接但由于某种原因我的客户端无法连接。
更确切地说,当我尝试连接到流时,我遇到异常: 连接尝试失败,因为连接方在一段时间后没有正确响应,或者建立的连接失败,因为连接的主机无法响应。
我在网上找到的所有例子并没有真正解决我的问题,而且我目前还不确定问题的来源。 扫描和配对工作正常 - 我看到有问题的蓝牙设备成功配对。
我尝试通过首先设置客户端进行连接,然后调用connect
客户端蓝牙名称,地址和引脚已知:
public bool SetClient(String clientName, String btAddress, String pin)
{
bool retVal = false;
m_remoteBluetoothClient = new BluetoothDeviceInfo(BluetoothAddress.Parse(btAddress));
m_localBluetoothClient.SetPin(pin);
if (m_remoteBluetoothClient.Authenticated)
{
//m_localBluetoothClient.Authenticate = true;
retVal = true;
}
else
{
if (BluetoothSecurity.PairRequest(m_remoteBluetoothClient.DeviceAddress, pin))
{
retVal = true;
}
}
return retVal;
}
然后是异步连接:
private void ClientConnectThread()
{
m_localBluetoothClient.BeginConnect(m_remoteBluetoothClient.DeviceAddress, BluetoothService.SerialPort, Connect, m_localBluetoothClient);
}
private void Connect(IAsyncResult result)
{
if (result.IsCompleted)
{
m_localBluetoothClient.EndConnect(result);
mBtStream = m_localBluetoothClient.GetStream();
}
}
本地人m_localBluetoothEndpoint和m_localBluetoothClient是这样创建的,虽然Endpoint或多或少是新的(在我使用BluetoothCLient之前没有参数):
m_localBluetoothEndpoint = new BluetoothEndPoint(BluetoothRadio.PrimaryRadio.LocalAddress, BluetoothService.SerialPort);
m_localBluetoothClient = new BluetoothClient(m_localBluetoothEndpoint);
我还尝试使用Listener,以防远程设备想要连接,但回调永远不会被调用:
public void SetupListener()
{
var listener = new BluetoothListener(BluetoothService.SerialPort);
listener.Start();
listener.BeginAcceptBluetoothClient(this.BluetoothListenerAcceptClientCallbackTwo, listener);
}
任何人都可以告诉我上面的连接方法是否有问题以及如何弄清楚为什么我会得到上述异常?
此处抛出异常:
m_localBluetoothClient.EndConnect(result);
我还不明白的是,对remoteCLient的SupportedServices调用返回0 guids - 因此设备没有列出任何蓝牙服务。
m_remoteBluetoothClient.InstalledServices()
谢谢