Bonsoir j'ai mis en place dans mon logiciel un envoi de mail.
Ca marche bien sur mon Mac mais des que je le mets sur un PC
j'ai une erreur:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
javax.activation.UnsupportedDataTypeException: no object DCH for MIME type text/plain; charset=us-ascii
	at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:841)
	at javax.activation.DataHandler.writeTo(DataHandler.java:295)
	at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1147)
	at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1607)
	at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:390)
	at javax.mail.Transport.send0(Transport.java:163)
	at javax.mail.Transport.send(Transport.java:80)
	at Envoi.envoyerMail(Envoi.java:60)
	at Envoi.main(Envoi.java:71)
javax.mail.MessagingException: IOException while sending message;
  nested exception is:
	javax.activation.UnsupportedDataTypeException: no object DCH for MIME type text/plain; charset=us-ascii
	at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:421)
	at javax.mail.Transport.send0(Transport.java:163)
	at javax.mail.Transport.send(Transport.java:80)
	at Envoi.envoyerMail(Envoi.java:60)
	at Envoi.main(Envoi.java:71)
Exception in thread "main" java.lang.ClassCastException: javax.activation.UnsupportedDataTypeException cannot be cast to javax.mail.MessagingException
	at Envoi.envoyerMail(Envoi.java:63)
	at Envoi.main(Envoi.java:71)
Je ne trouve pas de solution.
Merci de votre aide par avance.

PS: je ne savais pas ou poster ca!!