The Artima Developer Community
Sponsored Link

Java Answers Forum
UnsupportedDataTypeException in mail sendprogram

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
kiran baratam

Posts: 1
Nickname: kiranbarat
Registered: Dec, 2003

UnsupportedDataTypeException in mail sendprogram Posted: Dec 9, 2003 12:53 AM
Reply to this message Reply
Advertisement
Hi All

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.io.FilePermission "d:/xslt/newtradedata.xml", "read,write,delete";
permission java.io.FilePermission "d:/xslt/canceltradedata.xml", "read,write,delete";
permission java.io.FilePermission "d:/xslt/modtradedata.xml", "read,write,delete";

permission java.util.PropertyPermission "*", "read,write";


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.

Thanks and Regards
Kiran

Topic: good book on algorithms Previous Topic   Next Topic Topic: JAVAC CAN'T READ FILE

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use