I want to write a program to transfer data to a computer via USB or Bluetooth,
can i achieve it through the SDK now?
I want to write a program to transfer data to a computer via USB or Bluetooth,
can i achieve it through the SDK now?
looks that there is no API for this one: http://stackoverflow.com/questions/7...-communication
No Bluetooth APIs available form Mango or WP7, nor with managed code neither with Hybrid applications, you probably have to wait for the next version of Windows Phone.
Anyway, you can transfer data from your application Isolated Storage to any computer or website as this way:
- using Background File Transfers (available only in WP7.5) to upload or download files in your Isolated Storage
- using Sockets (available only in WP7.5)
- using SyncServices with your local Data and remote data.
What kind of information do you want to send to your computer?
Cheers
Eduardo Ortega Bermejo
MVP - Device Application Development
You mean transferring data of a certain application or of all other applications? For transferring data from specific application you can create a small app for the pc, that can act like a server and use http or socketing... we tried both http method prior to mango and the other after mango.