You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Renaud Bruyeron (JIRA)" <ji...@apache.org> on 2006/10/03 12:00:09 UTC

[jira] Commented: (AMQ-950) createConnector="false" has no effect on Tiger

    [ https://issues.apache.org/activemq/browse/AMQ-950?page=comments#action_37077 ] 
            
Renaud Bruyeron commented on AMQ-950:
-------------------------------------


Hi James,

this looks correct to me, however I can't play with the latest 4.1 snapshots because they break with servicemix-3.0 final
(something wrong with jencks and the RA). It broke in the last 3 weeks (snapshot from 20060830 works).

> createConnector="false" has no effect on Tiger
> ----------------------------------------------
>
>                 Key: AMQ-950
>                 URL: https://issues.apache.org/activemq/browse/AMQ-950
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 4.1
>         Environment: JDK 1.5.0_08
>            Reporter: Renaud Bruyeron
>            Priority: Minor
>             Fix For: 4.1
>
>
> On Tiger, activemq always creates a rmi connector on port 1099 no matter what I do with -Djavax.management... and <managementContext/>
> In particular, setting createConnector="false" should prevent AMQ from setting up its own connector, but it does not.
> The problem is in the findMBeanServer() method:
>             if (result == null && createMBeanServer) {
>                 result = createMBeanServer();
>             }
>             else {
>                 createConnector(result);
>             }
> result is not null on Tiger with useJmx="true", and createConnector is not protected by if(createConnector) like it is on the non-Tiger flow.
> The fix (I think) is simply to do this:
>             if (result == null && createMBeanServer) {
>                 result = createMBeanServer();
>             }
>             else {
>                 if(createConnector){
>                       createConnector(result);
>                 }
>             }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/activemq/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira