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 8 years ago.
Improve this question
Is it possible to receive email via SMTP protocol? My client insist it is workable and refuse to provide pop3/imap.
If yes, what java api/library should I use?
Thanks.
How about this one?
SubEtha SMTP is a Java library which allows your application to receive SMTP mail with a simple, easy-to-understand API.
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 developing an application where I need to implement VOIP.
It is about connecting 2 devices using WIFI to transmit conversation (voice).
My question is: Is there a free API or SDK that I can use in my application?
See here :http://developer.android.com/reference/android/net/sip/package-summary.html
Here is a demo app:http://developer.android.com/resources/samples/SipDemo/index.html
you can also use third party api (here)
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
Are there any utilities/browser plugins to sniff java applet http traffic except for tcpdump? I'd like to have well-structured representation.
Try Wireshark - it has very structured data view, and great query capabilities.
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 8 years ago.
Improve this question
I'm looking for a decent Java IRC client library that supports connecting to an IRC server through a socks proxy. Any recommendations?
You should be able to just do
System.setProperty("socksProxyHost","{proxy host IP}");
System.setProperty("socksProxyPort","{proxy port}");
just before you open the IRC connection and then
System.setProperty("socksProxyHost", null);
System.setProperty("socksProxyPort", null);
after the connection has been established to undo it. That SHOULD work for even PircBot.
Let me know if it works.
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 8 years ago.
Improve this question
Where can I get an opensource library written in Java, especially for the IMAP protocol?
Something like imaplib in Python.
JavaMail API supports it. Go through Fundamentals of the JavaMail API and the JavaMail FAQ to get started with it.
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
how to write server side scripting and validation s in java by using servlets and jsp
is there any reference site regarding to this.plesae help me .
THAN Q
All you need:
http://javaboutique.internet.com/tutorials/JSP/
In particular read the Getting Started link and the My first Servlet. The tutorials here are pretty much easy to learn and effective.