Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
11.3. Implement a Mime Decoder
Procedure 11.1. Task
- Create a class that activates the
org.jboss.soa.esb.listeners.message.mime.MimeDecoder
interface. - Add the @MimeType annotation to the class, specifying the mime type as the annotation value.
- Define the newly created class in the
META-INF/org/jboss/soa/esb/listeners/message/mime/decoders.lst
file:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
This file needs to be present on the classpath at runtime. If your module doesn't have this file, add it to your module source/resources and it will be located at runtime. - Optionally, if the MimeDecoder implementation needs access to the listener configuration (for additional configuration information), have the class implement the
org.jboss.soa.esb.Configurable
interface.