Return-Path: X-Original-To: apmail-activemq-dev-archive@www.apache.org Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B3AE09140 for ; Tue, 29 May 2012 14:21:24 +0000 (UTC) Received: (qmail 13241 invoked by uid 500); 29 May 2012 14:21:23 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 13151 invoked by uid 500); 29 May 2012 14:21:23 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 13101 invoked by uid 99); 29 May 2012 14:21:23 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 May 2012 14:21:23 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 8BD4E142859 for ; Tue, 29 May 2012 14:21:23 +0000 (UTC) Date: Tue, 29 May 2012 14:21:23 +0000 (UTC) From: "Timothy Bish (JIRA)" To: dev@activemq.apache.org Message-ID: <1504578160.11171.1338301283574.JavaMail.jiratomcat@issues-vm> In-Reply-To: <576596887.9669.1337723801738.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Resolved] (AMQ-3856) MessageServlet assumes TextMessages contain Text MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AMQ-3856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Timothy Bish resolved AMQ-3856. ------------------------------- Resolution: Fixed Assignee: Timothy Bish Applied the patch and unit tests, thanks for the contribution. > MessageServlet assumes TextMessages contain Text > ------------------------------------------------ > > Key: AMQ-3856 > URL: https://issues.apache.org/jira/browse/AMQ-3856 > Project: ActiveMQ > Issue Type: Bug > Components: Broker > Affects Versions: 5.5.1, 5.6.0 > Environment: all > Reporter: Alan Hudson > Assignee: Timothy Bish > Fix For: 5.7.0 > > Attachments: amq-3856.patch, amq-3856_junit.patch > > > writeMessageResponse assumes that a text message will contain non null text. It does a txt.startsWith which crashes with TextMessages with no body. > It can be fixed with this code: > protected void writeMessageResponse(PrintWriter writer, Message message) throws JMSException, IOException { > if (message instanceof TextMessage) { > TextMessage textMsg = (TextMessage)message; > String txt = textMsg.getText(); > > if (txt != null) { > if (txt.startsWith(" txt = txt.substring(txt.indexOf("?>") + 2); > } > writer.print(txt); > } > } else if (message instanceof ObjectMessage) { > ObjectMessage objectMsg = (ObjectMessage)message; > Object object = objectMsg.getObject(); > writer.print(object.toString()); > } > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira