I have a program to send mail.When i try to send its giving the following exception.
Something went wrong sending the message: javax.mail.SendFailedException: Sendin g failed; nested exception is: class javax.mail.MessagingException: IOException while sending message; nested exception is: javax.activation.UnsupportedDataTypeException: no object DCH for MIME ty pe text/plain; charset=us-ascii
one rmi application is running in my machine and i have a java.policy file for that. i found if i give
permission java.security.AllPermission; in my java.policy the mailsend program is working fine. insted if i specify permission like
permission java.net.SocketPermission "*", "accept,listen,connect,resolve"; this program is giving above exception.
Can you please tell me, do i need to set some permission for this in java.policy. i can not go away with java.policy as i need that for RMI applicatrion. Please suggest me some solution.