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
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
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