Questions tagged [smslib]

SMSLib is a programmer's library for sending and receiving SMS messages via a GSM modem or mobile phone. SMSLib also supports a few bulk SMS operators.

SMSLib is a .net 3.5 (and above) library for sending and receiving messages via a modem or mobile phone. SMSLib also supports a few bulk SMS operators.

97 questions
1
vote
1 answer

org.smslib.TimeoutException: No response from device

I want send the sms using GSM modem, so i have used SMSlib API to send it. but i ma getting the errors like below. please help me. I am working in ubuntu 32 bit linux. import org.smslib.AGateway; import…
user2264486
  • 41
  • 1
  • 3
1
vote
0 answers

Java smslib and Android jelly bean 4.1.2

I have created an SMS project that sends SMSs via a GSM modem. I used my phone (Samsung Galaxy S2) as the modem. I was able to send SMSs from my phone when it was running Android version 4.0.4, and my application also worked with a Nokia phone. …
danarj
  • 1,798
  • 7
  • 26
  • 54
1
vote
0 answers

SMSlib analogue for Android phones

Is there some solution that sends sms from PC via USB-cable-connected android phone? The ideal would be some android *.apk file + some desktop java API, similar to SMSlib (ideally, supporting the same methods but using own protocol instead of…
Eljah
  • 4,188
  • 4
  • 41
  • 85
1
vote
1 answer

smslib configuration issue

It's being 2 days I am trying to configure smslib on my computer and I always got the exception below while trying to execute the sample code (SendMessage) contained in the zip file : log4j:WARN No appenders could be found for logger (smslib). …
Harry Coder
  • 2,429
  • 2
  • 28
  • 32
1
vote
1 answer

Hardware for USSD/SMS applications testing

We are looking for hardware having functionality of usual GSM-modem to automate the USSD/SMS applications for the set of 8 SIM-cards. The hardware should understand basic AT commands to be sent via java smslib, used in code running on CI server. The…
Eljah
  • 4,188
  • 4
  • 41
  • 85
1
vote
1 answer

No response from Device SMSLib

I am using SMSlib to send a sms to a mobile number. But the below error comes up. I have even changed the Dongles but didn't work out. org.smslib.TimeoutException: No response from device. at…
Chan
  • 2,601
  • 6
  • 28
  • 45
1
vote
3 answers

SMSLib doesn't send SMS with E226 3G modem

I would like to know if someone knows why I can't send sms with my E226 3g modem. I have configured the example class, I setted modem model, PIN and Smsc number. public class SendMessage { public void doIt() throws Exception { …
dextervip
  • 4,999
  • 16
  • 65
  • 93
0
votes
3 answers

javax.comm.PortInUseException in SMSLib

i am trying to use SMSLib to send sms to mobiles from my pc. I am using my Nokia 5130 GSM phone to send messages, but its not working. Heres the code i am using. package sms; import org.smslib.AGateway; import…
Bhaskar Sharma
  • 79
  • 2
  • 5
  • 14
0
votes
0 answers

I would like to insert data into sql table from append logs while using smslib

I made a java application for sending SMS via Huwei Modem. Everything is working properly. I used netbeans for making this java application. According to this application, logs data will appear in Jtext Area after sending SMS to any receipt such as…
0
votes
0 answers

SMSLIB Send Bulk Message on Multiple PhoneNumbers?

PROBLEM: how can my project spend less time by sending multiple messages in every client in my client list? This is my SMS CLASS: public void sendSMS(String port, String phoneNumber, String message) throws Exception { try { …
kurt estacion
  • 497
  • 2
  • 8
  • 18
0
votes
1 answer

where to put log4j.properties in griffon?

using smslib in griffon. and some lib jar(SMSLIB) need log4j.properties. i had try: /log4j.properties , /conf/log4j.properties , /lib/log4j.properties but still error: log4j:ERROR Could not read configuration file [log4j.properties]. …
atian25
  • 4,166
  • 8
  • 37
  • 60
0
votes
1 answer

Wait a new message to send while the current message is on process in smslib

my code is still working and I can send a message and wait until the message has been sent. The duration of sending a message is all about 10 seconds which is not good for me because my program needs 1 seconds interval before the next message to…
MGB C
  • 442
  • 2
  • 7
  • 21
0
votes
1 answer

Sending SMS with SMSLib and Web Services

I have made a REST Web Service to send SMSs using a HSDPA USB modem. I am using SMSLib in Java to send SMSs. Every time the web service is invoked, I create the gateway start the service, send message, stop service and remove gateway. This takes…
Harlan Gray
  • 341
  • 6
  • 20
0
votes
1 answer

org.smslib.GatewayException: Comm library exception: java.lang.RuntimeException: javax.comm.NoSuchPortException

I am trying to send messages using smslib api and to be honest i have very little info about it so i download a sample project and put the libs in respective places as told . My class to send messages is : public class SendMessage{ public void…
Syed Muhammad Oan
  • 687
  • 2
  • 15
  • 39
0
votes
3 answers

SMSLib sending message, using multiple gateways

I'm using SMSLib for sending and receiving messages. Everything's working great, but now I'd like to plug more than one modem. I want to receive messages by all of my modems and do something with them (I can do that, I think). I also want to send…
Radziasss
  • 193
  • 1
  • 1
  • 11