Comment on Tutorial - How to Send SMS using Java Program (full code sample included) By Emiley J.
Comment Added by : chetan
Comment Added at : 2007-10-17 08:13:14
Comment on Tutorial : How to Send SMS using Java Program (full code sample included) By Emiley J.
we are java research students.
we are working on sms based project, we have one issue of sending sms on fedora 7 with fargo maestro 20 gsm modem.Our Modem is connected to Serial Port.
We are newbies in Linux & having average knowlegde of java, j2me...
We have installed sun java in the linux box..then comm.jar api.
the deployment of the .so & java.comm jar is done as per requirement
our application is based on the following code:
http://www.java-samples.com/showtutorial.php?tutorialid=22
we have complied java files...then we have written the shell file for running the java class file.
--------------------------------------------------------------------------------
//DemoSms.java
public class DemoSms
{
public static void main(String args[])
{
SMSClient sc = new SMSClient(1);
sc.sendMessage("MyCellNo","Hello");
}
}
//ends here
#shell file
JAVA_HOME=/opt/jdk1.5.0_12
CLASSPATH=/opt/sms:$JAVA_HOME/jre/lib/comm.jar
$JAVA_HOME/bin/java -cp $CLASSPATH DemoSms
#shell file ends here
--------------------------------------------------------------------------------
/*
Console message errors we get are as follows
*/
[[email protected] ~]# sh SmsSend.sh
/dev/ttyS0
PortId = [email protected]
java.io.IOException: Not all params are supported by kernel
at com.sun.comm.LinuxSerial.nativeSetSerialPortParams(Native Method)
at com.sun.comm.LinuxSerial.setSerialPortParams(LinuxSerial.java:346)
at SerialConnection.setConnectionParameters(SerialConnection.java:167)
at SerialConnection.openConnection(SerialConnection.java:100)
at Sender.send(Sender.java:44)
at SMSClient.run(SMSClient.java:39)
at java.lang.Thread.run(Thread.java:595)
[1]+ Stopped sh SmsSend.sh
[[email protected] ~]# sh SmsSend.sh
/dev/ttyS0
PortId = [email protected]
java.lang.RuntimeException:
Error opening "/dev/ttyS0"
lockf(): Resource temporarily unavailable
at com.sun.comm.LinuxDriver.getCommPort(LinuxDriver.java:66)
at javax.comm.CommPortIdentifier.open(CommPortIdentifier.java:369)
at SerialConnection.openConnection(SerialConnection.java:89)
at Sender.send(Sender.java:44)
at SMSClient.run(SMSClient.java:39)
at java.lang.Thread.run(Thread.java:595)
--------------------------------------------------------------------------------
As we are newbies we are not able to trace where the actual problem is...
We have used this modem in windows env and it runs perfectly..
We have tried confirguring minicom also to try to send sms but we have failed in doing so..
We have already put around 20 hours trying to find the error but with no use..
Please help!!!..
View 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
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. to know
View Tutorial By: Parthasarathi.N at 2010-02-19 05:59:51
2. There something at Example #2! because when i try
View Tutorial By: Paul at 2011-08-01 14:38:14
3. Your code is syntactically correct, but semantical
View Tutorial By: mobinga at 2011-07-25 15:08:27
4. how to connect the database in servelet use to sta
View Tutorial By: sudhir singh tomar at 2011-04-28 03:10:34
5. HI can you send "send sms" program throg
View Tutorial By: Nishanth Chandran Poduval at 2010-04-15 00:31:33
6. hi! we tried using the 5 java files...we build the
View Tutorial By: anne226 at 2009-02-10 23:58:46
7. sooo nice...:****...love u...
View Tutorial By: vinoo gopal rao at 2011-07-03 08:54:29
8. Thanks a lot!!!
Its very useful exp
View Tutorial By: dipali at 2012-12-31 06:49:41
9. Hi puru, The syntax is substring(int startIndex, i
View Tutorial By: Fazal at 2008-09-12 20:17:53
10. its work well , thanks for code , but if any body
View Tutorial By: mary at 2007-12-16 07:10:58