Discussions
Categories
- 196.7K All Categories
- 2.2K Data
- 234 Big Data Appliance
- 1.9K Data Science
- 449.7K Databases
- 221.5K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 549 MySQL Community Space
- 477 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 532 SQLcl
- 4K SQL Developer Data Modeler
- 186.8K SQL & PL/SQL
- 21.2K SQL Developer
- 295.3K Development
- 17 Developer Projects
- 138 Programming Languages
- 292K Development Tools
- 104 DevOps
- 3.1K QA/Testing
- 645.9K Java
- 27 Java Learning Subscription
- 37K Database Connectivity
- 153 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 17 Java Essentials
- 157 Java 8 Questions
- 85.9K Java Programming
- 79 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.2K Java SE
- 13.8K Java Security
- 203 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 387 LiveLabs
- 37 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.6K Other Languages
- 2.3K Chinese
- 170 Deutsche Oracle Community
- 1K Español
- 1.9K Japanese
- 230 Portuguese
PC - Cellphone connectivity

843807
Member Posts: 46,582
Hello friends,
Happy new year 2003.
I want to develop a software that can download all mails and addresses from the cellphone like SONY, NEC, ERICSSON etc on PDC,GSM,CDMA,FOMA system. So I need some information about the Standard to connect a cellphone with the PC and the data format that follow the all handset manufacturer to store the mails and adresses.
So, how can I connect a Cellphone with PC using USB port,Serial port or Ir port.
I hope you all will get me right and help me.
Thank you very much.
Ekramul Huq
Happy new year 2003.
I want to develop a software that can download all mails and addresses from the cellphone like SONY, NEC, ERICSSON etc on PDC,GSM,CDMA,FOMA system. So I need some information about the Standard to connect a cellphone with the PC and the data format that follow the all handset manufacturer to store the mails and adresses.
So, how can I connect a Cellphone with PC using USB port,Serial port or Ir port.
I hope you all will get me right and help me.
Thank you very much.
Ekramul Huq
Comments
-
I think you should look into MIDP and MIDlets. There you can develop java programs that can connect to mobile devices. I think thats a good place to start.
-
I want to develop a software that can download allI've build an SMS API last year, and I just connected to my Irda mobile phone by enabling RS-232 over Irda in W2K ( you need some extra drivers for it, but look at www.object-xp.com; they say where to search for it in their faq or manual I believe)
mails and addresses from the cellphone like SONY, NEC,
ERICSSON etc on PDC,GSM,CDMA,FOMA system. So I need
some information about the Standard to connect a
cellphone with the PC and the data format that follow
the all handset manufacturer to store the mails and
adresses.
So, how can I connect a Cellphone with PC using USB
port,Serial port or Ir port.
Anyway, you can just connect to the phone using RS-232 using a connector cable compatible with the phone. Try it with HyperTerminal.
The command to use are AT commands, but you can find a standard at www.etsi.org. look for "ETSI GTS GSM 07.07 V5.0.0 (1996-07)" or a neweer version. The title is "Digital cellular telecommunications system (Phase 2+) (GSM);AT command set for GSM Mobile Equipment (ME) (GSM 07.07)" I believe this is the doc I used. I'm going to souble check that when I'm back home.
I suggest to experiment with Hyperterminal and execute some command. Then move to a Java program using javax.comm
Using USB never worked for me, and also notice that most manufacturers have added their own AT commands to retrieve vendor specific information. Phonebook however is standardized.
If you have any more questions, let me know.
greetz.
-
I seem to have remembered it good. The document you need is the ETSI GSM 7.07 doc (or maybe a never version). In there all is explained to communicate with a mobile phone throug a serial port using AT commands. (If you are not familiar with using AT commands, search for an introduction on the internet, there is plenty to find about it)
About the vendor specific docs, here is a link to one from Siemens
http://www.my-siemens.com/com.aperto/MySiemens/Files/Addon/tt/hq/mw/hd/hd/s45_me45_step2atcommandset.pdf
I assume simular can be found from other vendors to.
greetz
This discussion has been closed.