private MessageReader createCustomRelayingMessageReader() {
logger.debug("Creating custom relaying message reader"); //$NON-NLS-1$
final List<MessageMethodDecoder> customMethodDecoders = new ArrayList<MessageMethodDecoder>();
customMethodDecoders.add(new RelayingMethodDecoder());
final List<AttributeTypeDecoder> customAttributeTypeDecoders = new ArrayList<AttributeTypeDecoder>();
customAttributeTypeDecoders.add(new RelayingAttributeTypeDecoder());
return MessageReader.createMessageReaderWithCustomDecoderLists(customMethodDecoders,
customAttributeTypeDecoders);
}