I get the following error when trying to use a long (not Long) as a
parameter to a Call:

params.addElement (new Parameter("time", long.class, time, null));

symbol  : constructor Parameter
(java.lang.String,java.lang.Class,long,<null>)
location: class org.apache.soap.rpc.Parameter
        params.addElement (new Parameter("time", long.class, time, null));
                           ^

The "time" parameter is of type long. It will compile fine with time as
String.

- Mark


Reply via email to