How to Send SMS using Java Program (full code sample included)
By: Emiley J. Printer Friendly Format
You can use this free Java sample program to send SMS from your PC using GSM modem connected to your computer to your COM port. You also need to download and install the Java comm api from Sun.
This program needs the following java files to function.
1. SerialConnection.java (This file is used to connect to your COM port from
your java program)
2. SerialConnectionException.java (This file is for handling serial
connection exceptions in your Java program)
3. SerialParameters.java (This program is used to set your COM port
properties for connecting to your com port from your java program)
4. Sender.java (This is the program that implements runnable and sends SMS
using the serial connection)
5. SMSClient.java (This java class is the main class that can be instantiated
in your own java program and called to send SMS. This program in turn will
use all the above four files internally to send out your SMS).
Download Send SMS Java sample program files
/* * * A free Java sample program * A list of java programs to send SMS using your COM serial connection * and a GSM modem * * @author William Alexander * free for use as long as this comment is included * in the program as it is * * More Free Java programs available for download * at http://www.java-samples.com * * * Note: to use this program you need to download all the 5 java files * mentioned on top * */ public class SMSClient implements Runnable{ public final static int SYNCHRONOUS=0; public final static int ASYNCHRONOUS=1; private Thread myThread=null; private int mode=-1; private String recipient=null; private String message=null; public int status=-1; public long messageNo=-1; public SMSClient(int mode) { this.mode=mode; } public int sendMessage (String recipient, String message){ this.recipient=recipient; this.message=message; //System.out.println("recipient: " + recipient + " message: " + message); myThread = new Thread(this); myThread.start(); // run(); return status; } public void run(){ Sender aSender = new Sender(recipient,message); try{ //send message aSender.send (); // System.out.println("sending ... "); //in SYNCHRONOUS mode wait for return : 0 for OK, //-2 for timeout, -1 for other errors if (mode==SYNCHRONOUS) { while (aSender.status == -1){ myThread.sleep (1000); } } if (aSender.status == 0) messageNo=aSender.messageNo ; }catch (Exception e){ e.printStackTrace(); } this.status=aSender.status ; aSender=null; } }
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
MultiLevel Inheritance sample in Java
Archived Comments
1. HI can you send send sms throgh java program above
View Tutorial By: sasikumar at 2007-02-27 01:39:11
2. hi....can anybody help me....
i need the co
View Tutorial By: nithin ms at 2007-02-23 08:34:01
3. the program does run thank you for that .....
View Tutorial By: VIKRAM at 2007-03-12 13:34:24
4. Hi Ashish, You just have to create an object of SM
View Tutorial By: Ramlak at 2007-03-13 09:22:51
5. It worked for me. Thanks a lot. Hi Sasikumar, I th
View Tutorial By: Ramlak at 2007-03-05 01:53:14
6. I have loaded allthe 5 java files.But how to imple
View Tutorial By: ashish at 2007-03-08 20:33:11
7. Hi, I need the complete working code for sending a
View Tutorial By: Balaji Srikaanth at 2007-03-10 01:22:35
8. The code gives the following exception :-
<
View Tutorial By: VIKRAM at 2007-03-11 22:56:16
9. it giving me error in following statment (using wi
View Tutorial By: prathamesh at 2007-03-16 05:57:20
10. Hi Prathamesh,
Maybe the COM port to which
View Tutorial By: Ramlak at 2007-03-19 00:46:49
11. Hi can anyone help me out, i need a full jsp code
View Tutorial By: thangaraj at 2007-03-20 12:40:05
12. I am developing a system for paying electric bill
View Tutorial By: Isaya at 2007-03-26 01:11:59
13. its work well , thanks for code , but if any body
View Tutorial By: mary at 2007-12-16 07:10:58
14. Hi VIKRAM, You cannot use your sim card number the
View Tutorial By: Ramlak at 2007-03-29 00:38:55
15. Hi,
Thanks a lot to the writer of t
View Tutorial By: Bhushan at 2007-04-27 04:56:00
16. hi can u send me the complete working code for sen
View Tutorial By: gautami at 2007-12-04 01:13:45
17. it giving me error in following statment (using Li
View Tutorial By: Priyadarsan at 2007-11-27 22:31:56
18. Good one
View Tutorial By: Ravi at 2007-11-19 03:30:40
19. i am run this code changing the SMSC (ex:+9198860
View Tutorial By: sknand13 at 2007-11-16 03:27:52
20. how to execute all the 5 files plz tell me step by
View Tutorial By: asraf at 2007-11-14 22:29:20
21. we are java research students.
we are worki
View Tutorial By: chetan at 2007-10-17 08:13:14
22. Hello,
Can you please send me the c
View Tutorial By: criz at 2007-10-16 21:06:30
23. hi!! friends i executed the code
and i am
View Tutorial By: chennareddy at 2007-10-15 00:07:30
24. hi can you send me the complete working code for
View Tutorial By: avanti at 2007-10-04 02:30:04
25. hi this is from iniyan....
can you send t
View Tutorial By: iniyan at 2007-09-09 06:50:18
26. for me also The code gives the following exception
View Tutorial By: ashitha at 2007-09-12 03:09:12
27. Hi it really works fin great in my case.
Th
View Tutorial By: Dnyan at 2007-12-31 02:03:40
28. what are the basic requirements to send sms from p
View Tutorial By: kanagarajan at 2008-01-02 07:52:44
29. hello!!can anyone help me. can you send me the com
View Tutorial By: denisse at 2008-01-07 05:40:25
30. Please, send me a working JSP version ,i got error
View Tutorial By: Pang at 2008-01-11 00:01:52
31. Hello, Can you please send me the complete code to
View Tutorial By: koksingh at 2008-01-15 00:22:40
32. Hi there! the coding are SUPERB..bt i do nd help i
View Tutorial By: lily sandra at 2008-01-15 18:30:33
33. Hi All,
This SMS code is working fi
View Tutorial By: Munavar at 2008-01-27 22:53:31
34. Hi! Ramlak It Working But Sms didnot send why? and
View Tutorial By: balaji at 2008-01-28 02:41:47
35. Hi All could you pls. send the execution of the ab
View Tutorial By: subbu at 2008-01-28 03:14:27
36. Hi,first of all thats for this code developer, its
View Tutorial By: Kathir at 2008-02-08 06:16:51
37. Please i want to ask if this solution is really wo
View Tutorial By: Enas Sabry at 2008-02-20 04:16:39
38. Hi... it would be good if someone could send the r
View Tutorial By: deb at 2008-02-20 11:36:51
39. hi can any one help me how i can install javax.co
View Tutorial By: Jewel at 2008-02-26 21:52:17
40. how to run the sms sending program
wether v
View Tutorial By: ram at 2008-02-26 22:30:13
41. Error loading SolarisSerial: java.lang.Unsatisfied
View Tutorial By: Sony at 2008-09-10 01:28:52
42. Hi To All.......I want 5 java files for sending sm
View Tutorial By: Prabhu at 2008-09-15 00:58:31
43. Hi I got caught this error can anyone help me...
View Tutorial By: Prabhu at 2008-09-15 03:06:27
44. hi the code is working fine till step5 and am gett
View Tutorial By: raj at 2008-09-16 22:55:40
45. Hi , This SMS code is running fine, but the major
View Tutorial By: VageR at 2008-09-02 06:33:59
46. Hi Rahul,How to run this program kindly send me th
View Tutorial By: Das at 2008-09-04 00:53:02
47. hi,this is nishad from india.....
i have a
View Tutorial By: NISHAD at 2008-09-06 09:23:15
48. I want to download that 5 sms sending program .fro
View Tutorial By: anwar at 2008-09-08 02:22:06
49. Error loading SolarisSerial: java.lang.Unsatisfied
View Tutorial By: Rahul at 2008-09-09 04:05:35
50. hi .the program does run thank you for that ,i nee
View Tutorial By: mazen at 2008-09-09 04:55:16
51. hi,.. i have used this code to sending sms. It see
View Tutorial By: dana at 2008-08-05 03:38:48
52. I am not able to open the rar file, can you please
View Tutorial By: Chandra at 2008-08-07 10:35:59
53. Hi Chandra, you will have to download the winrar t
View Tutorial By: Ramlak at 2008-08-08 00:14:40
54. How do i get tht GSM Connection .Can any one give
View Tutorial By: srinivas raju at 2008-08-08 02:50:02
55. hiiis
i m working on project related to SM
View Tutorial By: Parveen at 2008-08-08 13:23:20
56. Hiiii
When I am executing
View Tutorial By: Souvik Bhattacharya at 2008-08-18 00:21:31
57. Hi all, i use this program but i got notsuchportex
View Tutorial By: ritu at 2008-08-21 11:00:49
58. this site is good, can anyone plz suggest me how t
View Tutorial By: Prithvi at 2008-08-27 01:09:56
59. Thanks a lot for the code...
thats working
View Tutorial By: Rahul at 2008-06-28 14:16:10
60. I am getting the error below.
Tue J
View Tutorial By: ganesh at 2008-07-01 05:35:31
61. hi, i would like to know about sms sendimg via web
View Tutorial By: abhi at 2008-07-09 07:28:54
62. Hello Friends, i am getting an error in following
View Tutorial By: Albin at 2008-07-10 23:49:33
63. Hi I have a USB bluetooth that plug in my computer
View Tutorial By: venkat c s at 2008-07-21 12:15:46
64. hi friends thank you very much for the code but th
View Tutorial By: Surya at 2008-06-13 07:06:07
65. could anyone run this program on Netbean? If there
View Tutorial By: Wei Long at 2008-06-16 19:23:48
66. Hi all,
I'm getting this error on running
View Tutorial By: shreya.g at 2008-06-23 00:13:52
67. Hi wei long, did you download all the five program
View Tutorial By: Ramlak at 2008-06-23 03:26:31
68. Hi Shreya, in Linux, the COM ports are identified
View Tutorial By: Ramlak at 2008-06-23 03:34:11
69. Hi, I am getting following exception while running
View Tutorial By: Vasundhra at 2008-06-24 07:04:42
70. Hi
I have a USB bluetooth that plug in my c
View Tutorial By: Duong D. Thien at 2008-06-25 06:09:07
71. can any body help to get the code for receiving SM
View Tutorial By: ash at 2008-05-15 01:07:19
72. nativeFinalize: Error closing Handle 6
and
View Tutorial By: yash at 2008-05-16 17:43:42
73. hi all !
This is the error im getti
View Tutorial By: vjy at 2008-05-26 04:30:59
74. hi all !
This is the error im getti
View Tutorial By: vjy at 2008-05-26 04:32:58
75. hi all !
This is the error im getti
View Tutorial By: vjy at 2008-05-26 04:40:15
76. Hi,
I am getting error "Sender
View Tutorial By: Jose at 2008-05-26 08:17:48
77. Can you please send me the full code in sending an
View Tutorial By: jen at 2008-05-28 00:22:21
78. IS Java Comm API will supports thw windows?
View Tutorial By: SAM at 2008-05-29 03:26:44
79. Hi,
All the information here was very much
View Tutorial By: Shaiju at 2008-05-30 00:42:12
80. hai vij i am also having error what sol u used to
View Tutorial By: uma at 2008-05-30 01:05:39
81. Hi Divya, Obviously some other application is usin
View Tutorial By: Ramlak at 2008-05-01 22:16:12
82. hi ramlak,i am getting sender *** time out at step
View Tutorial By: agnas at 2008-05-02 01:29:33
83. sir the program is
error: error reading C:
View Tutorial By: Yashovardhan at 2008-05-05 21:42:27
84. hi,
plz help me i cannot find the way out o
View Tutorial By: Yash at 2008-05-07 16:59:20
85. Hi people,
for those getting the Time out
View Tutorial By: Ramlak at 2008-05-08 08:28:29
86. thankyou Mr Ramlak for your help but please can yo
View Tutorial By: yash at 2008-05-12 16:46:18
87. thanks Mr Ramlak
i m using samsung j600 mob
View Tutorial By: yash at 2008-05-13 15:05:49
88. Hi Ramalak,
My modem is connected to COM3 p
View Tutorial By: divya at 2008-04-30 23:19:26
89. send me SMS RECEIVE code please
View Tutorial By: Butler at 2008-04-26 05:33:40
90. thanks a lot..please tell me how to implement this
View Tutorial By: agnas at 2008-04-26 12:26:52
91. Hi All..
Wen i'm running the code..the foll
View Tutorial By: mounika at 2008-04-26 14:27:30
92. Hi Mounika, The reason to the problem is that you
View Tutorial By: Ramlak at 2008-04-26 20:06:21
93. Hi Ramlak,
I am using jdk1.4.2 to run the a
View Tutorial By: mounika at 2008-04-27 03:05:36
94. Hi,
I am getting this exception..My modem i
View Tutorial By: divya at 2008-04-27 04:12:19
95. Hi mounika, Did you download and install the javac
View Tutorial By: Ramlak at 2008-04-27 05:49:42
96. Hi divya, You will have to edit the SerialParamete
View Tutorial By: Ramlak at 2008-04-27 05:54:47
97. Sorry about this. I cannot run this program becaus
View Tutorial By: TanSW at 2008-04-28 20:14:20
98. hey Mounika..did u solve ur problem ??if u did ple
View Tutorial By: agnas at 2008-04-28 23:59:37
99. javax.comm.NoSuchPortException
at javax.co
View Tutorial By: agnas at 2008-04-29 16:26:41
100. i manage to download all the 5 part and compile th
View Tutorial By: Selva at 2008-04-09 07:53:09
101. javax.comm.NoSuchPortException
at javax.co
View Tutorial By: Prakash at 2008-04-14 06:22:38
102. Hi,
Your COM port is currently in u
View Tutorial By: Ramlak at 2008-04-14 07:29:55
103. I have tried that but still getting the same error
View Tutorial By: pra at 2008-04-14 21:55:44
104. hi please help me . i want the full code to send t
View Tutorial By: Prashant at 2008-04-16 06:08:23
105. Hi all, i have tried above code, but am getting fo
View Tutorial By: shalini Iyer at 2008-04-22 01:20:32
106. Please some one send me the 6th program developed
View Tutorial By: mounika at 2008-04-25 02:49:56
107. Hi Blackpanther, the mode is either 0 or 1. If you
View Tutorial By: Ramlak at 2008-04-01 02:24:14
108. Hi Devi, After you download the 5 programs you nee
View Tutorial By: Ramlak at 2008-04-01 01:51:42
109. please somebody tell me how to run this applicatio
View Tutorial By: black Panther at 2008-04-01 02:08:09
110. Hi i have studied these programs.
but unabl
View Tutorial By: Karuna at 2008-03-30 08:46:00
111. I have loaded allthe 5 java files.But how to imple
View Tutorial By: devi at 2008-04-01 01:02:28
112. send me code for SMS its not able to find correct
View Tutorial By: Karunakaran at 2008-03-29 05:45:55
113. Anyone can send me the java code for send and rece
View Tutorial By: Alvin at 2008-03-21 01:12:50
114. Hi Alvin, in order to send sms from phone I suuges
View Tutorial By: Vasan at 2008-03-21 01:44:02
115. can u please send me the code for sending sms from
View Tutorial By: Vicky at 2008-03-20 02:34:27
116. Thanks for providing detailed information .
View Tutorial By: CM Mankar at 2008-03-18 04:37:03
117. can u please send me the code for sending sms from
View Tutorial By: Vicky at 2008-03-20 02:33:34
118. hi can any one help me how to do basic pc actions
View Tutorial By: karthikeyan at 2008-03-14 04:18:52
119. can we use this code in a web application. your he
View Tutorial By: phani at 2008-09-17 06:15:26
120. Of course you can use this in a web application. A
View Tutorial By: Ramlak at 2008-09-17 08:24:21
121. Hi Ramlak,
I tried out the above pr
View Tutorial By: vinay at 2008-09-17 12:52:27
122. hello friends .. am looking for the java code that
View Tutorial By: ahmed at 2008-09-18 21:48:21
123. can you please e mail me a code about hotel reserv
View Tutorial By: princeton at 2008-09-19 02:32:13
124. Error loading win32com: java.lang.UnsatisfiedLinkE
View Tutorial By: Dinesh557 at 2008-09-23 04:18:47
125. hey i found answer for
Error loading win32c
View Tutorial By: Dinesh557 at 2008-09-23 05:14:09
126. hi,
i am download 5 files and instantiate
View Tutorial By: ganesh kumar at 2008-09-23 05:27:16
127. Hi
Can u plz tell me how to implement this
View Tutorial By: Rohan at 2008-09-23 05:52:31
128. how to execute all these five programms tell me st
View Tutorial By: shweta at 2008-09-24 07:35:22
129. in this matter i get also this exception :
View Tutorial By: oded at 2008-09-28 05:41:35
130. Hi, I need the complete working code for recieving
View Tutorial By: Issam at 2008-09-26 01:24:04
131. i see that lots of people get this exception : jav
View Tutorial By: oded at 2008-09-28 03:33:33
132. well no one answered , i figured it out yesterday
View Tutorial By: oded at 2008-09-29 00:32:16
133. I am suffering with the same error as of ganesh...
View Tutorial By: Sri Bhavani at 2008-09-30 00:18:38
134. Who can send me the program and source to call thi
View Tutorial By: Michael Chon at 2008-10-04 21:03:30
135. I don't think GSM/Modem simulatur, will get it wor
View Tutorial By: Michael Chon at 2008-10-08 10:35:55
136. I have got "time out at step 6". How can
View Tutorial By: MCHON at 2008-10-05 12:36:42
137. I got time out error at step 6. Ithink this may be
View Tutorial By: mchon at 2008-10-06 02:45:17
138. i am getting the following error when i ran this p
View Tutorial By: nancy kapoor at 2008-10-07 14:26:21
139. Hi, I don't have any GSM modem. Will it work if I
View Tutorial By: Arif at 2008-10-09 11:29:14
140. Does your Siemens CX75 can show up as COM port dev
View Tutorial By: mchon at 2008-10-10 18:24:11
141. can anybody tell me the full code for sending sms
View Tutorial By: shikha at 2008-10-13 11:43:40
142. I am getting the following exception
Error
View Tutorial By: Balraj Selvakumar at 2008-10-14 03:12:20
143. I am getting the following error:
E
View Tutorial By: Balraj Selvakumar at 2008-10-14 03:15:23
144. Can someone tell me how to run in linux 7.10...
View Tutorial By: fatwa perdana at 2008-10-15 03:27:49
145. The above code given for sending SMS through your
View Tutorial By: ROHAN at 2008-10-17 00:55:46
146. Hi, I need the library of Communication API, to ru
View Tutorial By: arun at 2008-10-23 05:10:06
147. i need jsp code for free sms send.
if anybo
View Tutorial By: Harish at 2008-10-30 03:20:31
148. hiii frnds will u ls send me the program for sendi
View Tutorial By: Taha Sharif at 2008-10-31 00:37:15
149. Dear All, I am getting the following exception for
View Tutorial By: Protik Basu at 2008-10-31 05:30:36
150. HI,
I want to send an sms via website to mo
View Tutorial By: Hemant at 2008-11-04 05:26:30
151. hi all m getting following error ,
can anyo
View Tutorial By: raj at 2008-11-04 21:46:12
152. Hello Ramlak, I am too getting
java.lang.U
View Tutorial By: Amruta at 2008-11-07 23:56:17
153. Hi Ramalak, I am suffering with the same error as
View Tutorial By: Divya at 2008-11-06 22:46:12
154. Hiiii Al, I am Ashraf Abu Aisheh, i am working to
View Tutorial By: Ashraf Abu Aisheh at 2008-11-09 14:56:39
155. hi!!!!!!!!! MR. RAMLAK will u plz tell the methode
View Tutorial By: balwant at 2008-11-10 17:19:44
156. Hi,Please send me running code for sending sms fro
View Tutorial By: rahul at 2008-11-14 05:15:02
157. Hi All,
I can send sms successfully from Wi
View Tutorial By: henrynawaung at 2008-11-14 06:41:13
158. Hi, I implemented those project in my NetBeans, cr
View Tutorial By: Leshqo at 2008-11-14 07:09:13
159. Hi Kartikeyan and all,
can you plea
View Tutorial By: Piyush at 2008-11-14 07:24:16
160. Hi
Anybody plz send me the sms send
View Tutorial By: Venky at 2008-11-19 08:33:22
161. Hi, from where i can download javax.comm API jar f
View Tutorial By: Chandra at 2008-11-19 11:49:46
162. Dear all,
i read all comments
View Tutorial By: Balasundaram .L at 2008-11-24 03:45:38
163. Can anybody send the full working code for sending
View Tutorial By: Atul at 2008-11-26 04:47:51
164. Dear All...................,
I have run the
View Tutorial By: Ashraf Abu Aisheh at 2008-12-01 13:52:42
165. hi,im working with a project,in which i have to se
View Tutorial By: gomathi at 2008-12-08 09:04:35
166. hi,
can anyone send the full code f
View Tutorial By: gomathi at 2008-12-09 04:35:18
167. hi,am working on this project..sending SMS from P
View Tutorial By: rajesh at 2008-12-10 00:16:10
168. that was WMC modem i think not Beetel ADSL 2+ mode
View Tutorial By: chandu at 2008-12-12 22:05:16
169. ya,i changed tht to GSM modem but stil there is a
View Tutorial By: rajesh at 2008-12-15 01:56:35
170. there is lots of fun
View Tutorial By: sumon chowdhuryf at 2008-12-16 22:37:51
171. would you please send me a code that can be run pl
View Tutorial By: putra at 2008-12-17 13:26:26
172. When i run the program,Iam getting this
View Tutorial By: anitha at 2008-12-17 21:37:36
173. When i run the program,Iam getting this
View Tutorial By: anitha at 2008-12-17 21:38:28
174. Hi Ramalak, I m getting the error
Thu Dec 1
View Tutorial By: srikar at 2008-12-18 02:05:56
175. Exception in thread "main" java.lang.NoC
View Tutorial By: RobustTm at 2008-12-18 23:19:46
176. Hi Dear i need help how to send SMS using java
View Tutorial By: NasirAftab at 2008-12-23 07:18:21
177. hi,
can you tell me how to run the code to
View Tutorial By: raghu at 2008-12-26 03:15:52
178. hi all,
I have run the code downloaded fro
View Tutorial By: raghu at 2008-12-26 22:40:12
179. hi all,
I have run the code downloaded fro
View Tutorial By: raghu at 2008-12-26 22:40:36
180. well...raghu download the sun api...whose link is
View Tutorial By: rima at 2008-12-27 22:22:03
181. well raghu u need to downlaod the Comm APi...link
View Tutorial By: rima at 2008-12-27 22:33:12
182. Hi Rima,
Check out http://forums.su
View Tutorial By: Ramlak at 2008-12-28 03:00:01
183. Hello MR, I was running sms package to send sms, a
View Tutorial By: Ronized at 2008-12-29 16:53:33
184. Hi MR,are you have java code to read sms...... tha
View Tutorial By: ronized at 2008-12-29 16:59:27
185. Hi, I have mobile application developed in java w
View Tutorial By: Meenu at 2008-12-30 02:46:54
186. An alternative site for obtaining information on b
View Tutorial By: Helper at 2008-12-31 18:43:06
187. are you have java code to read sms from gsm modem,
View Tutorial By: ronized at 2009-01-01 20:36:24
188. THNX RAMLAK..
HEY RAMLAK I HAVE A LOT OF DO
View Tutorial By: Vinod at 2009-01-02 22:04:40
189. hello sir i want to know how to run this pogram as
View Tutorial By: Pranjay at 2009-01-07 03:33:45
190. hi,
i have tried to download the sun api fr
View Tutorial By: raghu at 2009-01-07 05:45:33
191. Hi Ramlak,
Am getting
Sat Jan 17 13
View Tutorial By: Shiv Kumar at 2009-01-17 02:01:01
192. ----- main---
Inside Run ...
OK 0 <
View Tutorial By: pushpam at 2009-01-23 06:14:07
193. Hi
I am not able to use this program..
View Tutorial By: puspendra at 2009-01-23 06:51:39
194. Can u please help me. I run the SerialConnection p
View Tutorial By: Praseetha.K at 2009-01-23 09:34:35
195. Can u please help me. I run the SerialConnection p
View Tutorial By: Praseetha.K at 2009-01-23 09:44:00
196. plz send step by step to run the above program. wi
View Tutorial By: Lourdu Felix at 2009-01-26 03:32:34
197. The code gives the following exception :-
<
View Tutorial By: Lourdu Felix at 2009-01-26 03:37:53
198. I have an error on step 0:
recipien
View Tutorial By: xenogaz at 2009-01-28 02:43:50
199. I have an error on step 0:
recipien
View Tutorial By: xenogaz at 2009-01-28 03:05:03
200. xenogaz, I am also facing the same problem. I tri
View Tutorial By: Braj at 2009-01-29 01:23:14
201. I am also facing the same problem and after doing
View Tutorial By: Braj at 2009-01-29 03:30:44
202. Hi Ramlak, Can you please let me know to resolve t
View Tutorial By: Braj at 2009-01-29 08:50:33
203. Hi Braj,
You are probably using threads to
View Tutorial By: Ramlak at 2009-01-29 20:03:14
204. hi, i donwload Send SMS Java sample program files,
View Tutorial By: samnang at 2009-01-31 03:14:06
205. Hi Ramlak,
I tried to use the datab
View Tutorial By: Braj at 2009-02-07 03:31:13
206. can anyone send me how 2 sms from java code......<
View Tutorial By: ramesh at 2009-02-07 04:26:06
207. hi! we tried using the 5 java files...we build the
View Tutorial By: anne226 at 2009-02-10 23:58:46
208. ei! its me again..i badly need you help coz we are
View Tutorial By: anne226 at 2009-02-11 10:24:21
209. I tried running this code.. I used motorazr v3i as
View Tutorial By: Arvind at 2009-02-14 10:24:37
210. Hi to All,
I am working on struts based apl
View Tutorial By: Ishmayel at 2009-02-19 21:27:14
211. hi Emiley J.,
i am geting this error while
View Tutorial By: jugal at 2009-02-20 02:14:23
212. hey hiii.
at last the progrma has be runnin
View Tutorial By: jugal at 2009-02-20 08:22:31
213. Hi ..
I'm try to run the full samp
View Tutorial By: Eng.A at 2009-02-21 03:11:02
214. hi ..
for second code which impleme
View Tutorial By: Eng at 2009-02-21 03:53:29
215. hi
how can i run this code
View Tutorial By: giri at 2009-02-27 02:55:40
216. at
OK
at+cmff=1
OK
at+
View Tutorial By: shrinivas at 2009-03-07 23:16:51
217. at
OK
at+cmff=1
OK
at+
View Tutorial By: shrinivas at 2009-03-07 23:29:01
218. Can anyone help me.I need basic requirements with
View Tutorial By: Elaiyaraja at 2009-03-09 03:47:46
219. Copy the javax.comm.properties into your $JAVA_HOM
View Tutorial By: sophie at 2009-03-11 08:23:25
220. The code gives the following exception :-
<
View Tutorial By: swetha at 2009-03-12 07:12:54
221. The code gives the following exception :-
<
View Tutorial By: swetha at 2009-03-12 07:19:23
222. hi, would you please send me the detail to impleme
View Tutorial By: nayeem at 2009-03-13 08:47:27
223. Can I use my Nokia 6300 as my GSM Modem???? Please
View Tutorial By: deKi at 2009-03-17 03:54:59
224. welll program runs but fails at the statement wher
View Tutorial By: Aman Aggarwal at 2009-03-22 22:42:52
225. I tried to use the code's but getting one error as
View Tutorial By: Ashish at 2009-03-23 03:10:22
226. I tried to create an object on my 6th code but i a
View Tutorial By: AARON VICUÑA at 2009-03-24 05:20:24
227. Hi all this program is working very fine .... i ha
View Tutorial By: Ashish at 2009-03-25 04:28:25
228. these code or not really help me
pl
View Tutorial By: vaushu at 2009-03-28 14:48:07
229. Please let me know the SMSConnector number of any
View Tutorial By: Chandra Shekhar at 2009-04-01 00:21:54
230. can anyone tell me which type of device i need to
View Tutorial By: dhanunjay at 2009-04-01 00:31:17
231. can anyone tell me which type of device i need to
View Tutorial By: dhanunjay at 2009-04-01 00:32:34
232. hi.. all.. its working fine for me... thank u ver
View Tutorial By: Padmaraj at 2009-04-01 09:42:29
233. hi all i receive below error can any one help me p
View Tutorial By: Purushothaman at 2009-04-03 17:38:42
234. hi all. Can anyone say me how to fix this error
View Tutorial By: Purushothaman at 2009-04-03 17:46:28
235. HELP! HELP! HELP!
i got an time out at step
View Tutorial By: sumit at 2009-04-03 20:19:51
236. Can anyone provide me java code to read messages u
View Tutorial By: Jaydatta at 2009-04-04 04:52:19
237. Hi,
I am using Nokia 3110c connected to PC.
View Tutorial By: Satish Raj at 2009-04-04 07:32:54
238. Please assist me in getting the code to read messa
View Tutorial By: Jaydatta at 2009-04-05 23:24:57
239. Error loading SolarisSerial: java.lang.Unsatisfied
View Tutorial By: amit doshi at 2009-04-06 02:00:28
240. Error loading SolarisSerial: java.lang.Unsatisfied
View Tutorial By: amit doshi at 2009-04-06 02:00:55
241. hi i m using htc mobile connected to pc but genera
View Tutorial By: amit doshi at 2009-04-06 02:02:00
242. Help Me
I just run the ListPorts.ja
View Tutorial By: srinivas at 2009-04-06 03:14:57
243. hi, srinivas ... i too was having the same problem
View Tutorial By: Ashish at 2009-04-07 06:57:31
244. Plz send me steps to configure and run project to
View Tutorial By: sandeep kale at 2009-04-08 07:23:45
245. i have downloaded the code and calling the the SMS
View Tutorial By: sandeep das at 2009-04-09 11:12:16
246. Everything is running.... But it doesn't send....<
View Tutorial By: uu at 2009-04-09 18:10:13
247. Thank you, Every thing is working fine...!!
View Tutorial By: Purushothaman at 2009-04-10 07:18:38
248. It works great,
my code looks like this:
View Tutorial By: Anonymous at 2009-04-11 04:19:28
249. hi purushothaman
thanks for your kind resp
View Tutorial By: sandeep das at 2009-04-11 10:42:58
250. Everything is running.... But it doesn't send....
View Tutorial By: Amirtharaj at 2009-04-14 05:26:26
251. Hai,
I have the same problem *** time out a
View Tutorial By: Anitha at 2009-04-20 03:12:23
252. Hi,
I have got the same problem *** time ou
View Tutorial By: Anitha at 2009-04-20 07:26:46
253. Thanks for example..
But I have the same p
View Tutorial By: Lina at 2009-05-02 13:23:33
254. hi..
recipient: 9994852342 message: chadru<
View Tutorial By: chandrasekaran at 2009-05-04 09:00:47
255. Hi
Can you anyone please post me th
View Tutorial By: Damodhar at 2009-05-06 04:12:33
256. hello
plz tell me what can i do for sending
View Tutorial By: mahipal at 2009-05-12 10:30:57
257. Hi, I tried this code to send sms from my PC which
View Tutorial By: Jothi at 2009-05-15 03:19:54
258. hi,
i am safeer, i am try this program in
View Tutorial By: Safi at 2009-05-22 22:32:04
259. hi
Can you anyone please post me the entir
View Tutorial By: yasmeen at 2009-05-25 02:42:44
260. hi....I have a project, and need help please. I ne
View Tutorial By: kelvin65 at 2009-05-25 10:03:07
261. hello ..
I need help on my project .. I hav
View Tutorial By: kelvin65 at 2009-05-25 13:30:44
262. i don,t think so that it is sufficient to understa
View Tutorial By: amit singh at 2009-05-27 06:54:20
263. hi i m deepika mittal . i m working on the same pr
View Tutorial By: deepika Mittal at 2009-05-30 06:55:22
264. Please help me send sms. I did everything , But no
View Tutorial By: Prabhash V S at 2009-06-03 06:40:55
265. i am getting a error when try this sms application
View Tutorial By: Prabhash at 2009-06-03 06:45:26
266. When I tried to run this code, I got time out ***
View Tutorial By: Gandhi at 2009-06-04 06:20:48
267. can any body help me how to execute this code ....
View Tutorial By: nikhil at 2009-06-04 23:10:30
268. can any body explain me how to execute the program
View Tutorial By: nikhil at 2009-06-04 23:56:11
269. Where to put the smsc number. I am using vodafone
View Tutorial By: gopi at 2009-06-11 22:07:49
270. Good morning!
I need help about how to conf
View Tutorial By: alpha at 2009-06-14 03:20:41
271. This program not running on my system so give some
View Tutorial By: Ajay Kumar Barik at 2009-06-15 02:28:47
272. What is SMSC and CSCA number? , in which JAVA file
View Tutorial By: sampath at 2009-06-19 07:01:31
273. hi , sending of sms is failing. Please help me in
View Tutorial By: sudhakar at 2009-06-19 09:39:55
274. Hi everyone.
Does anyone hir knows
View Tutorial By: Tomy at 2009-06-24 02:59:57
275. Hi everyone.
Does anyone hir knows
View Tutorial By: Tomy at 2009-06-24 03:01:36
276. how to downlow the different 5 files please !!
View Tutorial By: Agnin at 2009-06-24 05:29:09
277. how to downlow the different 5 files please !!
View Tutorial By: Agnin at 2009-06-24 05:30:34
278. Hello! May I know where is the "main" fu
View Tutorial By: Angelia at 2009-06-25 18:54:28
279. It works , i had a lot of trouble but finally , i
View Tutorial By: Omer at 2009-06-30 06:05:17
280. Hi!
Any body have code for recieving sms fr
View Tutorial By: Haseeb at 2009-07-01 04:59:13
281. hi..!!
In the above code samples there is a
View Tutorial By: chiru at 2009-07-03 03:29:18
282. Hi got an error while executing :
j
View Tutorial By: Hi, at 2009-07-06 01:09:35
283. Hi,
Any body tell me how to these execute t
View Tutorial By: mari at 2009-07-09 02:02:12
284. Hello,
I want to send an mulitple sms using
View Tutorial By: Fionna at 2009-07-10 01:02:11
285. Hi,
I tried this script with noki
View Tutorial By: sravan at 2009-07-11 11:17:45
286. Hello all,
I need the codes for sen
View Tutorial By: Fionna at 2009-07-13 00:34:45
287. Hi,
I am using the code files for s
View Tutorial By: Utsav at 2009-07-14 01:29:06
288. Hi,
I tried use this code:
<
View Tutorial By: Yanosh at 2009-07-16 05:19:38
289. Hi,
How to implement this 5 files i
View Tutorial By: Yanosh at 2009-07-16 06:00:14
290. Hi,
How to implement this 5 files i
View Tutorial By: Yanosh at 2009-07-16 06:03:19
291. how to solve this problem
javax.com
View Tutorial By: rajani at 2009-07-18 05:44:55
292. HI,
I am getting this error
Error lo
View Tutorial By: vijay bhanu at 2009-07-18 08:57:57
293. javax.comm.NoSuchPortException
at javax.co
View Tutorial By: nikhil at 2009-07-22 05:58:55
294. how to solve this while i am running the code it
View Tutorial By: nikhilmuddasani at 2009-07-23 04:32:31
295. Hi, I found this article check this
http://
View Tutorial By: Hari at 2009-07-28 23:38:43
296. i want to Java coding's immediately
View Tutorial By: vignesh at 2009-07-29 07:02:23
297. Any Solution for below Error,
*** t
View Tutorial By: Mazher at 2009-08-02 02:08:52
298. hey i need a sms recieving code....
View Tutorial By: Kishore at 2009-08-06 09:11:13
299. hai.....people ..............
View Tutorial By: spartan at 2009-08-08 08:42:35
300. I need full code for how to connnect pc to mobile
View Tutorial By: Vijay at 2009-08-23 23:38:05
301. HI all,
I am not able to call SMSC
View Tutorial By: chinnadurai at 2009-08-26 23:58:54
302. hi,
i got an exception :in thread mai
View Tutorial By: N.Venugopal at 2009-08-27 05:25:07
303. Plz! it doesnt work! email me with full working im
View Tutorial By: M. Oron at 2009-09-01 09:51:14
304. i need to use sms and to creat using java so it is
View Tutorial By: Abdulkerim at 2009-09-07 05:29:15
305. Hi all people...If i need to read a sms from the m
View Tutorial By: Omarsi12 at 2009-09-06 17:11:15
306. Hi all people...If i need to read a sms from the m
View Tutorial By: Omarsi12 at 2009-09-06 17:12:27
307. Exception in thread "Thread-0" java.lang
View Tutorial By: yash at 2009-09-16 06:12:32
308. hi i want to send a message from my site to a phon
View Tutorial By: dinesh at 2009-09-16 10:25:37
309. Hello,
I have downloaded this code
View Tutorial By: Parthasarathi at 2009-09-21 02:09:49
310. Wed Sep 23 20:38:16 IST 2009:Sender:*** time out a
View Tutorial By: charan at 2009-09-23 09:13:22
311. Please help me i am getting following error messag
View Tutorial By: Balaji at 2009-09-23 22:54:06
312. I want to use the same code in c++,
Can a
View Tutorial By: vijay at 2009-09-26 00:47:02
313. Can anybody tell the steps to go ahead with the ex
View Tutorial By: Sunpenn at 2009-10-12 03:57:58
314. Its working perfectly for me.Thanks so much for pr
View Tutorial By: Sunpenn at 2009-10-13 00:53:09
315. please am in Nigeria, i need to know how to send a
View Tutorial By: kay at 2009-10-15 03:06:10
316. I used HyperTerminal directly to check whether mod
View Tutorial By: Pugal at 2009-10-15 03:38:08
317. hai,
pls help me. i need a full java code w
View Tutorial By: Shanalal Kasim at 2009-10-19 08:31:03
318. This code is only for send sms? can it also alert
View Tutorial By: abdul kadir at 2009-10-23 05:37:46
319. hai i have downloaded the above sms source code i
View Tutorial By: arunram at 2009-10-28 01:42:51
320. hai i have downloaded the above sms source code i
View Tutorial By: arunram at 2009-10-28 03:58:53
321. hi
thanks for your code i wanted to know w
View Tutorial By: anshul at 2009-10-28 15:10:10
322. i want ask whether how do i run the application?
View Tutorial By: unknown at 2009-10-29 21:13:03
323. Can anybody tell the steps to go ahead with the ex
View Tutorial By: shikha at 2009-11-03 10:42:34
324. Hi,
Can anyone suggest a GSM Modem
View Tutorial By: Archna at 2009-11-06 03:23:14
325. for me also The code gives the following exception
View Tutorial By: RaghunathaReddy.P at 2009-11-06 23:40:05
326. Actually i had downloaded all the files but it thr
View Tutorial By: bornwithpowers at 2009-11-11 04:48:21
327. i get exception NoSuchPortException. i tried on di
View Tutorial By: harryjoy at 2009-11-22 05:52:48
328. Hi Friends.... This code is working correctly with
View Tutorial By: kasi at 2009-11-25 23:52:56
329. Hi,
Pls help me.I need a full java code wit
View Tutorial By: karan at 2009-11-26 11:29:56
330. i am getting following error
Error
View Tutorial By: Pavan at 2009-11-26 21:31:22
331. please help me how to run this program..
View Tutorial By: khairie at 2009-12-01 22:43:08
332. Hello all,
Please help me out. I want to cr
View Tutorial By: Richa Bhatia at 2009-12-07 22:55:54
333. I want to send a message using mobile browser to s
View Tutorial By: Richa Bhatia at 2009-12-08 22:33:36
334. I want to send a message using mobile browser to s
View Tutorial By: Richa Bhatia at 2009-12-08 22:38:01
335. I had downloaded all 5 the file
but i need
View Tutorial By: Dhananjay at 2009-12-09 10:20:30
336. Hi guys
i am a beginer in java.. pls help
View Tutorial By: Jeevan at 2009-12-19 09:35:06
337. how to compile and run the above program ? please
View Tutorial By: samir at 2009-12-22 00:42:52
338. Could you please send me steps to execute the code
View Tutorial By: Roshan at 2009-12-23 21:32:29
339. I have a problem with PortInUseException. I wrote
View Tutorial By: robert at 2009-12-28 08:37:49
340. hi ashraf , ramlak and all,
i m new here .
View Tutorial By: hemendra at 2009-12-28 21:59:34
341. Can please send me codes to pass strings or text f
View Tutorial By: bryan at 2009-12-29 05:59:21
342. can i connect mobile phone to usb port instead of
View Tutorial By: Nevil at 2010-01-11 00:19:17
343. can i connect mobile phone to usb port instead of
View Tutorial By: Nevil at 2010-01-11 01:39:39
344. Post your errors, so that others may help you my f
View Tutorial By: yogesh at 2010-01-12 00:45:42
345. This code rocks!! any one having any trouble shoul
View Tutorial By: Ankur at 2010-01-22 06:37:10
346. hi,
there is no main method in SMSClient.ja
View Tutorial By: raju at 2010-01-22 08:28:45
347. hi
im trying to run this project an
View Tutorial By: VoyRufino at 2010-01-26 10:03:11
348. can any one plz tell me which java comm api do we
View Tutorial By: GAURAV MODI at 2010-01-29 02:12:13
349. Can anybody tell me how to send and receive SMS us
View Tutorial By: Bharat Lahori at 2010-02-04 07:14:19
350. I an going to try this code.
View Tutorial By: Bhagawati Prasad at 2010-02-06 02:45:10
351. hi i m vinit jain. i m working on the same project
View Tutorial By: vinit jain at 2010-02-09 12:16:01
352. If I have reliance netconnect connected to my lapt
View Tutorial By: Shaik Allabakash at 2010-02-09 19:38:10
353. Plz can someone help me, I copied the code above a
View Tutorial By: Dse90 at 2010-02-10 04:28:34
354. hi..it's very nice..can you send me the version fo
View Tutorial By: daniel81 at 2010-02-11 09:19:36
355. hi
View Tutorial By: raj at 2010-02-12 02:48:09
356. Hi everyone!
Pls I dnt know hot to configur
View Tutorial By: DSE90 at 2010-02-12 12:05:57
357. Sir I want to information about "how to send
View Tutorial By: murthy at 2010-02-17 07:15:18
358. i need help in java
View Tutorial By: arjun tanwar at 2010-02-17 20:58:55
359. hi all !
This is the error im getti
View Tutorial By: Ajit at 2010-02-17 23:09:47
360. Hi Friends.... Can you please send the working ver
View Tutorial By: shafi at 2010-02-18 08:28:49
361. Hi Friends.... Can you please send the working ver
View Tutorial By: shafi at 2010-02-18 08:29:11
362. HI I've been gettin this problem in STEP 6...How d
View Tutorial By: Omar_sito12 at 2010-02-22 08:46:18
363. Can any one tell me whether to add any external ja
View Tutorial By: Abhi at 2010-02-23 05:25:29
364. Can anybody explain me what are the minimum settin
View Tutorial By: Ramesh at 2010-02-25 10:28:42
365. this code is very and help in our project BUT
View Tutorial By: bhamre sandeep at 2010-02-28 03:02:53
366. how to solve this problem
javax.com
View Tutorial By: bhamre sandeep at 2010-02-28 04:18:36
367. Please guys i need sms.zip. I tried SMS.RAR but al
View Tutorial By: Waseem at 2010-03-06 15:48:40
368. how we can store a pdf file into database
View Tutorial By: neelima at 2010-03-10 23:46:52
369. plz wait for your solution
View Tutorial By: Desai Rajesh at 2010-03-11 22:00:32
370. I need JSP Code to send SMS to mobile.
View Tutorial By: nana at 2010-03-12 22:43:22
371. I need JSP Code to send SMS to mobile. send to kgl
View Tutorial By: nana at 2010-03-12 22:44:14
372. Hello,
I got an error like (Wed Ma
View Tutorial By: narayanan at 2010-03-17 05:56:21
373. Can any budy plz send me a source code of Sending
View Tutorial By: vilas at 2010-03-23 20:38:08
374. Can anybody help me to send the code for email sen
View Tutorial By: satendra at 2010-03-23 02:46:18
375. Plz help me......its urgent
i need a code
View Tutorial By: Nisha at 2010-03-22 00:38:42
376. I am doing a project to for sending sms from the s
View Tutorial By: visalakshi at 2010-03-30 20:55:50
377. does this code work with netbeans. if not can anyo
View Tutorial By: Alton at 2010-04-02 22:36:57
378. Hi, please do you know how can i use a cel connect
View Tutorial By: nobody at 2010-04-06 20:25:54
379. the below error can be solve by another version co
View Tutorial By: prasad raju v at 2010-04-08 04:20:10
380. The following exception are raised in send sms in
View Tutorial By: Vikram Subbiah at 2010-04-12 02:09:36
381. HI can you send "send sms" program throg
View Tutorial By: Nishanth Chandran Poduval at 2010-04-15 00:31:33
382. pls send to me comm.jar file , its not in sun si
View Tutorial By: sanjeewa at 2010-04-18 23:17:37
383. ghdfgh
View Tutorial By: sdafasd at 2010-04-19 02:42:51
384. Hi I properly placed the Comm api settings,i have
View Tutorial By: Muthumani at 2010-04-19 05:24:17
385. I am using my NOKIA 6630 via usb connection, runni
View Tutorial By: muhin at 2010-04-19 21:37:02
386. Hi,
I am getting this exception..My modem i
View Tutorial By: puneet at 2010-04-22 10:22:18
387. I am using my samsung s5233 via usb connection, ru
View Tutorial By: Puneet at 2010-04-23 06:14:28
388. Can anyone post the steps to implement everything
View Tutorial By: Matt at 2010-04-29 14:47:11
389. There are so many posts about the same problem (i
View Tutorial By: Matt at 2010-04-30 09:52:16
390. How to send to multiple mobiles at a time
View Tutorial By: rakesh at 2010-04-30 10:33:51
391. How to send to multiple mobiles at a time
View Tutorial By: rakesh at 2010-04-30 10:34:42
392. i need the code
View Tutorial By: C.Ajith Franklin at 2010-05-05 06:04:40
393. I am using my NOKIA 2700 classic via blutooth conn
View Tutorial By: Raheela at 2010-05-06 03:11:36
394. Hi Ramlak
First of all thanks for u
View Tutorial By: Vikas sharma at 2010-05-08 01:09:31
395. HI can you send "send sms" program throg
View Tutorial By: manav at 2010-05-09 12:54:52
396. I am using my NOKIA 2700 via blutooth connection.
View Tutorial By: Rahi at 2010-05-11 04:39:33
397. Hi,
I alos faced the same problem o
View Tutorial By: prasanna kumar v at 2010-05-15 02:55:59
398. works like a charm, though i didn't understand why
View Tutorial By: primus at 2010-05-19 04:46:18
399. hi ,
this is prakash and i want to know how
View Tutorial By: prakash at 2010-05-24 07:27:46
400. Hi, I need the complete working code for sending a
View Tutorial By: prakash at 2010-05-24 09:14:59
401. hi..dud.......
please help me in my proj
View Tutorial By: amar usakoyal at 2010-05-25 03:31:16
402. Hi
after i dl the javacomm20-win32.zip and
View Tutorial By: jm at 2010-05-31 01:42:28
403. Guys,
Please explain detail steps w
View Tutorial By: Parthasarathy at 2010-06-02 08:13:12
404. What is the use of "SMSConnector" in thi
View Tutorial By: Mudra at 2010-06-04 15:04:55
405. I get this error:
Can someone please help m
View Tutorial By: Carlos at 2010-06-14 02:42:53
406. This code works for me. thanks a lot. You need to
View Tutorial By: Sajith at 2010-06-16 10:29:56
407. guys i am getting this error..plz tell me the solu
View Tutorial By: Ajit at 2010-06-17 07:38:51
408. i am trying to send sms using this code but shows
View Tutorial By: Khoyendra at 2010-06-19 01:10:20
409. I get this error
//Exception in thread &quo
View Tutorial By: Mohammed Abulawi at 2010-06-19 12:54:45
410. Hi all, i have tried above code, but am getting fo
View Tutorial By: swathi at 2010-06-24 05:18:28
411. Thank you very much for this code,It is woking per
View Tutorial By: pradeep kumar mohapatra at 2010-06-25 04:30:49
412. http://techieidea.blogspot.com/2009/11/java-commun
View Tutorial By: pradeep kumar mohapatra at 2010-06-25 04:47:53
413. I have downloaded all the files
SMSClient.j
View Tutorial By: Sanjay at 2010-06-29 04:48:16
414. Guys,
Please explain detail steps w
View Tutorial By: sudhkar at 2010-07-01 00:19:05
415. Hi all
I connected my mobile wi
View Tutorial By: sruthy at 2010-07-07 03:44:27
416. hi....
i want to send sms to any mobile by
View Tutorial By: prerna at 2010-07-09 20:15:48
417. hi....
I have connected the Blackberry 8100
View Tutorial By: Abhishek Sharma at 2010-07-11 05:56:41
418. hi....
I have connected the Blackberry 8100
View Tutorial By: Abhishek Sharma at 2010-07-11 05:57:13
419. Hi,
i executed this program successfully in
View Tutorial By: Praveen at 2010-07-14 01:05:37
420. Hi,
i executed this program successfully in
View Tutorial By: Praveen at 2010-07-14 01:06:40
421. hi all,
i successfully executed the
View Tutorial By: praveen at 2010-07-14 04:47:41
422. hi all,
i successfully executed the
View Tutorial By: praveen at 2010-07-14 04:47:59
423. Hi All
I connected mobile as a modem a
View Tutorial By: sruthy at 2010-07-17 01:58:11
424. Good stuff. I am looking for a ready made program
View Tutorial By: pickatutorial.com at 2010-07-18 05:49:56
425. Good stuff.
View Tutorial By: flazwbooks at 2010-07-18 05:50:50
426. Hi
I can able to execute the abov
View Tutorial By: sruthy at 2010-07-23 03:29:39
427. Good Work! Keep it up.
View Tutorial By: pickatutorial at 2010-07-26 10:30:32
428. can any one plz send me the message passing codin
View Tutorial By: sowmya at 2010-08-02 04:57:22
429. Hello
I need some one send me runnable cod
View Tutorial By: Ahmed Ghazey at 2010-08-09 01:55:48
430. Hello
I need some one send me runnable cod
View Tutorial By: Ahmed Ghazey at 2010-08-09 01:56:52
431. Hi,
Please I have this problem can anyone h
View Tutorial By: InfoTam at 2010-08-09 04:37:24
432. Hi,
Please I have this problem can anyone h
View Tutorial By: InfoTam at 2010-08-09 04:38:12
433. Can anybody send full code for sending and receivi
View Tutorial By: Jayapal at 2010-08-12 11:41:38
434. Hii.... We are B.Tech 4th year students. We are wo
View Tutorial By: Shipra Malik at 2010-08-17 03:32:34
435. Can anybody send me the java full code for sending
View Tutorial By: David at 2010-08-22 22:57:38
436. Thanks for the above code. I am not sure whether t
View Tutorial By: Koolkabin at 2010-08-20 01:11:27
437. hi!
please tell how i got the java comm api
View Tutorial By: suresh at 2010-08-22 03:29:06
438. Hi all please send me the full working code as wel
View Tutorial By: Ravish at 2010-08-27 06:22:52
439. To RUN this code, follow below steps
View Tutorial By: Ajay at 2010-09-04 03:01:24
440. hello everyone
i want to implement
View Tutorial By: Prateek at 2010-09-05 00:40:57
441. Plse Send me The Code For Sms Application to My Ma
View Tutorial By: Santoshb at 2010-09-08 07:08:55
442. Hello guys, I'm developing java program to send SM
View Tutorial By: Rania at 2010-09-08 09:04:47
443. Caught java.lang.ClassNotFoundException: com.sun.c
View Tutorial By: A.Balaji at 2010-09-13 00:15:48
444. Could anyone please forward me the working version
View Tutorial By: Stephen Machipi at 2010-09-13 06:41:08
445. is this code applicable if I used USB GSM Modem? a
View Tutorial By: Rania at 2010-09-14 12:33:15
446. place both comm.jar and javax.comm.properties in l
View Tutorial By: Rania at 2010-09-14 19:52:49
447. Sorry Actually i used previous version of comm.jar
View Tutorial By: A.Balaji at 2010-09-15 02:44:55
448. hi...
how can i get this 5 files...of java.
View Tutorial By: loveu at 2010-09-19 12:04:10
449. pls help me how to solve the timeout problem
View Tutorial By: nisha at 2010-09-20 22:29:17
450. Please can anyone share the correct code with us?
View Tutorial By: Rania at 2010-09-21 18:16:47
451. click the line which is shown in this site:
View Tutorial By: hi to get 5 files at 2010-09-22 03:10:36
452. java.lang.NoSuchMethodError: main
<
View Tutorial By: mark at 2010-09-27 03:46:48
453. Hi All,
This code is working fine i
View Tutorial By: A.Balaji at 2010-09-27 04:40:38
454. Thnx. Very Useful Code...
View Tutorial By: Ankur Pandya at 2010-09-27 05:14:35
455. hi
thanks for the above code
Anyone
View Tutorial By: mjnanthini at 2010-09-29 00:59:01
456. hi MR. A.Balaji
can u help me how you have
View Tutorial By: mjnanthini at 2010-10-03 23:04:35
457. hi, IF ANY ONE REALLY INTRESTED TO RUN THIS PROGRA
View Tutorial By: sunil kumar sahu at 2010-10-09 11:50:56
458. Hi,
I run the program on windows (connectin
View Tutorial By: Razvan at 2010-10-13 06:04:24
459. HI can you send send sms throgh java program above
View Tutorial By: Naresh at 2010-10-15 01:04:53
460. plz i want afull code to send sms to mobile includ
View Tutorial By: alosh at 2010-10-17 08:39:25
461. hiii
i m doing my final year project on sms
View Tutorial By: jiya at 2010-10-21 07:58:24
462. Hi Sir,
Thank You so much for your
View Tutorial By: kareena at 2010-10-21 23:26:37
463. Hi Sir,
Thank You so much for your
View Tutorial By: kareena at 2010-10-21 23:58:12
464. could you plz tell me how to run this all programs
View Tutorial By: abhishek at 2010-10-27 00:08:57
465. Hi,
Could you please send me the complete
View Tutorial By: Ranjani at 2010-10-28 10:49:42
466. I have loaded allthe 5 java files.But how to imple
View Tutorial By: Bharat at 2010-11-01 23:28:14
467. hi every body i want full java code to send messag
View Tutorial By: Ashray P Shetty at 2010-11-09 04:33:45
468. Nice code. It is working Fine.Thnx
View Tutorial By: Tapasya Shukla at 2010-11-12 06:32:45
469. Is there a code that can hide smses, when they ent
View Tutorial By: James at 2010-11-18 03:32:56
470. Hi every body.. I accomplished the task of sending
View Tutorial By: Ashray P Shetty at 2010-11-18 06:25:54
471. please help!!!
how can we run that program?
View Tutorial By: njsantos at 2010-11-18 20:35:53
472. hi Ashray P Shetty,
I want assistance in th
View Tutorial By: Shabbir Manasawala at 2010-11-19 02:02:43
473. hi Shabbir please send me ur email id to ashray_sh
View Tutorial By: Ashray P Shetty at 2010-11-19 05:52:28
474. hi Ashray P Shetty,
I'm getting the followi
View Tutorial By: Balaji at 2010-11-25 14:16:23
475. dear sir/mam
i execute the above downloaded
View Tutorial By: tamilarasan.D at 2010-12-05 05:20:19
476. i have run the code successfully but it does not s
View Tutorial By: amrish at 2010-12-11 07:00:28
477. hi, ashray p shetty
can you please tell me
View Tutorial By: amrish at 2010-12-12 07:30:49
478. so how can i run this project
View Tutorial By: milinda at 2010-12-17 10:01:23
479. hello everyone... I am getting the error "sms
View Tutorial By: umar at 2010-12-19 04:19:14
480. hello everyone... I am getting the error "sms
View Tutorial By: umar at 2010-12-19 04:20:33
481. Hi, Razvan
I use your run() method
View Tutorial By: James at 2010-12-22 00:07:48
482. Hi, Razvan
I change over to using y
View Tutorial By: James at 2010-12-22 00:44:50
483. hi every body i want full java code to send messag
View Tutorial By: Yous at 2010-12-26 06:45:30
484. HI.....
javax.comm.NoSuchPortExcept
View Tutorial By: RAHUL at 2010-12-28 22:59:41
485. hi,
i am trying to run this SMS jav
View Tutorial By: Raghavendra at 2010-12-29 08:27:02
486. Hi ,Razvan
I changed code as in you
View Tutorial By: sanil at 2011-01-01 10:49:41
487. Hi ,Razvan
I changed code as in you
View Tutorial By: sanil at 2011-01-01 11:05:53
488. hi every one i m doing project on sending mobile a
View Tutorial By: satyanarayana at 2011-01-05 01:01:57
489. Hi! I'm working on Ubuntu 10.04
At
View Tutorial By: Rushabh at 2011-01-12 05:24:57
490. Hi! I'm working on Ubuntu 10.04
At
View Tutorial By: Rushabh at 2011-01-12 06:22:43
491. Hi Rushabh, this only means that your port is not
View Tutorial By: Ramlak at 2011-01-14 21:59:39
492. Please send me the source code in JAVA to send and
View Tutorial By: Ravi at 2011-01-16 05:48:17
493. Hi.. Everyone... i would like to send and received
View Tutorial By: Michael at 2011-01-29 23:43:23
494. i have download the all 5 codes.but how can i run
View Tutorial By: Chathu at 2011-01-30 02:28:53
495. i am using tata photon+ modem ,so which csca numb
View Tutorial By: ganesh at 2011-01-30 12:10:04
496. i am using tata photon+ modem ,so which csca numb
View Tutorial By: ganesh at 2011-01-30 12:11:00
497. i am using tata photon+ modem ,so which csca numb
View Tutorial By: ganesh at 2011-01-30 12:11:01
498. HI . i got the following exception while start up
View Tutorial By: Ramesh at 2011-02-01 00:13:04
499. HI . i got the following exception while start up
View Tutorial By: Ramesh at 2011-02-01 00:14:14
500. Error loading SolarisSerial: java.lang.Unsatisfied
View Tutorial By: koteshwar at 2011-02-05 05:33:19
501. hi..i can send 4 or 5 sms per mnt..is there any wa
View Tutorial By: rahul at 2011-02-11 00:17:51
502. Hi Rahul,
I am struggling to send
View Tutorial By: sravani at 2011-02-11 22:56:58
503. Hello, I've been having trouble getting this thing
View Tutorial By: TheGag96 at 2011-02-15 20:17:45
504. hi
i try to write a code for send data or s
View Tutorial By: mjh at 2011-02-16 08:26:10
505. tell me a code in which i can send a message from
View Tutorial By: aski at 2011-02-16 12:39:05
506. tell me a code in which i can send a message from
View Tutorial By: aski at 2011-02-16 12:39:32
507. hello can u send me the code in java to send and r
View Tutorial By: somanath at 2011-02-17 01:28:40
508. Hi I have Fixed - "NoSuchPortException"
View Tutorial By: vijay at 2011-02-19 01:44:37
509. For me it is executing without error, But not send
View Tutorial By: Vijay at 2011-02-19 01:51:08
510. halo,
im struggling to run the classes...ca
View Tutorial By: Kevin at 2011-02-20 12:44:27
511. i am getting the erorr such as:::::
Error l
View Tutorial By: supriyo at 2011-02-21 13:17:00
512. Hello, I'm using the above codes for my project. B
View Tutorial By: Sandeep Dattaraju at 2011-02-26 11:01:48
513. Hi, If any body was able to send the message suces
View Tutorial By: Pradeep Singh Chouhan at 2011-03-02 23:03:05
514. Thanks for sharing..can anyone guide me on install
View Tutorial By: Ben David at 2011-03-04 07:27:11
515. Solution for javax.comm.NoSuchPortException
View Tutorial By: Manjunath Suresh Vaidya at 2011-03-09 04:46:57
516. Hi, If any body was able to send the message suces
View Tutorial By: kavin at 2011-03-14 06:23:22
517. Hi, If any body was able to send the message suces
View Tutorial By: kavin at 2011-03-14 06:24:18
518. Hi, thanks alot this code works for me , can someo
View Tutorial By: ann at 2011-03-18 04:50:16
519. I'm getting the following error even after several
View Tutorial By: Joe85 at 2011-03-18 08:58:04
520. hi
View Tutorial By: c.ronaldo at 2011-03-18 23:16:01
521. How to execute all these 5 files plz tell me step
View Tutorial By: Umesh Kamankar at 2011-03-19 10:56:29
522. hi can u send me the complete working code for sen
View Tutorial By: Amit Adhikaree at 2011-03-22 17:47:49
523. Hi
I need a java code which I
1 -
View Tutorial By: HNO11 at 2011-03-26 07:35:57
524. Hi
I need a javafx code which I
1
View Tutorial By: HNO11 at 2011-03-26 07:45:57
525. Hi
I need a javafx code which I
1
View Tutorial By: HNO11 at 2011-03-26 08:59:03
526. it is working....great
View Tutorial By: mahesh maduranga at 2011-03-27 23:01:57
527. Please
Can you help me ^-^
I use th
View Tutorial By: HNO11 at 2011-03-28 11:08:28
528. Why this exception at run time?
Fri
View Tutorial By: Sebin Joseph at 2011-04-01 06:03:17
529. I want a code to receive message from GSM modem us
View Tutorial By: Mayur at 2011-04-05 00:00:05
530. hello Ramlak I am getting Error Time Out At Step 6
View Tutorial By: hardik at 2011-04-13 05:12:06
531. I am executing this code using NetBeans6.9 and get
View Tutorial By: Rohit at 2011-04-19 11:07:59
532. hi can u send me the complete working code for sen
View Tutorial By: Brajesh at 2011-04-21 03:07:40
533. Hi please help me out..
i am gettin
View Tutorial By: sasivarnan at 2011-04-22 14:15:40
534. Sat Apr 23 10:44:14 IST 2011:Sender:*** time out a
View Tutorial By: sasivarnan at 2011-04-23 01:17:18
535. Able to connect to mobile
Unable to send me
View Tutorial By: Prashant at 2011-04-24 01:16:27
536. hi please help me out.. how to use this card for r
View Tutorial By: sasivarnan at 2011-04-27 15:01:12
537. I got the solution people. just do the following a
View Tutorial By: Nicholas Ndegwa at 2011-05-03 03:05:03
538. Hi Ramlak
I am trying to run your code.
View Tutorial By: jainitya at 2011-05-04 11:42:07
539. Hi Ramlak
I am trying to run your code.
View Tutorial By: jainitya at 2011-05-04 12:26:16
540. I do, the necessaries changes to receive messages
View Tutorial By: wodie at 2011-05-05 20:39:06
541. hi friends i hav project work in this topic so pls
View Tutorial By: sullan at 2011-05-08 12:08:56
542. hi I want to send SMS to mutiple no.s. Is it possi
View Tutorial By: gaurav at 2011-05-17 09:54:12
543. I have loaded allthe 5 java files.But how to imple
View Tutorial By: Thennarasu at 2011-05-20 02:30:28
544. Hi,
I am Mahesh. i want to sending sms cod
View Tutorial By: Mahesh at 2011-05-20 05:24:22
545. i want to sending sms code in java. send me that c
View Tutorial By: Montu at 2011-06-01 15:15:56
546. Good day. I managed to get the code working but I
View Tutorial By: thabiso at 2011-06-03 09:08:24
547. Good day. I managed to get the application to work
View Tutorial By: thabiso at 2011-06-03 09:21:32
548. But the above code is not working, when we send SM
View Tutorial By: SenthilPandi ChandraSekaran at 2011-06-08 07:22:31
549. this code is not working properly buddies. please
View Tutorial By: hammad at 2011-06-10 01:53:39
550. Guys can you send me complete program for recievei
View Tutorial By: KEVIN at 2011-06-10 21:52:04
551. Thanks for providing this perfectly working
View Tutorial By: R.VENU GOPAL at 2011-09-25 07:08:21
552. send me the code with complete set of java package
View Tutorial By: meena at 2011-06-15 03:12:17
553. I download this program, but I need how to run. wh
View Tutorial By: prabha at 2011-06-21 04:52:42
554. Hi,
Could you forward me the code a
View Tutorial By: vikas at 2011-06-22 07:02:48
555. I have download that 5 files .But how to run this
View Tutorial By: Unnati at 2011-07-07 06:07:26
556. Hello Mr. Developer of above proj....plz let me kn
View Tutorial By: Prakash Vishwakarma at 2011-07-08 10:00:58
557. Hello Mr. Developer of above proj....plz let me kn
View Tutorial By: Prakash Vishwakarma at 2011-07-08 10:02:22
558. Hi, I need the complete working code for sending a
View Tutorial By: Unnati at 2011-07-13 05:06:06
559. I got Error...Why it is happen..??
View Tutorial By: Dineth at 2011-07-15 16:54:31
560. teedyLipEnend
View Tutorial By: teedyLipEnend at 2011-08-05 08:14:06
561. the code works fine. you just need to create a mai
View Tutorial By: Nabil at 2011-08-09 11:11:03
562. I need complete steps for execution
Severa
View Tutorial By: DASAn at 2011-08-10 10:10:36
563. hellow my name is samer, i have a project of final
View Tutorial By: samer flayha at 2011-08-17 09:37:16
564. if time out at step 6*** Exception is occure
View Tutorial By: Bharat at 2011-08-17 10:42:23
565. i need help for my study, i need an algorithm for
View Tutorial By: Vincent at 2011-08-17 13:37:52
566. hello
i have a final studie project that sp
View Tutorial By: samer at 2011-08-18 07:39:25
567. Hi i am getting this error *** time out at step 3
View Tutorial By: Prasad at 2011-08-30 06:24:58
568. Hai everyone,I am getting error like *** time out
View Tutorial By: Prasad at 2011-08-30 06:28:44
569. Hi Everyone, i tried the code. im using Micromax
View Tutorial By: adm at 2011-09-06 12:31:18
570. Hi all
Can you please tell ,how to recei
View Tutorial By: Nanthini at 2011-09-07 16:48:04
571. Hi Everyone, i tried the code. im using this code.
View Tutorial By: sourabh at 2011-09-09 12:42:02
572. Hi i have created the 5 files and in main program
View Tutorial By: Anandkumar at 2011-09-10 05:13:59
573. Hi
I have final project whit sms program.
View Tutorial By: AliPour at 2011-09-11 16:51:19
574. I want de total main prg to send and receive... se
View Tutorial By: sharu at 2011-09-12 16:49:24
575. sr. habla espanol necesito su ayuda... alguno tien
View Tutorial By: ROGER HERNANDEZ at 2011-09-13 15:20:01
576. Hi,
can anyone show or send me a sample pro
View Tutorial By: jsn10 at 2011-09-14 05:41:03
577. Hi to every body,
I very new to con
View Tutorial By: Srinivas at 2011-09-15 10:04:37
578. Hello Everyone
I used this program but i'm
View Tutorial By: Yougeshwar Khatri at 2011-09-16 08:50:47
579. Could you please send the steps or complete sample
View Tutorial By: Prashant Pendkar at 2011-09-27 09:01:17
580. com.mail.Sender:*** time out at step 6***
<
View Tutorial By: sp at 2011-10-04 10:58:43
581. Tue Oct 04 16:42:36 IST 2011:com.mail.Sender:*** t
View Tutorial By: ksp at 2011-10-04 11:13:59
582. Hello,
I was able to rectify port/
View Tutorial By: Harsh at 2011-10-09 16:54:06
583. Hi fiends,
your given approch is correct .
View Tutorial By: Amit Kumar Singh at 2011-10-10 04:44:58
584. Hai people plz help it's urgent, i got no errors i
View Tutorial By: Hopewell at 2011-10-13 22:57:45
585. hi....can anybody help me....
i need the co
View Tutorial By: Hailu at 2011-10-20 06:44:27
586. javax.comm.NoSuchPortException
at j
View Tutorial By: das at 2011-10-20 15:21:05
587. can you send me that sending sms using java progra
View Tutorial By: francis at 2011-10-21 06:27:38
588. I have loaded allthe 5 java files.But how to imple
View Tutorial By: pradeep at 2011-10-21 17:44:55
589. hey could u send me the java program or code for s
View Tutorial By: Randhir at 2011-10-27 08:59:23
590. can this code communicate with other pc that using
View Tutorial By: lolo at 2011-10-28 09:14:30
591. JohnDukalis
View Tutorial By: JohnDukalis at 2011-10-29 20:03:29
592. why the code had error in status???
View Tutorial By: matuz at 2011-11-13 11:35:34
593. can any body help me,i need to send a sms from sim
View Tutorial By: vinayaka DJ at 2011-11-14 12:44:01
594. This is a great example to understand how SMS send
View Tutorial By: Kirk at 2011-11-14 21:35:20
595. Hi dude's it's working fine for me.first i got no
View Tutorial By: raavi.surendra at 2011-11-16 10:10:31
596. I have a website and i want to make a option to se
View Tutorial By: rasel at 2011-11-26 15:50:49
597. Hi,
I have loaded all 5 java classes and i
View Tutorial By: DurgaPrasad at 2011-11-24 06:00:24
598. Hi,
I have loaded all 5 java classes and i
View Tutorial By: DurgaPrasad at 2011-11-24 06:02:19
599. Hi,
Please tell me how to execute the above
View Tutorial By: DurgaPrasad at 2011-11-24 06:04:48
600. Hi Friends,
Saw all of your comments. The a
View Tutorial By: Avinash at 2011-11-28 04:43:09
601. Hi everybody,
cn u plz mail me the working
View Tutorial By: Srijita at 2011-11-28 06:10:03
602. The above code works for me. When I run the progra
View Tutorial By: Avinash at 2011-12-01 10:06:44
603. The above code works for me. When I run the progra
View Tutorial By: Avinash at 2011-12-01 10:20:19
604. i have developed java bulk sms marketer software.<
View Tutorial By: saddam at 2011-12-01 13:04:43
605. hi RAMLAK i am akankshain and getting these erro
View Tutorial By: akanksha at 2011-12-06 10:15:47
606. i avinash can i know how ur problem is resolved ,i
View Tutorial By: santosh at 2011-12-06 10:35:42
607. Thanks :) It works for me :)
View Tutorial By: Milind at 2011-12-07 10:05:23
608. it works well thanks
View Tutorial By: Zahran at 2011-12-08 03:07:07
609. package practice_bo;
import practic
View Tutorial By: nishi at 2011-12-09 02:00:20
610. Hi santhosh,
Try it ou
View Tutorial By: Kiran at 2011-12-14 04:31:29
611. It work fine with message below 160 chars. How can
View Tutorial By: Milind at 2011-12-15 06:20:33
612. Hello Nishi,
The class names in your progra
View Tutorial By: Kiran at 2011-12-16 06:32:54
613. hi...i want a code to send sms from GSM to PC.
View Tutorial By: siri at 2011-12-19 07:39:02
614. Please send me application for sending message on
View Tutorial By: jigar at 2011-12-21 11:53:48
615. I'm using BSNL broadband modem,,from that how can
View Tutorial By: souvik at 2011-12-22 08:12:50
616. Hi i 've used this SMSClient.java in my simple pro
View Tutorial By: Prakah at 2011-12-22 17:10:48
617. Hi Jigar,
The above applicatio
View Tutorial By: Kiran at 2011-12-26 04:00:24
618. Hello Ramlak...I am getting this errors.....please
View Tutorial By: souvik at 2011-12-26 19:16:19
619. Hi..All ...to run this programs.first of of all u
View Tutorial By: raavi.surendra at 2011-12-29 05:34:06
620. I did'nt manage to run the program . I've added th
View Tutorial By: Bull at 2012-01-01 16:28:20
621. any help please I'm getting this exception
View Tutorial By: Bull at 2012-01-02 17:22:18
622. After a great struggle I am able to successfully c
View Tutorial By: raghu at 2012-01-04 15:10:07
623. Can any one say how to send a message to a particu
View Tutorial By: Sankar guru.P at 2012-01-05 07:43:44
624. today Iam getting time ,date of sending and "
View Tutorial By: raghu at 2012-01-07 14:43:32
625. Hello! dkkcdfd interesting dkkcdfd site! I'm reall
View Tutorial By: Pharmg634 at 2012-01-10 14:06:00
626. Hello! aabfdgf interesting aabfdgf site! I'm reall
View Tutorial By: Pharmk801 at 2012-01-11 09:40:45
627. I managed to run the code but I'm getting a *** ti
View Tutorial By: Bull at 2012-01-11 12:26:57
628. can any one share the link for downloading the fir
View Tutorial By: jay at 2012-01-17 14:21:28
629. I have successfully send sms after some trying....
View Tutorial By: DILIP at 2012-01-19 14:38:50
630. hi ..........
the code is worked for me....
View Tutorial By: pradeep at 2012-01-25 06:30:14
631. Hi DILIP !
Can you plz help me I have an ex
View Tutorial By: Bull at 2012-01-25 16:16:36
632. Hi
I tried to use this on a windows 7 32 b
View Tutorial By: Asela at 2012-01-26 18:35:57
633. Hi
I have done all the steps mentioned abo
View Tutorial By: Asela at 2012-01-26 18:51:03
634. Hi
I have done all the steps mentioned abo
View Tutorial By: Asela at 2012-01-26 18:53:51
635. SMSC number is the sms center no. put the sim to a
View Tutorial By: Java MAn at 2012-01-28 19:08:23
636. hello sir,
any help please I'm gett
View Tutorial By: Manav at 2012-02-09 07:31:26
637. Please note that the above code does not work with
View Tutorial By: mk at 2012-02-14 15:37:02
638. I managed to get the program working. However I ha
View Tutorial By: Anthrax at 2012-02-15 10:11:19
639. Please note that the above code does not work with
View Tutorial By: mk at 2012-02-15 10:59:49
640. Working perfectly..
Kindly pls send
View Tutorial By: ashok at 2012-02-18 17:58:40
641. the above code works fine for. May someone help wi
View Tutorial By: T.T at 2012-02-23 06:22:36
642. this code doesn't work can you sent me the full c
View Tutorial By: Dhananjaya at 2012-02-24 14:07:49
643. i want a java code to make a GUI in netbeans and s
View Tutorial By: siddharth at 2012-03-17 09:59:59
644. hi guys,
i want some
View Tutorial By: THANGA at 2012-03-19 15:24:38
645. I set my eclipse as describe above.
I also
View Tutorial By: Anonymous at 2012-03-25 02:12:52
646. Dear any buddy i use Nokia N73 and connect with Bl
View Tutorial By: zstranger at 2012-03-29 07:43:12
647. Dear any buddy i use Nokia N73 and connect with Bl
View Tutorial By: zstranger at 2012-03-29 07:47:02
648. Please send me working code and setup,,My mail id
View Tutorial By: Karthik at 2012-03-30 19:56:35
649. Hi, I need the complete working code for sending a
View Tutorial By: ajay dhall at 2012-04-02 07:10:13
650. Hi,
This is really urgent... my cod
View Tutorial By: Benetha at 2012-04-09 05:57:45
651. Hey!
Very Nice! Thanks for the post
View Tutorial By: Send Free SMS at 2012-05-18 23:09:55
652. I need a software to send messages to our members.
View Tutorial By: M V Bhaktha at 2012-05-22 08:19:38
653. its urgent i need fully working code
my ema
View Tutorial By: rahul at 2012-05-24 03:31:19
654. its urgent i need fully working code
my ema
View Tutorial By: rahul at 2012-05-24 03:31:57
655. Im using maxis broadband now.
I want to cre
View Tutorial By: rayminn at 2012-06-03 21:06:41
656. Im using maxis broadband now.
I want to cre
View Tutorial By: rayminn at 2012-06-03 21:08:13
657. Hey willam buddy as everyone is asking questions t
View Tutorial By: akshay at 2012-06-05 09:55:39
658. for me also The code gives the following exception
View Tutorial By: Nilesh Agrawal at 2012-06-06 15:55:02
659. its giving exception
javax.comm.NoSuchPortE
View Tutorial By: Dc at 2012-06-07 04:08:19
660. when i was running this code... it is giving me th
View Tutorial By: Nilesh Agrawal at 2012-06-08 15:08:25
661. Thank You,
Code is working well.
Is
View Tutorial By: dinesh at 2012-06-23 04:32:48
662. Thank You,
Code is working well.
Is
View Tutorial By: dinesh at 2012-06-23 04:33:16
663. Hey Dinesh! How to use this Java example? I am a n
View Tutorial By: jem at 2012-06-26 08:33:41
664. How do we run this 5 codes in eclipse, I mean the
View Tutorial By: madhu at 2012-07-09 08:40:12
665. do we require a gsm modem for sure ? aren't there
View Tutorial By: sherry at 2012-07-10 11:28:58
666. To execute program you need comm.jar that is not a
View Tutorial By: shreyansh shah at 2012-07-11 05:57:42
667. Hai,
dis is anu, dng final year. i need to
View Tutorial By: anu at 2012-07-12 15:41:19
668. Is someone know, how to get the delivery report ?
View Tutorial By: Anjula at 2012-07-24 09:24:31
669. The code gives the following exception :-
<
View Tutorial By: waqar at 2012-07-26 17:02:07
670. I'm using this simple and free way to send SMS usi
View Tutorial By: Saurabh at 2012-07-28 18:04:24
671. Hi
i am getting this error
c
View Tutorial By: parab at 2012-08-01 06:24:18
672. You have mentioned that
to use this program
View Tutorial By: Naasik at 2012-08-05 00:15:57
673. hello all,
i have this error.
Except
View Tutorial By: daniel at 2012-08-12 18:50:04
674. Thanks for the code. The code runs fine without an
View Tutorial By: aanube at 2012-08-22 10:11:21
675. Thanks for the code. The code runs fine without an
View Tutorial By: aanube at 2012-08-22 10:12:54
676. hi guys.
i have downloaded the code for sen
View Tutorial By: Tabrez Ansari at 2012-09-13 11:03:46
677. can you send me comm.jar required for this project
View Tutorial By: rahul at 2012-10-20 12:21:42
678. hi,
please anyone tell me how to send bulk
View Tutorial By: Nasrin at 2012-10-21 18:31:50
679. hi,
please anyone tell me how to send bulk
View Tutorial By: Nasrin at 2012-10-21 18:59:50
680. No main class found
need favour
help
View Tutorial By: Mudasir at 2012-11-10 17:09:57
681. it works! thanks! :D
however I would like t
View Tutorial By: john at 2012-11-15 10:50:33
682. please i need the link to download the file requir
View Tutorial By: kamahsteve at 2012-11-17 10:20:22
683. Hi,
I can use this programme to sen
View Tutorial By: malak at 2012-11-25 17:19:12
684. Hi,
I can use this programme to sen
View Tutorial By: malak at 2012-11-25 17:20:29
685. Hi,
I can use this programme to sen
View Tutorial By: malak at 2012-11-25 17:21:00
686. Exception in thread "Thread-0" java.lang
View Tutorial By: Ghulam Murtaza at 2012-12-12 06:43:58
687. gudeveniing!! plz gave me some project title gor j
View Tutorial By: ivie at 2012-12-12 11:00:43
688. plz can you help me,,,because i need this tomorrow
View Tutorial By: ivie at 2012-12-12 11:20:35
689. Hello,
I have stupid questions, but I need
View Tutorial By: Johnson at 2012-12-13 13:34:24
690. Hello,
I have stupid questions, but I need
View Tutorial By: Johnson at 2012-12-13 13:35:50
691. Hello, I have stupid questions, but I need to ask
View Tutorial By: Johnson Edison at 2012-12-13 17:10:08
692. Hello, I have stupid questions, but I need to ask
View Tutorial By: Johnson Edison at 2012-12-13 17:10:57
693. Thanks it worked for me after lot of search for CO
View Tutorial By: VIRAJ at 2012-12-26 11:56:24
694. OK 0
COM1
javax.comm.CommPortIdenti
View Tutorial By: sruthi at 2013-01-20 10:37:41
695. Thanks a lot......Plz help me to execute these fil
View Tutorial By: Sanjana at 2013-01-26 10:15:12
696. thanks a lot ya i got it.................
View Tutorial By: sruthi at 2013-02-02 08:18:07
697. i have connected my phone through bluetooth and us
View Tutorial By: nikitha at 2013-02-05 09:07:34
698. i have connected my phone through bluetooth using
View Tutorial By: nikitha at 2013-02-06 05:05:04
699. i am getting d following error:-
Se
View Tutorial By: nikitha at 2013-02-07 09:23:12
700. can any body help me ??????????
i `he get a
View Tutorial By: gkggt at 2013-02-11 12:04:09
701. can any body help me ??????????
i `he get a
View Tutorial By: gkggt at 2013-02-11 12:09:04
702. any body who have a full source code of the progra
View Tutorial By: progra at 2013-02-11 12:37:34
703. You should give more specification on exactly whe
View Tutorial By: Abhijit at 2013-03-09 20:14:21
704. I writing a main class in the eclipse IDE and call
View Tutorial By: adam lim at 2013-03-11 04:13:51
705. im having errors in sPort.sendBreak in SerialConne
View Tutorial By: mrrrc at 2013-03-18 08:54:50
706. can you send me comm.jar required for this project
View Tutorial By: gayatri at 2013-03-19 09:53:35
707. thanks you're such an angel :) thanks for solving
View Tutorial By: Tanzeela Ali at 2013-04-01 07:42:08
708. At my phone number, it showing
5 re
View Tutorial By: Zafar Iqbal at 2013-04-02 19:48:32
709. Please help here...
I tried both 0300460423
View Tutorial By: Zafar Iqbal at 2013-04-02 20:14:29
710. Man, your code smells!!
View Tutorial By: Yo at 2013-04-04 03:09:27
711. please someone share the example to receive messag
View Tutorial By: yem at 2013-04-06 01:52:00
712. To install 32 bit java Communication API you can f
View Tutorial By: Shailendra at 2013-04-06 14:49:44
713. Hi...Really nice post..But i got the error like
View Tutorial By: Nithya at 2013-04-11 09:37:50
714. Can u plse help me to run the code . I created ins
View Tutorial By: Radha at 2013-04-17 10:23:45
715. javax.comm.NoSuchPortException
at javax.com
View Tutorial By: Augustin at 2013-04-27 11:12:47
716. Hi,
i need a program to send sms wh
View Tutorial By: Sindhuja at 2013-05-29 07:07:15
717. Hi to all,
I worked on this project
View Tutorial By: Ashish Agrawal at 2013-06-05 08:38:16
718. Hello friends ,
I have downloaded all 5 fil
View Tutorial By: pinnacle at 2013-06-08 13:08:55
719. I need some help. I am a programmer - but quite n
View Tutorial By: Ron at 2013-06-21 00:58:27
720. I am getting following error, I am using samsung m
View Tutorial By: Ashok at 2013-08-17 05:29:02
721. plz answr for questions about time out problem whl
View Tutorial By: rrai at 2013-08-26 06:06:57
722. this code works very well for me , but it runs onl
View Tutorial By: m. usman at 2013-08-31 14:17:22
723. plz any one send me the code for sending and recei
View Tutorial By: ankush at 2013-09-20 07:46:49
724. plz any one send me the code for sending and recei
View Tutorial By: ankush at 2013-09-20 07:47:27
725. can anybode tell me how can i make my own bluetoot
View Tutorial By: Prasenjit at 2013-10-11 06:57:13
726. Hi... I used this code.But I am troubling that the
View Tutorial By: Sandip Gurule at 2013-10-14 13:34:49
727. Hi sir just send me the code sir .... i am interes
View Tutorial By: maruthi at 2013-10-30 05:14:15
728. Hi,
When i tried to run the program i am ge
View Tutorial By: Manidhar at 2013-11-03 10:53:16
729. Hi,
When i tried to run the program i am ge
View Tutorial By: Manidhar at 2013-11-03 10:54:04
730. Got follwoing error.
javax.
View Tutorial By: Amit Sinha at 2013-11-26 08:35:00
731. hello
my problem is how to intrega
View Tutorial By: mihir patel at 2013-11-28 18:10:04
732. javax.comm.NoSuchPortException
at javax.co
View Tutorial By: vijay at 2013-12-03 07:32:38
733. How to find port names in pc? like COM1 etc ? i wn
View Tutorial By: layiba at 2013-12-25 08:28:30
734. Iam using lan connection to connect to internet. C
View Tutorial By: pothan at 2013-12-31 07:17:45
735. Hi, Can anyone please tell me where we need to cha
View Tutorial By: Gunjan at 2014-01-02 12:08:41
736. Hi,
I am using this code and gettin
View Tutorial By: Akanksha at 2014-01-20 10:31:31
737. hey plzz help me the code is not working for me...
View Tutorial By: kuldeep at 2014-02-24 18:16:59
738. Please help .... I can't access this code. so any
View Tutorial By: Sonu Kumar at 2014-02-26 11:31:08
739. How can i use this code to send multiple sms using
View Tutorial By: Shoaib at 2014-03-07 19:49:11
740. The code gives the following exception :-
<
View Tutorial By: anju at 2014-03-15 07:02:18
741. we are getting an error saying that " the sta
View Tutorial By: chaitra at 2014-03-20 10:53:02
742. Can you send me the full code for sending sms usin
View Tutorial By: Tamizh chelvam at 2014-03-24 17:30:52
743. Fowiz is a free solution to send/receive SMS from
View Tutorial By: Team Fowiz at 2014-03-25 05:30:50
744. Can you send Full code to implement it in jsf.....
View Tutorial By: Nirav Sutariya at 2014-03-30 04:23:41
745. Sir, can i execute the program from windows enviro
View Tutorial By: krishna at 2014-04-08 07:05:30
746. i have created the main class to run the five clas
View Tutorial By: Muraya at 2014-04-08 14:48:36
747. Hello Admin, I am very impressed with your blogs.
View Tutorial By: imran patel at 2014-05-01 12:09:19
748. Hiii....i am using windows 8..jdk1.7.51 and netbea
View Tutorial By: Pravin Kamble at 2014-05-03 07:00:12
749. I need full code for sending SMS. Please send to m
View Tutorial By: Ramesh at 2014-05-21 06:54:52
750. to get out of time out at step 2 error i used to
View Tutorial By: Niluk at 2014-06-04 05:58:03
751. Hey!
I found a tutorial video for sending s
View Tutorial By: Gabor Szuros at 2014-06-18 09:48:31
752. I am geting following exception
javax.comm
View Tutorial By: Raviteja at 2014-06-23 12:46:06
753. Could any one please send the working source code
View Tutorial By: Raviteja at 2014-06-24 05:27:43
754. please visit this link http://eocean.pk/
View Tutorial By: Azeem khan at 2014-06-24 10:22:44
755. please visit this link http://eocean.pk/
View Tutorial By: Azeem khan at 2014-06-24 10:24:55
756. thanks for your tutorial, but how to us it?
View Tutorial By: Desman Gea at 2014-07-18 16:54:41
757. After a week of struggle, succeeded in sending mes
View Tutorial By: Balaji G L at 2014-07-20 16:05:25
758. I am receiving an error as
Error java.lan
View Tutorial By: pablo at 2014-08-03 16:10:55
759. i got error like this java.lang.RuntimeException:
View Tutorial By: Saliya at 2014-08-22 10:12:16
760. Assalamu alaikum saaliya sir,
Could
View Tutorial By: Jaffer sulaiman at 2014-08-23 06:01:20
761. getting the below
Thu Aug 28 23:24:
View Tutorial By: sudswain at 2014-08-28 17:59:55
762. hi,
when i run the code i got the exception
View Tutorial By: arjun at 2014-09-18 10:25:18
763. Hi,
Downloaded all the five files but there
View Tutorial By: Ratan at 2014-09-25 11:38:49
764. Please resolve this problems :
ja
View Tutorial By: madhusudhakar at 2014-10-24 06:11:10
765. hello that code is not working in my pc plz give m
View Tutorial By: kaushik at 2014-10-31 12:23:44
766. When i ran the code using 02 GSM X230D dongle i go
View Tutorial By: azban at 2014-11-01 11:57:21
767. Plz send code of sending sms from java code...
View Tutorial By: Shekh at 2014-11-27 14:18:25
768. these is the error when i run these program
View Tutorial By: chintan rajpara at 2015-01-05 06:46:25
769. I am getting error like this:
javax.comm:
View Tutorial By: Santhosh Samban at 2015-01-06 13:47:39
770. You can check with Spring Edge SMS Gateway for you
View Tutorial By: Sangeeta at 2015-01-06 14:51:05
771. My code runs smoothly. I have taken some steps for
View Tutorial By: Amit Shrivastava at 2015-01-25 13:48:46
772. Hi guys... I try to run the program and I got this
View Tutorial By: Glatiuden at 2015-01-31 02:42:37
773. Dear Friend, Please send me complete java code to
View Tutorial By: Pawan at 2015-03-22 09:16:37
774. comm.jar file for windows not available in sun. ca
View Tutorial By: borus at 2015-03-25 07:19:57
775. pls tell me how to run the prog step by step. just
View Tutorial By: divakar varshney at 2015-04-02 11:12:34
776. pls tell me how to run the prog step by step. just
View Tutorial By: divakar varshney at 2015-04-02 11:14:34
777. hi this is from Ashok....
can you send the
View Tutorial By: Ashok at 2015-04-16 11:51:51
778. @Amit Shrivastava : Dear Amit I have tried the sam
View Tutorial By: Sanjay at 2015-05-14 19:15:51
779. i installed the code in ecllipse,but i have one do
View Tutorial By: vamsi at 2015-05-19 10:56:25
780. HI All,
I am using this code but fo
View Tutorial By: muna at 2015-07-04 12:28:15
781. I have loaded allthe 5 java files.But how to imple
View Tutorial By: Pandiyan at 2015-08-24 08:02:32
782. i am new to SMS, i think i need a device too. Whic
View Tutorial By: Usman at 2015-10-05 12:06:34
783. hi can u send me the complete working code for sen
View Tutorial By: tamil at 2015-11-26 14:56:34
784. Check this out :-
http://myutilite
View Tutorial By: Venugopal at 2015-12-16 14:47:39
785. All codes above work pefectly.
- Time out 2
View Tutorial By: Daniel DJE at 2016-01-19 11:01:16
786. Good day,
I tried the code, and was initial
View Tutorial By: Jason at 2016-02-01 12:25:17
787. can sombody send me de full code pleass, a am new
View Tutorial By: José Queirós at 2016-04-13 13:06:33
788. can sombody send me de full code pleass, a am new
View Tutorial By: José Queirós at 2016-04-13 13:08:07
789. i want to send a group of sms through my website ,
View Tutorial By: ajay at 2016-05-03 04:36:50
790. Hello all,
I want to send sms from my pc to
View Tutorial By: Ram at 2016-06-08 07:05:28
791. Hello All,
I want to send sms to mobile num
View Tutorial By: Ram at 2016-06-08 07:17:43
792. I need a code to implement automatic message sendi
View Tutorial By: Geetha Devi P at 2016-08-31 06:18:18
793. Urgence, if anyone can help me to understand this
View Tutorial By: [email protected] at 2016-09-27 14:08:52
794. Urgence, if anyone can help me to understand this
View Tutorial By: [email protected] at 2016-09-27 14:19:06
795. how i use whit jre 1.8 and netbeans? please help m
View Tutorial By: jecg at 2016-10-07 06:01:22
796. Hi, Did anyone solved this problem? Any help?
View Tutorial By: Shohruh at 2016-12-22 20:28:56
797. WilliamDrole
View Tutorial By: WilliamDrole at 2017-01-03 18:49:29
798. SheriTag
View Tutorial By: SheriTag at 2017-01-17 15:47:26
799. Tiaraabose
View Tutorial By: Tiaraabose at 2017-01-17 19:08:06
800. Kennethrar
View Tutorial By: Kennethrar at 2017-01-19 07:55:35
801. When I can take the Java comm api from Sun?
View Tutorial By: Pedro Gentil at 2017-01-20 23:16:10
802. Edwardten
View Tutorial By: Edwardten at 2017-01-21 13:39:06
803. PedroGeave
View Tutorial By: PedroGeave at 2017-01-26 06:55:56
804. Guestchoob
View Tutorial By: Guestchoob at 2017-01-28 07:35:38
805. Dennisdwert
View Tutorial By: Dennisdwert at 2017-01-31 16:30:25
806. evangelinanh11
View Tutorial By: keriyx16 at 2017-02-22 00:35:07
807. Hi,
Thanks for the code.
View Tutorial By: Rakesh Pawar at 2017-02-26 04:22:31
808. leonxv69
View Tutorial By: katheryniq16 at 2017-02-27 21:55:27
809. DonaldWT
View Tutorial By: DonaldWT at 2017-02-28 12:13:02
810. Guestchoob
View Tutorial By: Guestchoob at 2017-03-02 15:43:23
811. Jasonnmok
View Tutorial By: Jasonnmok at 2017-03-05 02:32:21
812. ManuelSix
View Tutorial By: ManuelSix at 2017-03-06 01:43:42
813. Alisaanony
View Tutorial By: Alisaanony at 2017-03-07 21:37:42
814. Everettdew
View Tutorial By: Everettdew at 2017-03-09 21:23:09
815. CurtisQuef
View Tutorial By: CurtisQuef at 2017-03-13 23:26:47
816. I am using jdk1.8 and windows 8 ia m getting the f
View Tutorial By: Eswaran at 2017-03-17 14:10:59
817. Danielinall
View Tutorial By: Danielinall at 2017-03-19 21:35:14
818. Brainusava
View Tutorial By: Brainusava at 2017-03-22 13:04:25
819. Good answer back in return of this difficulty with
View Tutorial By: https://www.viagrasansordonnancefr.com/sildenafil-citrate-achat/ at 2017-03-24 07:46:59
820. RuthJem
View Tutorial By: RuthJem at 2017-03-26 13:20:15
821. Kevinsmoop
View Tutorial By: Kevinsmoop at 2017-04-02 19:33:54
822. GermanGrasy
View Tutorial By: GermanGrasy at 2017-04-06 16:38:52
823. Davidlen
View Tutorial By: Davidlen at 2017-04-13 01:15:51
824. FrankGrili
View Tutorial By: FrankGrili at 2017-04-14 15:08:40
825. AlexCag
View Tutorial By: AlexCag at 2017-04-21 07:12:17
826. CialisCag
View Tutorial By: CialisCag at 2017-04-24 21:55:39
827. Harrywrisy
View Tutorial By: Harrywrisy at 2017-05-01 02:27:27
828. Harrywrisy
View Tutorial By: Harrywrisy at 2017-05-04 07:12:05
829. seanvc60
View Tutorial By: denafg69 at 2017-05-05 09:54:12
830. tanisharx4
View Tutorial By: jeffreyjk4 at 2017-05-07 05:05:04
831. Richardmal
View Tutorial By: Richardmal at 2017-05-10 00:46:23
832. Aleksmax
View Tutorial By: Aleksmax at 2017-05-10 04:43:56
833. XRumerTest
View Tutorial By: XRumerTest at 2017-05-15 00:48:21
834. meaganwf4
View Tutorial By: rosariotx16 at 2017-05-22 13:59:00
835. For the reason that the admin of this website is w
View Tutorial By: foot pain causes at 2017-06-01 12:47:08
836. Teernesmoof
View Tutorial By: Teernesmoof at 2017-06-02 00:15:22
837. Clintoncow
View Tutorial By: Clintoncow at 2017-06-09 03:39:20
838. DonaldHen
View Tutorial By: DonaldHen at 2017-06-12 10:42:34
839.
View Tutorial By: at 2017-06-13 02:01:33
840. CurtisQuef
View Tutorial By: CurtisQuef at 2017-06-13 10:32:36
841. MichaelArtek
View Tutorial By: MichaelArtek at 2017-06-21 16:06:58
842. elocation is very complicated and time consuming w
View Tutorial By: Kanhaiya Sharma at 2017-06-22 15:50:38
843. Lorenton
View Tutorial By: Lorenton at 2017-06-24 21:22:19
844. Donaldnob
View Tutorial By: Donaldnob at 2017-06-24 21:36:16
845. Jessicabum
View Tutorial By: Jessicabum at 2017-06-25 04:34:41
846. MichaelExesk
View Tutorial By: MichaelExesk at 2017-06-25 04:43:50
847. Jessicabum
View Tutorial By: Jessicabum at 2017-06-27 16:16:18
848. BellaNon
View Tutorial By: BellaNon at 2017-06-27 17:41:47
849. AaronVem
View Tutorial By: AaronVem at 2017-07-16 11:07:22
850. AaronVem
View Tutorial By: AaronVem at 2017-07-21 07:48:53
851. TatyaanaRor
View Tutorial By: TatyaanaRor at 2017-07-22 22:59:49
852. Larryhaw
View Tutorial By: Larryhaw at 2017-07-28 13:25:16
853. MerlinMub
View Tutorial By: MerlinMub at 2017-08-04 17:27:31
854. RichardBrawl
View Tutorial By: RichardBrawl at 2017-08-17 11:20:54
855. WalterTormA
View Tutorial By: WalterTormA at 2017-08-24 22:01:30