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

* test/soap/calc/*, test/soap/helloworkd/*: changed port# of test server.

(17171)


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nahi 2003-10-18 15:21:18 +00:00
parent df8b1ad9e8
commit cf73166d47
8 changed files with 24 additions and 11 deletions

View file

@ -11,6 +11,6 @@ class HelloWorldServer < SOAP::RPC::StandaloneServer
end
if $0 == __FILE__
server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 2000)
server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 17171)
server.start
end