* @param message the message to convert
* @return the OpenJMS implementation of the message
* @throws JMSException for any error
*/
private Message convert(Message message) throws JMSException {
MessageConverter converter =
MessageConverterFactory.create(message);
return converter.convert(message);
}