You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by davout <da...@dsl.pipex.com> on 2001/12/28 17:11:42 UTC

SOAP RPC service - method with int[] array parameter?!?

Can anybody tell me how to prepare a client side call to a SOAP RPC service
that has one parameter of type "int[]", like...

   public String[][] findNames(int[] anIDArray)

How do I create the parameter instance? I've tried the following but it
won't compile...

      fParams.addElement(new Parameter("anIDArray",
                                       Array.class,
                                       new Array(anIDArray),
                                       null));