You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Joseph Caristi (JIRA)" <ji...@apache.org> on 2019/03/14 17:34:00 UTC

[jira] [Updated] (AXIS2-5950) JMSOutTransportInfo does not correctly identify destinationType for WebLogic JMS client

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

Joseph Caristi updated AXIS2-5950:
----------------------------------
    Summary: JMSOutTransportInfo does not correctly identify destinationType for WebLogic JMS client  (was: JMSOutTransportInfo does no correctly identify destinationType for WebLogic JMS client)

> JMSOutTransportInfo does not correctly identify destinationType for WebLogic JMS client
> ---------------------------------------------------------------------------------------
>
>                 Key: AXIS2-5950
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5950
>             Project: Axis2
>          Issue Type: Bug
>          Components: JMS transport
>    Affects Versions: 1.7.9
>            Reporter: Joseph Caristi
>            Priority: Major
>             Fix For: 1.7.10
>
>
> The constructor for JMSOutTransportInfo assumes that the passed in Destination will be either an instance of a Topic or a Queue.  In the case of WebLogic, the Destination object implements both interfaces.  So in the following code, both conditions are true, and you always end up with JMSConstants.DESTINATION_TYPE_TOPIC even when you have a queue : 
> {code:java}
> destinationType = dest instanceof Topic ? JMSConstants.DESTINATION_TYPE_TOPIC
>                                         : JMSConstants.DESTINATION_TYPE_QUEUE;
> {code}
> When this occurs, an error is generated:  javax.jms.InvalidDestinationException: [JMSClientExceptions:055144]Destination must be a topic, "queue-name"
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org