Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for the best open source softphone that is implemented in JAVA and comes in a jar file.
Any suggestions?
No idea if it is best or not, but there is an applet http://www-x.antd.nist.gov/proj/iptel/ (look to JAIN-SIP-APPLET-PHONE).
Also, our company has used that sip stack implementation for own soft-phone
Would this work for you: http://sip-communicator.org/
Do you mean such thing as: The free Java library for Asterisk PBX integration ?
I agree that SIP communicator is the best java softphone. It's the best because it's the only java sip softphone at the market. Don't search further.
There's also http://peers.sourceforge.net/
Revosip java sip client uses single jar file http://revosip.com.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am wondering is there an app that support java programming in iPhone? As we use eclipse to practise java in windows system, what app can I find to get me run java in iPhone? Thank you for your suggestions!
I've never found an app that natively runs Java code, as that would be quite an undertaking for little reward. However, as long as you're connected to the internet, an app named CodeToGo may be of use to you. The programs written on it are sent to a server, run, and sent back with results.
I have not testet it yet, but you can try this:
http://www.zenjava.com/2013/08/01/javafx-on-ios-using-robovm-and-maven/
They say you can write Java-FX Applications for iOS
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I find myself working in an environment where all I have access to is Tomcat + MySQL. No Apache, no PHP. I'm looking for a web interface to MySQL that will run under Tomcat (can't be a desktop interface, as the mysql port is not accessible).
I'm tried jMyAdmin and javaMyAdmin. I can't get either to work, and both lack documentation and community support. Can anyone make a recommendation please?
You might want to try JSPMyAdmin.
Why not a normal client, like squirrel? Any of the desktop clients (like squirrel) should really do 99.99% of what you would want to do with phpmyadmin... why do you need something java-ish to run on the server?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Are there any decent BitTorrent libraries for Java? I need to program a simple torrent client, but it would be great if I didn't have to write everything from scratch.
Turn's TTorrent is a pure Java bit torrent library.
Snark by Three Rings is a very lightweight bitorrent library that will give you basic torrent features.
Was originally written by Mark Wielaard. A github source can be found here https://github.com/akerigan/born-again-snark
I have created a Bitlet Fork on Github.
It's LGPLed, and it's running faster than ttorent.
Azureus (now named Vuze) gives you a plugin API. Using this API you can plug your code into Azureus. Start it inside your program, and listen/respond to its events.
Azureus is written in Java - is most likely not "simple" but quite likely "decent" :)
Adding to answer from jjnguy : The code seems to be at http://code.google.com/p/snark/ and not in the repo pointed to in the link you've provided.
I've not used it, but a Google search showed up YAIRCC. Describes itself as "A lightweight Java Bittorrent library and client".
Transdroid and Transdroid-desktop are libraries for adroid, that can also be used in java to control existing torrent clients.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone recommend a based open source mailing list software ?
The following would all be desired if possible:
Java as the underlying language, as we have people who are experienced with Java
Something which is packaged as a war and can be dropped into a Tomcat server
A sleek interface
Underlying data should be reasonably transparent
Good support for groups - sometimes we want to send mail to everyone, sometimes only people working in a certain area etc.
This is for a non-profit tax-payer funded research organization, so open-source (free) is a high priority. Thanks.
http://subetha.tigris.org/
Apache James http://james.apache.org/server/2.3.2/mailing_lists.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What's the best open source Java library to add Facebook functionality to a Java web app?
For the simplest and most updated API, I'm liking RestFB so far.
http://restfb.com/
Since facebook stopped supporting a Java API, the mantle of trying to provide one has been taken up by a google coding group:
http://code.google.com/p/facebook-java-api/
The API is provided under the MIT License.
This is by far the most advanced option if your technical chops are up to it:
http://code.google.com/p/batchfb/
It will automatically batch multiple requests so you don't have to think about it. BatchFB will even execute them in parallel if you overflow the maximum batch size and you're on a platform that supports asynchronous fetching (like App Engine).