> Hi
>
> I�ve tried to use XML-RPC to launch a remote method like this:
>
> ...
>
> params.add(className);
> params.add(methodName);
> params.add(args);
> client.execute(handler.getName() + ".invoke", params);
>
> where args is a String[] with the test values {"",""}.
>
> When I debug my handler that is used by the server the params vector has
> the two Strings as its elements, not the String[] as I expected.
>
> Have I misunderstood the concept here or can anyone tell me what the
> problem is?
>
> /Johan
>