I am trying to invoke the threadPrint operation on the MBean java.lang:type=Runtime. I think the UI is telling me that it takes a String array as input, but I can't figure out how to specify an array.
I have tried many combinations:
A few give an immediate syntax error, like quotes aren't allowed. Most give something like this:
failed with error = Unsupported type = [Ljava.lang.String;, value = l
I think it's trying to tell me that my input is not a String array.
How do I specify an array?
thanks