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 3 years ago.
Improve this question
Is there any Java API to make a phone call to a mobile(provided that service provider support will be arranged to make that call)?
myProgram(A) --> Java API to make a call like Skype(B) --> PSTN/Mobile network support(c)
Module A will be my Java code and it'll call the B's API which will in turn transfer the call to my service provider.
I'm looking for an API at level B. Also, I'm not using Android. I want to run this code on my server.
I tried and landed upto skype.
For using Skype, Skype should be installed on the machine(which I don't want).
Is there any other solution to do this?
Did you already take a look on Asterisk? There is a Java API.
There is Java Telephone API (JTAPI). You can take a look at that. It have different implementations, like xtapi, gjtapi. I have worked with xtapi.
It allows you to make/receive a call.
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 7 years ago.
Improve this question
I'm trying to build an Android application which runs a service.
The service needs to pass certain device information to a custom server and receive some from the server.
Currently I've chosen a simple socket programming and JSON objects to implement this.
Can anyone suggest a suitable library for implementing this communication?
I'm a newbie and foresee a number of complications in implementing this.
The Android Volley Library will make your life easy if you are looking for a library and don't want to get into low level connection handling and they got some sample too on their Page.
Use Smak library its simple and free. Its based on SMTP. You should go through it, consider it for future enhancement
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
Does anyone knows of a library or a class that emulates the vt100 terminal (doesn't matter if graphical or not). What I want basically is a class that implements the logic of a vt100 terminal (like when receiving a "delete" code will call a delete function, or if GUI based that will delete one char).
Telnetd seems to be a complete and pretty well documented solution:
http://telnetd.sourceforge.net/
You can also try:
http://www.jcraft.com/jcterm/
It behaves like a VT100 and uses a SSH2 connection. But the website indicates the VT100 emulation is incomplete.
Have a look at the JediTerm project: https://github.com/JetBrains/jediterm
It has both graphical implementation as well as API to override.
Graphical version works for remote SSH connections(using JSch) and local pty(using Pty4J).
It is a mature project used for the embedded terminal in JetBrains products.
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
we are developing an simulator application where user can create simulation and run the logic. now in second phase of our project we required hardware triggering using web based application . i required some information on how i am going to interact with PLC machine using my java code we are using modbus serial communication but can be changed if you have some other better solution. as par my research we have seen OPC server but i didn't get anything from that. i want some one can help me to understand what will be flow. how to proceed with this. do i have to write driver for communicating with my application and PLC.
What need to be done complete approach this task. if you have any link please share
thank you
I don't know if this is helpful for you, but we have a java library (LGPL 3.0) which talks natively via TCP/IP with S7 devices.
have a look at http://openscada.org
we also have a OPC interface which is written in plain JAVA, no Windows required.
I use this.
http://www.modbusdriver.com/shop/index.php?cPath=0_42
It is cheap, and the examples and support are good. Their support is out of Australia, though, so you will either be answered at 6:00 at night or while you're asleep.
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 am writting an application that will send MMS messages from an android phone and I am trying to follow the instructions on this post:
How to send image via MMS in Android?
My problem now is I can't find the libraries used there, like com.google.android.mms.*
Can anyone point me to that?
Is there any MMS library I can plug in my project? It is kinda weird that google does not provide that for the developers...
Thanks,
Joao Paulo Farias
you can get it this way
Class pduparserclass = Class.forName("com.google.android.mms.<the class>");
since the class is present on the device but not in the sdk. this will not work on the emulator
One way is to download the jar, and have it added to your build path.
You can download at http://www.java2s.com/Code/Jar/a/Downloadandroidsrcjar.htm
com.google.android.mms is an internal package in Android's source code. It is not intended to be used by other apps.
The link you posted already contains code on how to send an MMS using the proper API in aioobe's answer (who in turn linked to another answer that had it).
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 have downloaded facebook-java-api-3.0.2-bin from
http://code.google.com/p/facebook-java-api/
for connecting to face book.I want to use this api in my java application to connect Facebook.I am developing a desktop application for this purpose.I have created account on Face book and registered as a developer.
Is it possible to connect Facebook from my java application?
If yes please, can some one send me the example code for that and treat me as a New Bee in this facebook integration?
Thanks in advance.
Have you tried out the various examples available in the api wiki?
http://code.google.com/p/facebook-java-api/wiki/Examples
Google also returns various tutorial pages:
http://programmaremobile.blogspot.com/2009/01/facebook-java-apieng.html
http://www.socialjava.com/socialjavastepbystep.html
You should try working through some of these and posting specific questions about problems you run into.
Note that the facebook-java-api project is now dead.
Use instead:
http://restfb.com/