I can't make out the on-line docs because I don't think a few characters were rendered the way they should be. At least I'm hoping this is my problem.
 
What is the 'action' and 'arg' string supposed to look like in figure 8.41 of http://www.jboss.org/online-manual/HTML/ch08s07.html
 
It's actually these lines here ...
--- snip ---
String action = "action=" + method + "?action=" + method +
  "&param0%2Bjava.lang.String=" + destName;

String arg = "/InvokeAction//JBossMQ%3Aservice%3DServer" + "/" + action;
--- end ---
 
How are they supposed to read? Is this action supposed to be ...
String action = "action=" + method + "?action=" + method + "&param0=java.lang.String=" + destName;
 
I'm guessing that arg is ...
String arg = "/InvokeAction/JBossMQ/service/Server" + "/" + action;
 
But those didn't work either. Anyhelp much appreciated.

Reply via email to