So anyone know how the following lines for dynamically creating a remote queue (used from 2.4.4) from the client have changed with the new jmx-console viewer in 3.0.1? Everything I try is 404.
 
--- snip ---
 
   String action = "action=createQueue?action=createQueue"
      + "&param0%2Bjava.lang.String=aQueue";
   String arg = "/InvokeAction//JBossMQ%3Aservice%3DServer"
      + "/" + action;
 
   try {
      URL url = new URL("http", props.getProperty("hostnode"), 8080, arg);
      HttpURLConnection urlConn = (HttpURLConnection)url.openConnection();
      urlConn.connect();
...
Any help much appreciated.

Reply via email to