How can I read data from bluetooth?

  • Thread starter Thread starter nomenklatura
  • Start date Start date
N

nomenklatura

Hi,
I want to develop pocket pc program with visual studio .net
this program read data from internet and bluetooth..
For example when i send data from program(server side) with bluetooth ,
other machine(gsm or pocket pc which include bluetooh) read data and see
this data in my program(client side)..
In addition client side program read data from internet..
Can i do this with .net and which project type do i use?
"Asp .net mobile web application" or "Smart device application"

Thanks in advance...
 
You can do this with SmartDevice application. For the first part of the task
you will need to use WebRequest and/or Socket classes. For Bluetooth you
will need to perform some P/Invoking. SDP is not supported in
CompactFramework at all, so all discovery will have to be done via P/Invoke
or in unmanaged code. Also not implemented for is OBEX - you will have to
do it yourself
 
Back
Top