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
0
votes
1 answer

SMSlib compilation issues

I'm trying to build the SMSLib master source from here. As per installation instructions, I have copied the following jar files into \lib\ext folders of jre. comm.jar commons-net-3.3.jar jsmpp-2.1.0.jar I have copied the win32com.dll to \jre\bin. I…
Keerthivasan
  • 12,760
  • 2
  • 32
  • 53
0
votes
0 answers

How to fix java.io.IOException: write error, when use smsLib Java

I am trying to send message from java to GSM Modem like wavecom, and I found this post : Adding a progress bar on SMSlib sendmessage using Swing (netbeans) When I run sendMessage class I am getting this exception: java.io.IOException: write error …
syam houng
  • 307
  • 4
  • 14
0
votes
0 answers

Message not Received when setting Source and Destination Port

Using SMSLib 3.5.4 i am able to receive and send messages to the device. But the message is not reaching the device when both source and destination port is set to the outbound message. whereas when i do not set any source and destination port it…
Samy
  • 2,387
  • 2
  • 17
  • 31
0
votes
1 answer

3GModem NoSuch Port Execption

I am using my 3G modem port in my SMSlib but my code is not detecting the port and is giving this error try { CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier("COM1"); } catch(Exception e) { e.printStackTrace(); } My…
Mujahid
  • 49
  • 4
0
votes
0 answers

Sending SMS using SMSLib using ProxyServer

New to SMSLib. I checked some samples and docs but did not get any ref/poc wherein I can send SMS with following set-up. I want to send SMS from PC which is connected to internet in office network, where I am using proxy settings to connect to…
picku
  • 157
  • 3
  • 9
0
votes
1 answer

Getting org.smslib.TimeoutException: No response from device - exception on 64-bit machine using SMSLib

I wrote a code to send/receive sms via GSM Modem using SMSLib. On my 64-bit machine I set up 32-bit JDK as per solutions given in some links. Following is code in which I am getting exception OutboundNotification outboundNotification = new…
0
votes
1 answer

SmsLib App working in Eclipse but exported runnable Jar has the following issue?

The following issue. Could you please anyone help on this issue? In Eclipse same application that is desktop based application working fine. but once after export as executable Jar File the following issue is comming. it is log file. try to send…
Anur
  • 31
  • 1
  • 3
0
votes
2 answers

SMPP Client that exposes a webservice

Does this exist? None of these: SMSLib, JSMPP, Cloudhopper, Apache Camel Expose a webservice I´ve managed to create my own webservice using SMSLib, but I´ve had problems in the past: SMSLib: After getting NO_ROUTE, what should I do? So I´d like a…
sports
  • 7,851
  • 14
  • 72
  • 129
0
votes
1 answer

How to send and receive sms using sms lib api

i m new to sms lib api i never used api's before please would you give me some help how to use it from strart to end for sending and receiving sms using Gsm modem in eclipse. please it is an emergency my final year project is based upon it. please…
Sanaullah
  • 11
  • 1
  • 1
  • 3
0
votes
1 answer

cannot compile smslib example codes

I seriously need help regarding this matter and I am really exhausted now, googled everything and finally made an account here. I am trying to send a message on mobile using smslib. I am done with the installation and placement of jar files. What I…
0
votes
1 answer

No gateways are defined SMSlib

I am trying to learn to use SMSlib to send sms using ZTE MF631 usb modem. Here is my code: Service.getInstance().startService(); SerialModemGateway gateway = new SerialModemGateway("modem.com5","COM5", 115200, "ZTE", "MF631"); …
Sujal
  • 671
  • 1
  • 16
  • 34
0
votes
1 answer

restarting services using SMSlib issues

I am currently facing a problem related to SMSlib for .NET library (you can download it at http://www.smslib.org/) btw I used SendMessage example (you can find it in ...\Examples\SendMessage) found in the library, and tried to compile and run it…
0
votes
1 answer

Do I need to import smslib into eclipse to start using it?

I have done all the installation in order to use smslib. the part that I don't get is what should I do to the smslib.zip that I downloaded? How I can use this library...
Juphit
  • 1
  • 1
0
votes
1 answer

Adding a progress bar on SMSlib sendmessage using Swing (netbeans)

Hi I am new to java and this would be my first time using the progressbar. I tried using google for example but have no idea no how to use it on SMSlib sendmessage java class. import javax.swing.SwingWorker; import org.smslib.AGateway; import…
0
votes
0 answers

SMSLib: After getting NO_ROUTE, what should I do?

I have a webservice that receives one SMS to be delivered. One SMS = one HTTP call. That is: http://.../my-ws/?to=56998180333&body=blabla This webservice uses SMSLib, with a JSMPPGateway attached to it: JSMPPGateway gateway = new…
sports
  • 7,851
  • 14
  • 72
  • 129