Prev: Subclassing - Detecting Start Menu Activation
Next: Reminder - Microsoft Responds to the Evolution of Community
From: Markus Humm on 18 May 2010 14:41 Hello, anybody else having issues with applications on newer HTC smartphones where HTC switched from Microsoft to Widcomm/Broadcom Bluetooth stack? The application I'm referring too would even detect the stack and use the Widcom stack in that case but it fails with a MissingMethodException. Unluckily this ieception is in a native dll which had been created to encapsulate the stack access. So are there any known issues? Greetings Markus
From: Peter Foot [MVP] on 18 May 2010 16:44 MissingMethodException is a managed exception which you can catch. Possibly because although you detect the Widcomm stack the device doesn't have the native Widcomm Bluetooth SDK dll. You may find 32feet.NET useful as this has support for both Microsoft and Widcomm stacks:- http://32feet.codeplex.com Peter -- Peter Foot Microsoft Device Application Development MVP peterfoot.net | appamundi.com | inthehand.com APPA Mundi Ltd - software solutions for a mobile world In The Hand Ltd - .NET Components for Mobility "Markus Humm" <markus.humm(a)freenet.de> wrote in message news:hsun0j$b72$03$1(a)news.t-online.com... > Hello, > > anybody else having issues with applications on newer HTC smartphones > where HTC switched from Microsoft to Widcomm/Broadcom Bluetooth stack? > The application I'm referring too would even detect the stack and use > the Widcom stack in that case but it fails with a > MissingMethodException. Unluckily this ieception is in a native dll > which had been created to encapsulate the stack access. > > So are there any known issues? > > Greetings > > Markus
From: Markus Humm on 19 May 2010 01:28
Am 18.05.2010 22:44, schrieb Peter Foot [MVP]: > MissingMethodException is a managed exception which you can catch. > Possibly because although you detect the Widcomm stack the device > doesn't have the native Widcomm Bluetooth SDK dll. You may find > 32feet.NET useful as this has support for both Microsoft and Widcomm > stacks:- > http://32feet.codeplex.com > > Peter > Hm, I think we're using the BTSDKCE50.dll from Widcomm and what fails is the device search for other Bluetooth devices in reach. Greetings Markus |