Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

37%
+1 −3
Q&A Cannot write multipart message to byte array [closed]

I'm trying to write a MIME message to the console. ByteArrayOutputStream out = new ByteArrayOutputStream(); MimeMultipart replyMsg = mdnCreator.createMDNData(); replyMsg.writeTo(out); out.close...

0 answers  ·  posted 2y ago by artaxerxe‭  ·  closed 2y ago by Alexei‭

#4: Question closed by user avatar Alexei‭ · 2022-02-03T16:30:05Z (about 2 years ago)
#3: Post edited by user avatar artaxerxe‭ · 2022-02-03T07:24:15Z (about 2 years ago)
  • I'm trying to write a MIME message to the console.
  • ByteArrayOutputStream out = new ByteArrayOutputStream();
  • MimeMultipart replyMsg = mdnCreator.createMDNData();
  • replyMsg.writeTo(out);
  • out.close();
  • System.out.println(new String(out.toByteArray()));
  • I'm using bouncycastle too in this code. If I use bouncycastle 1.65, it works well. If I use bouncycastle 1.66 or newer, I get this:
  • Exception in thread "main" javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/report; report-type=disposition-notification;
  • boundary="----=_Part_0_1748430839.1643723297884"
  • at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:909)
  • at javax.activation.DataHandler.writeTo(DataHandler.java:330)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1694)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:996)
  • at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:561)
  • Do you have any idea why this is happening?
  • I'm trying to write a MIME message to the console.
  • ByteArrayOutputStream out = new ByteArrayOutputStream();
  • MimeMultipart replyMsg = mdnCreator.createMDNData();
  • replyMsg.writeTo(out);
  • out.close();
  • System.out.println(new String(out.toByteArray()));
  • I'm using bouncycastle too in this code. If I use bouncycastle 1.65, it works well. If I use bouncycastle 1.66 or newer, I get this:
  • Exception in thread "main" javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/report; report-type=disposition-notification;
  • boundary="----=_Part_0_1748430839.1643723297884"
  • at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:909)
  • at javax.activation.DataHandler.writeTo(DataHandler.java:330)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1694)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:996)
  • at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:561)
  • Do you have any idea why this is happening?
  • N.B. I'm running my code in an OSGI environment.
#2: Post edited by user avatar artaxerxe‭ · 2022-02-01T14:07:14Z (about 2 years ago)
  • I'm trying to write a mime message to the console.
  • ByteArrayOutputStream out = new ByteArrayOutputStream();
  • MimeMultipart replyMsg = mdnCreator.createMDNData();
  • replyMsg.writeTo(out);
  • out.close();
  • System.out.println(new String(out.toByteArray()));
  • I'm using bouncycastle too in this code. If I use bouncycastle 1.65, it works well. If I use bouncycastle 1.66 or newer, I get this:
  • Exception in thread "main" javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/report; report-type=disposition-notification;
  • boundary="----=_Part_0_1748430839.1643723297884"
  • at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:909)
  • at javax.activation.DataHandler.writeTo(DataHandler.java:330)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1694)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:996)
  • at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:561)
  • Do you have any idea why this is happening?
  • I'm trying to write a MIME message to the console.
  • ByteArrayOutputStream out = new ByteArrayOutputStream();
  • MimeMultipart replyMsg = mdnCreator.createMDNData();
  • replyMsg.writeTo(out);
  • out.close();
  • System.out.println(new String(out.toByteArray()));
  • I'm using bouncycastle too in this code. If I use bouncycastle 1.65, it works well. If I use bouncycastle 1.66 or newer, I get this:
  • Exception in thread "main" javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/report; report-type=disposition-notification;
  • boundary="----=_Part_0_1748430839.1643723297884"
  • at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:909)
  • at javax.activation.DataHandler.writeTo(DataHandler.java:330)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1694)
  • at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:996)
  • at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:561)
  • Do you have any idea why this is happening?
#1: Initial revision by user avatar artaxerxe‭ · 2022-02-01T14:06:43Z (about 2 years ago)
Cannot write multipart message to byte array
I'm trying to write a mime message to the console.

    ByteArrayOutputStream out = new ByteArrayOutputStream();
    MimeMultipart replyMsg = mdnCreator.createMDNData();
    replyMsg.writeTo(out);
    out.close();
    System.out.println(new String(out.toByteArray()));

I'm using bouncycastle too in this code. If I use bouncycastle 1.65, it works well. If I use bouncycastle 1.66 or newer, I get this:

    Exception in thread "main" javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/report; report-type=disposition-notification; 
	boundary="----=_Part_0_1748430839.1643723297884"
	at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:909)
	at javax.activation.DataHandler.writeTo(DataHandler.java:330)
	at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1694)
	at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:996)
	at javax.mail.internet.MimeMultipart.writeTo(MimeMultipart.java:561)

Do you have any idea why this is happening?