Hi there,
Odd. PodTrapper does register a handler for the 'text/xml' type, but I'm not sure how that would impact images. My guess is RIM introduced a new bug with the release.
Here are the type's it's supposed to be using:
if( "text/x-opml".equals(contentType)) {
return true;
}
if( "text/xml".equals(contentType)) {
return true;
}
if( contentType.endsWith( "opml" ) ) {
return true;
}
if( contentType.endsWith( "xml" ) ) {
return true;
}
Judging by that other forum post it looks like RIM is aware, but since I have other means for loading OPML files I'll go ahead and switch to those and remove the AttachmentHandler from PodTrapper altogether.
Thanks for bringing it to my attention.
-Marcus