Re: [JAVAMAIL-INTEREST] file.encoding change between jdk 1.3.1 and1.4.1

2003-01-02 Thread Joseph Shraibman
BTW can I get a survey of what your file.encodings and systems are? A quick way to find out if you have beanshell in your classpath: echo "System.out.println(System.getProperty(\"file.encoding\"));" | java bsh.Interpreter The system where I had this problem is a redhat 6.x system. On a rh 8.0 t

file.encoding change between jdk 1.3.1 and 1.4.1

2003-01-02 Thread Joseph Shraibman
I have code to create a Multipart like this: MimeMultipart mm = new MimeMultipart("alternative"); BodyPart bp = new MimeBodyPart() ; bp.setText(text); mm.addBodyPart(bp); bp = new MimeBodyPart() ; //reset variable for html part bp.setContent(html

Re: cluster computing

2003-01-02 Thread Dain Sundstrom
Myriam, I strongly suggest you do not use RMI for clustering. Actually, basic RMI over JRMP (Java Remote Method Protocol?) is incredibility inefficient. Most EJB servers support it for compatibility reasons, but use a custom protocol by default. The biggest problem with using RMI and any RP