You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2022. It is now read-only.
This way a method without a handleName prefix can be called by setting null for the handleName parameter in "JsonRpcInvoker.get()" method, like is necessary e.g. for this server code: http://jsonrpcphp.org/ - it's not possible to have a method with a name like "handle.method()" in a PHP class.
A kind suggestion to change the line
String methodName = handleName + "." + method.getName();
in method "JsonRpcInvoker.invoke()" by
This way a method without a handleName prefix can be called by setting null for the handleName parameter in "JsonRpcInvoker.get()" method, like is necessary e.g. for this server code: http://jsonrpcphp.org/ - it's not possible to have a method with a name like "handle.method()" in a PHP class.