Skip to content

Commit 0c8d8b3

Browse files
author
gotoyuzo
committed
* 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
1 parent 1355933 commit 0c8d8b3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed Oct 05 04:42:38 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
2+
3+
* lib/xmlrpc/server.rb (XMLRPC::Server#initialize): should mount the
4+
servlet on "/".
5+
16
Wed Oct 05 04:06:49 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
27

38
* lib/xmlrpc/server.rb (XMLRPC::Server#serve): delete wrong call

lib/xmlrpc/server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ def initialize(port=8080, host="127.0.0.1", maxConnections=4, stdlog=$stdout, au
634634
require 'webrick'
635635
@server = WEBrick::HTTPServer.new(:Port => port, :BindAddress => host, :MaxClients => maxConnections,
636636
:Logger => WEBrick::Log.new(stdlog))
637-
@server.mount("/RPC2", self)
637+
@server.mount("/", self)
638638
end
639639

640640
def serve

0 commit comments

Comments
 (0)