PC-Handset query
| Sat, 2007-12-01 14:51 | |
|
Greetings! We are trying to develop a "proof of concept" application which involves communication between a PC (Windows) side module and a module on Nokia S60 (3rd edition& 2nd edition) Handset . The type of communication we need involves: Through previous posts at the Nokia forum we have come to know that there is a SDK kit - "PC Suite Connectivity API 3.0" available through Nokia Forum Pro membership - which probably provides the connectivity tools we are looking for. We need a high-level API that helps us meet our prototype development timelines. We would appreciate if some kind soul could answer our following questions: Your kind sharing of knowledge regarding our humble questions, stands appreciated. Thank you for the same. Regards Parveen |
|






Forum posts: 1242
Sorry, I don't know about the PC Suite Connectivity API, but maybe this information is interesting for you nevertheless:
I had a similar communication need - between phone and PC - a while ago. I looked at the situation and found that different phones and different vendors all use different means of their "native" communicating, and that some of the APIs are even non-public, as you described. (In my case, it was the SE P800/P900/P910i range of phones.)
I decided to avoid what I personally would call a complete mess and go for standard means. I am now using the standard HTTP client API on the phone (class RHTTPSession and others) and a very minimalist HTTP server embedded into my application on Windows. Works without problems over USB and Bluetooth, is portable over a wide range of Symbian phones, even non-Nokia ones, the API is free, public and probably very stable, and I can speculate about a future extension, making it possible for my phone to talk to my PC even over the Internet...
Main drawback, as I can see so far: All communication has to be initiated by the phone, as the HTTP server on Windows can just sit there and wait what happens.
Of course it would be possible to make the whole thing symmetric with a HTTP server on the phone as well, but unfortunately there is no standard support for that.
René Brunner
Forum posts: 10
Sir,
Very Thanks for this.
I am currently using http example provided with SDK of S60 2nd edition.
I also came to know that i can openL() method for using different protocol.
There is also a method with name ListAvailableProtocols().
But i am not able to get "acess point" for bluetooth and usb.
Please tell me how i can use bluetooth or usb as a acess point by using HttpSession.