Yes. 
It's like
 public Vector foo(Vector pArgs)

-----Original Message-----
From: Jochen Wiedmann [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 22, 2006 3:03 PM
To: [email protected]
Cc: [EMAIL PROTECTED]
Subject: Re: Illegal argument


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]

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

Reply via email to