You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Rob Davies (JIRA)" <ji...@apache.org> on 2008/10/22 14:46:53 UTC

[jira] Resolved: (AMQ-1965) StreamMessage.writeObject() ignores Long data type

     [ https://issues.apache.org/activemq/browse/AMQ-1965?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Davies resolved AMQ-1965.
-----------------------------

    Fix Version/s: 5.3.0
       Resolution: Fixed

Fixed by SVN revision 707059

> StreamMessage.writeObject() ignores Long data type
> --------------------------------------------------
>
>                 Key: AMQ-1965
>                 URL: https://issues.apache.org/activemq/browse/AMQ-1965
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 4.1.1
>            Reporter: Andrew Perepelytsya
>            Assignee: Rob Davies
>             Fix For: 5.3.0
>
>
> streamMessage.writeObject(new Long("1")) is silently ignored, nothing is written to the message body. The ActiveMQStreamMessage is missing one 'if' clause for the Long datatype.
> {code:java}
> ConnectionFactory cf = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false&broker.useJmx=false");
>         Session session = cf.createConnection().createSession(false, Session.AUTO_ACKNOWLEDGE);
>         StreamMessage sm = session.createStreamMessage();
>         sm.writeObject(new Long("1"));
>         // reset so it's readable now
>         sm.reset();
>         assertEquals(new Long("1"), sm.readObject());
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.