1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/xmlrpc/server.rb (XMLRPC::Server#initialize): should mount the

servlet on "/".


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gotoyuzo 2005-10-04 19:46:35 +00:00
parent 1355933d89
commit 0c8d8b3f55
2 changed files with 6 additions and 1 deletions

View file

@ -634,7 +634,7 @@ class Server < WEBrickServlet
require 'webrick'
@server = WEBrick::HTTPServer.new(:Port => port, :BindAddress => host, :MaxClients => maxConnections,
:Logger => WEBrick::Log.new(stdlog))
@server.mount("/RPC2", self)
@server.mount("/", self)
end
def serve