From: Markus Humm on
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
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
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