| Thread | Last Post | Replies |
|
| Sending mail with Javamail over ssl... | 13 Jun 2006 16:46 GMT | 3 |
are there any tutorials for sending a mail with Javamail (1.4 Release)? I've tried it on my own with SMTPSSLTranport with no success... It's driving me nuts... Thanks in andvance and best regards.
|
| Java Mail exception. | 13 Jun 2006 15:59 GMT | 2 |
i am new to javamail and am having problems getting a simple example working. the following snippet of code compiles ok.... MimeMessage msg = new MimeMessage(session);
|
| file name of an uploaded file in tomcat | 13 Jun 2006 15:17 GMT | 2 |
I create a servlet in Tomcat that pass a file to the client, like this: // Open the file and output streams FileInputStream in = new FileInputStream(file); OutputStream out = response.getOutputStream();
|
| EJB 3: is it good time to start using it? | 13 Jun 2006 15:07 GMT | 3 |
I want to start using EJB. Since only JBoss supports that technology, is it a good idea to start with EJB 3 or the time has not come yet? Thanx.
|
| Yet another generics conundrum | 13 Jun 2006 15:02 GMT | 22 |
The type ComplexImpl<T> must implement the inherited abstract method Scalar<Complex<T>>.add(Scalar <? extends Complex<T>>) This is cropping up where we have public ComplexImpl<T> add(Vector<? extends Complex<T>> y) { ... }
|
| Populate an arraylist.... | 13 Jun 2006 14:58 GMT | 4 |
i'm a new java user and i have a big question for you. I'm developing a jsf application with eclipse and i have a problem. I have to import a txt file with this format string string string string
|
| Bad class files? | 13 Jun 2006 14:14 GMT | 1 |
I have java code in the following path D:\test\mypackage\sample\check.java i have include package in my java code package mypackage.sample
|
| array problem | 13 Jun 2006 14:08 GMT | 6 |
Using Java 5.0 I'm trying to prepare a DefaultStyledDocument array so that I can then insert formatted text into each element. My compiler complains about my initializing code. Wherever each element of the array is referenced '[0]' it
|
| DateFormat | 13 Jun 2006 13:17 GMT | 1 |
I have problems parsing and reformatting a date string DateFormat dfIn = new SimpleDateFormat("yyyy-MM-dd hh:mm:ssZZZ"); theDate = dfIn.parse("2006-05-17 10:57:00+02"); unfortunately this does not work
|
| HardReference? | 13 Jun 2006 10:33 GMT | 6 |
I am hacking around in Jakarta Commons Collections’s ReferenceMap. I am trying to make it generic, for the fun of it. Now the trick they use is to check whether either value or key have to be wrapped in a soft or weak reference each time, and then do it when necessary. On the ...
|
| Using Jni to access C++ api in Linux. | 13 Jun 2006 10:22 GMT | 1 |
I am using JNI to access C++ api in Linux 9.0,but i dont know how to create .so file in in Linux and also i dont know how to create .lib file. if any body Knows please replay me. Thanx in advance.
|
| Avoid calling non-final methods in a constructor: Applies to static methods too? | 13 Jun 2006 10:18 GMT | 14 |
I'm aware of and follow the dogma that one should not call non-final methods in a constructor. However, I'm wondering whether this applies to static methods as well. My understanding of the reasoning behind this rule is that subclasses may see fields in some unstable state, ...
|
| Concurrency problem | 13 Jun 2006 10:02 GMT | 5 |
The following code is an example from a book* where it shows some errors in concurrent programming. I've actually typed and tried this one, and it actually does what the author says but I do not understand why. In my (obviously wrong) opinion the program should have run
|
| XML Parser Survey | 13 Jun 2006 09:57 GMT | 1 |
XML Parser Survey Right now I am doing a survey about XML parser. It seems Xerces is the best choice? Anyone have any other ideas? Any good articles about XML parsers? Any comparisons for those different
|
| Repost: java.sql.SQLException with jdbc:odbc bridge driver and api | 13 Jun 2006 09:47 GMT | 1 |
I've seen a lot of information on this error: java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified. However, the only definitive solution I can find is going to Control
|