DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18033>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18033

Not finding registered handlers





------- Additional Comments From [EMAIL PROTECTED]  2003-03-17 09:48 -------
It should throw an exception when you specify a name without a dot, 
and there is no handler registered under "$default". It will throw
an Exception whose message depends on the presence or absence of a
'.' in the name.

If you want to fundamentally change the way the handler mapping works 
for your application, you can subclass XmlRpcServer and override the 
getHandlerMapping() method to make it return your own instance of 
XmlRpcHandlerMapping (this can inherit from DefaultHandlerMapping 
if you wish). This instance can then do anything it wants in the 
getHandler() method. The XmlRpcServer.{add,remove}Handler methods
then become redundant, you add/remove handlers on your own handler
mapping.

Reply via email to