Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
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 software with online smpp server, if it receives sms from online server I will know that there is problem in provider, which gives me smpp gateway. Thanks..
I don't think there is an online server you can use. However you can test your application locally by installing SMC simulator Here is a free one.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hello I have an Arduino UNO connected to its LCD display. I programmed it to display any text you want by sending serial text to it. I have been Google Searching ways to do this but I haven't seemed to find a way for sending serial in java.
I am looking for an API or someway to possibly send serial text to my Arduino via USB. I chose java because I am more familiar with it.
Try RXTX Java library, it's a java serial communication library and works great with Arduino. Also the official Arduino website provides an example for Java-Arduino communication with help of this library, see here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm interested to create android application that have all the functionality of PC mouse,keyboard and it can control the connected PC via wifi but I have little knowledge about this and I don't know where to start.I like to know are there are any protocol to do this,are there are any open source code project that i can download?
You should understand that this is not just Android application.
This is a pair of applications:
Computer - server
Android - client
And you get to decide how they will communicate. You can write your server application on C++, which will receive data via BlueTooth with Android and call the system API.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need a Java API that i can use to receive and send SMS messages. I already know of SMSLIB, but am wondering if there is a better one out there.
What I found are the following links. They are simple sample code and only for sms receive and send from GSM modem via com port. Easy to modify and use them in own program. They are not like SMSLib(so many features but need a few third parties library and complex to use(at least for me)).
h t t p://blog.jservlet.com/post/2008/01/27/Object-SMS-send-and-receive-SMS-from-GSM-card-SIM-with-JAVA-Communication-API
h t t p://www.java-samples.com/showtutorial.php?tutorialid=22
h t t p://sourceforge.net/projects/java-sms-api/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
i want to host mail on my machine.So i can able to send and received mails through my machines.
is there any api in java to do the same..
thanx
There are Java APIs to send mail through existing mail servers (see the JavaMail library). As for an actual mail server written in Java, you should perhaps look at the Apache James project.
A couple additional java mail servers:
http://sourceforge.net/projects/jmailsrv/
http://sourceforge.net/projects/ichabod/
Check out the DeveloperWorks Introduction to Apache James series (part one linked).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to make an application that can send an SMS to person in another country.
I have heard that using an international SMS gateway is the best way to do it, and is cheap (possibly even free).
What is the best library for achieving this?
There are a couple of options:
1) Use a java library such as smslib, which allows direct communication with a mobile phone modem to send or receive messages.
2) Register with one of the SMS gateway providers such as Clickatell or csoft and use their supplied apis. I would start by looking at the HTTP api here and here.
A number of similar previous questions have covered this topic:
Programmatic SMS
How do I implement an SMS service?
Sending SMS