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

How to get the output of AT command into a string in java?

I am trying to read the result of an AT command (command executed to do various operation to a GSM modem from console). I have seen and successfully tested using the Java OuputStream class to get the result of an AT command as output stream but what…
NavinRaj Pandey
  • 1,674
  • 2
  • 26
  • 40
2
votes
1 answer

Is there any api is available to send sms through internet in android

I am making an app in which i am have to send sms to another number using internet but i donot want to use phone native api i.e.smsManager means i donot want to pay for sms to mobile operator That means. i want to use Internet to send messages.like…
user2918549
  • 33
  • 1
  • 1
  • 3
2
votes
4 answers

Unable to send SMS using java

I was just trying to send SMS using java as I require it in my Web App.But for testing purpose I am the code that is described in this site And the code is as follows package logic; import com.harshadura.gsm.smsdura.GsmModem; /** * @author :…
SpringLearner
  • 13,738
  • 20
  • 78
  • 116
2
votes
1 answer

Free online SMPP server

I want to send and receive sms using jsmpp (or maybe smslib). I can send sms and get delivery report for my sms. But I cannot receive sms from SMSC. I downloaded Java SMPP Client application for receiving sms, but it didn't help. I want to test this…
0bj3ct
  • 1,400
  • 4
  • 22
  • 51
2
votes
1 answer

How to get the sender phone number in SMSLib?

I'm using SMSLib to read messages from a specified gateway, the piece of code used for reading the messages is : List msgList = new ArrayList(); Service.getInstance().readMessages(msgList,…
Muhammed Refaat
  • 8,914
  • 14
  • 83
  • 118
2
votes
1 answer

NoSuchPortException when running java application using SMSLib

I'm using SMSLib in my java application to send an SMS, i connect a USB internet modem to my PC then determine it's port number (ie. COMx) then creating a serial modem gateway like this : determining the port number : creating the…
Muhammed Refaat
  • 8,914
  • 14
  • 83
  • 118
2
votes
1 answer

SMSLib example for interactive USSD session

I have a USSD application that provides an interactive session for users, for example: User> Dial USSD Shortcode Serv> Return Main Menu User> Select Option 1, e.g. "View Movie Times" Serv> Return List of Cities User> Select Option 3, e.g.…
Chris Snow
  • 23,813
  • 35
  • 144
  • 309
2
votes
2 answers

multilingual SMS solution

I am looking for multilingual SMS solution , Which allows me to send via API , I tried some commercial solutions , but still no luck , the problem is in sending multilingual text , I have to send SMS in Korean , Japanese , Hebrew , Thai , Chinese…
Aravind.HU
  • 9,194
  • 5
  • 38
  • 50
2
votes
2 answers

Java SMS USb modem

I'm trying to send SMS using a USB modem (I have a D-Link Usb Modem). I just found SmsLib but what I don't know is how to use a USB modem. The examples I have found are for Serial Modems and I did not found any example for a USB modem. Do I need to…
itsme
  • 35
  • 1
  • 8
1
vote
1 answer

How to store SMS with smslib?

I need to store SMS (when they arrive to the GSM modem) in MySQL. I have read the docs, but it says to use the smsserver and the conffile. Then I read that I should use database.java. Can someone guide me on this? I am already using the…
bentham
  • 1,701
  • 3
  • 20
  • 32
1
vote
1 answer

how to use smsserver.java from smslib? I have read the docs

I am triying to save my sms to a mysql database, I added the conector mysql jar to netbeans, and I added the smsserver.java and conf files, also I created a mysql database called sms but when I run the smsserver.java just print this: SMSLib: A Java…
Rick Salad
  • 83
  • 1
  • 12
1
vote
4 answers

rxtx error using smslib and mobile phone as a modem

I am trying to use smslib to send an sms. It works fine on windows but now I need to get it working under ubuntu 11.10. So I installed rxtx for a 64 bit os from here http://www.cloudhopper.com/opensource/rxtx/. Connected the mobile phones using usb…
Radek
  • 1,403
  • 3
  • 25
  • 54
1
vote
0 answers

make certain text from sms able to pop up copy option on android

I send sms using java with smslib library, that contain code that i want to copy when sms received from my android device. here is my code String stringMessage = "code : xxxxxxyyyyyzzzzzz \n" + "any question :…
ikiSiTamvaaan
  • 127
  • 1
  • 14
1
vote
1 answer

Sending arabic SMS by SMSlib in java

i am using smslib in java for sending SMS with english letter it is working but i have problems when i am sending arabic letters . it display arabic character as a spaces ,i have tried a lot of sollutions but it does not work.
1
vote
0 answers

Delivery Message SMSLib

I am using SMSLib v4 for communicating with a GSM gateway in IP mode. I send and receive messages successfully but the problem is with delivery message. After testing with Diaffan SMS Server I figured out when sending with receiver number in…