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/21 16:12:52 UTC

[jira] Assigned: (AMQ-1964) StreamMessage.writeObject() doesn't behave according to the JMS 1.1 specification

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

Rob Davies reassigned AMQ-1964:
-------------------------------

    Assignee: Rob Davies

> StreamMessage.writeObject() doesn't behave according to the JMS 1.1 specification
> ---------------------------------------------------------------------------------
>
>                 Key: AMQ-1964
>                 URL: https://issues.apache.org/activemq/browse/AMQ-1964
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 4.1.1
>            Reporter: Andrew Perepelytsya
>            Assignee: Rob Davies
>
> The subj method has restrictions on the types of objects it can accept, but those restrictions aren't implemented. Testcase below.
> {code:java}
> // get a live session
>         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();
>         // only primitives (with wrappers), String and byte[] are allowed:
>         // http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/jms/StreamMessage.html#writeObject(java.lang.Object)
>         try
>         {
>             sm.writeObject(new Object());
>             fail("Should've failed with MessageFormatException");
>         }
>         catch (MessageFormatException e)
>         {
>             // JMS 1.1 spec, Section 7.3 Standard Exceptions, page 89, 1st paragraph
>             // expected
>         }
> {code}

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