Parsing a MimeMultipart
remi__ <[email protected]> Wed, 16 May 2007 07:49:48 -0700 (PDT)
| Newsgroups | gmane.comp.java.classpath.extensions.javamail |
|---|---|
| Message-ID | <[email protected]> |
Hi, I am using the classpathx-mail implentation of Javamail through JOnAS 4.8.4. It is the version 1.1.1 I actually have a problem parsing a mail with a multipart content. Here is the multipart section of the original message (mail retrieved using the IMAP protocol). I dropped the routing information and just display the mulipart section: Content-Type: multipart/mixed; boundary="----=_Part_0_12966337.1179326080592" ------=_Part_0_12966337.1179326080592 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit ------=_Part_0_12966337.1179326080592 Content-Type: text/plain; name=testListeMultiPJ_16052007_163439_0157_Z4W897.xml Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=testListeMultiPJ_16052007_163439_0157_Z4W897.xml <?xml version="1.0" encoding="UTF-8"?> <test> content ...... </test> ------=_Part_0_12966337.1179326080592 I cast the message content to a Multipart : Multipart piecesMessage = (Multipart) message.getContent(); Here is what I get if I display the bodypart related to the xml file: Content-Type: text/plain; name=testListeMultiPJ_16052007_164150_0159_LG7FFCQU7AUKN3XFW Content-Transfer-Encoding: 2 Content-Id: 7bit Content-Description: 558 It seems that the parser does not give the right values to the respective content-headers. Is there any bug in the implementation or am I using the library in a wrong way? NB : the code works with the SUN implementation of Javamail... Thansk for your support -- View this message in context: http://www.nabble.com/Parsing-a-MimeMultipart-tf3765039.html#a10643264 Sent from the classpathx-javamail mailing list archive at Nabble.com.