|
Question : Is JSMS engine able to work with Nokia 3650 using bluetooth as a visual serial connetion?
|
|
My school project requires me to use a nokia 3650 using bluetooth to connect to our bluetooth MSI tonker. I understand that using a cable or serial connetion is recommended from what i have read. but this is what we got. I also understand that we must set the com number to from 1 to 4. I am using Jsmsengine i wonder are they anyone who can help me. i had placed all the Comm jar files and the activion jar file that are required correcttly in my j2sdk folders. wonder anyone can give me a run thorugh what i have miss out. The Jsms server still cannot conect to our 3650. is there anything else i need to install? i am using java as my language and mysql as the database. Thanks
|
Answer : Is JSMS engine able to work with Nokia 3650 using bluetooth as a visual serial connetion?
|
|
I have no idea of jsms, but I work in J2SE VM team.so maybe I can say something about it. J2SE use common connection framework to communicate with comm port. java code is somthing like Connector.open("comm:com0;baudrate=19200")
but for real comm port and virtual comm port, device name is different. And in J2se VM porting code, the difference must be considered.
"The following device name types should be used: COM#, where COM is for RS-232 ports and # is a number assigned to the port IR#, where IR is for IrDA IRCOMM ports and # is a number assigned to the port " --- << MIDP 2.0 specification >>
if the MIDlet code in mobile end can provide the data access for serial connection. maybe you should check the java code to change device name to IR#.
|
|
|