Hi Joey,
        Probably the best place for this post would be in the AS7 forums as it 
does appear AS7 is not interpreting the url correctly and since it works as 
expected outside of the container it looks like it might be a defect on the AS7 
side. Probably the best place to start would be in the AS7 forum:

https://community.jboss.org/en/jbossas7?view=discussions

From what I can see in your code, it 'should' work as expected. 

Regards,

Weston
On Oct 19, 2012, at 10:01 AM, Joey Daughtery <[email protected]> wrote:

> All
> The following code when ran in a main method runs as expected.  However,
> when I put the code inside an ear and call it via a webservice endpoint, I
> get the exception below.  Appears that jboss is interpreting the url as if
> the code is attempting to connect to the jboss service.  I was thinking
> that because qpid is listening on port 8999, that jboss would hit that
> port, there by triggering the jmx lookup on qpid.
> 
> Exception:
> Failed to retrieve RMIServer stub: javax.naming.NameNotFoundException:
> rmi://localhost:8999/jmxrmi -- service
> jboss.naming.context.java.rmi:.localhost:8999.jmxrmi"}
> 
> Code:
> 
> private static void main() {
>        String[] attributes = new String[]{"Name", "Owner",
> "ActiveConsumerCount", "AutoDelete", "Capacity", "ConsumerCount",
> "Description", "Durable", "Exclusive", "FlowOverfull",
>            "FlowResumeCapacity", "MaximumDeliveryCount",
> "MaximumMessageAge", "MaximumMessageCount", "MaximumMessageSize",
> "MaximumQueueDepth", "MessageCount", "QueueDepth", "QueueType",
> "ReceivedMessageCount"};
> 
>        try {
>            Map<String, Object> environment = new HashMap<String, Object>();
> 
> // credentials: user name and password
>            environment.put(JMXConnector.CREDENTIALS, new String[]{"admin",
> "admin"});
>            JMXServiceURL url = new
> JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:8999/jmxrmi");
>            JMXConnector jmxConnector = JMXConnectorFactory.connect(url,
> environment);
>            MBeanServerConnection mbsc =
> jmxConnector.getMBeanServerConnection();
>            String[] domains = mbsc.getDomains();
>            for (int k = 0; k < domains.length; k++) {
>                String domain = domains[k];
>                ObjectName queueObjectName = new ObjectName(domain + ":*");
>                Set nameSet = mbsc.queryNames(queueObjectName, null);
>                Iterator it = nameSet.iterator();
>                while (it.hasNext()) {
>                    ObjectName n = (ObjectName) it.next();
>                    //System.out.println(n.getCanonicalName() + ": " +
> n.getKeyPropertyListString());
>                    ObjectName queueObjectName2 = new
> ObjectName(domain+":"+n.getKeyPropertyListString());
>                    Iterator it2 = mbsc.getAttributes(queueObjectName2,
> attributes).asList().iterator();
>                    System.out.println("########################NEXT
> DOMAIN: "+domain+":"+n.getKeyPropertyListString());
>                    while (it2.hasNext()) {
>                        Attribute att = (Attribute) it2.next();
>                        System.out.println("attribute: "+att.getName() + "
> value: " + att.getValue());
>                    }
> 
>                }
>            }
>        } catch (Exception e) {
>            e.printStackTrace();
>        }
>    }
> 
> Thanks
> 
> Joe


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to