On Aug 9, 8:21 pm, Nick Hebner <
hebn...@gmail.com> wrote:
> I ran into this problem too. The problem is that primitive parameters get
> serialized as their object counterparts due to the use of java proxies on
> the client side. Then on the server side, we attempt to find a method using
> Class.getMethod() with the classes of the passed parameters. Since
> getMethod() searches for EXACT matches, it will not find your method with
> primitive types and will fail. I rewrote the server side method search to
> search through the methods for one that contains parameters that are
> Class.assignableFrom() the passed parameters.
>