On 6/22/06, Han, Zhi (Zhi) <[EMAIL PROTECTED]> wrote:

Vector args = new Vector();
args.add(new Vector());
client.execute("handler.abc", args);

That means, you are sending an empty list, or array as arguments. In
other words, the method being called is like

   public void foo(Vector pArgs)

or

   public void foo(Object[] pArgs)

Is that the case?



--
Whenever you find yourself on the side of the
majority, it is time to pause and reflect.
(Mark Twain)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to