Re: Apache XML-RPC Server - No such handler exception

2007-09-09 Thread Jochen Wiedmann
On 9/9/07, Ondrej Martinsky <[EMAIL PROTECTED]> wrote: > doesn't recognize the handler "MyRemoteProcedure" provided by addHandler I believe the problem is that you need to add the method name. For example, don't use "MyRemoteProcedure", but "MyRemoteProcedure.someMethod". Jochen -- Look, that'

Apache XML-RPC Server - No such handler exception

2007-09-09 Thread Ondrej Martinsky
Hello, I’m new in problematic of apache XML-RPC, and currently I am trying to implement an xml-rpc server in Java SE. Let’s say we have an interface “myproject.MyRemoteProcedure” and class “myproject.MyRemoteProcedureImplementation”, which implements it: Package myproject; public interfac