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=15059>. 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=15059 Shouldn't hardcode dispatchers Summary: Shouldn't hardcode dispatchers Product: Axis Version: 1.0 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Deployment / Registries AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] If I change the definition of RPCDispatcher and MSGDispatcher in server-config.wsdd, for example: <handler name="RPCDispatcher" type="java:org.apache.axis.handlers.LogHandler"/> <handler name="MsgDispatcher" type="java:org.apache.axis.handlers.LogHandler"/> and then run "AdminClient list" I would not have expected this to work. But I do get the list of deployed items, which means that Axis is ignoring what's defined in the server-config.wsdd for MsgDispatcher. Either the definition of RPCDispatcher/MsgDispatcher should be removed from the config file (because if they're there then people will think they can change it) or internally Axis needs to be changed so that "java:RPC" and "java:MSG" should not be hardcoded. I think the hardcodedness should be removed. Allowing people to easily replace ALL RPC or Msg dispatchers with a one line change is a pretty cool feature.