From: Naren Date: 2006-08-12T02:50:10+09:00 Subject: Multiple scripts accessing one WEBrick session? I want to set up a a machine as a servlet container using WEBrick. But I want to be able to add several servlets, hopefully from separate Ruby scripts. So here is the sample to start one servlet right, ==================== require "webrick" server = WEBrick::HTTPServer.new(:Port => 8080, :DocumentRoot => "C:\\WWW") trap("INT") {server.shutdown} class Servlet_A < WEBrick::HTTPServlet::AbstractServlet HEAD = "My Page" def do_GET(req, res) var1 = req.query['var1'] var2 = req.query['var2'] result = DoStuff.new( var1, var2 ) res.body = "#{HEAD}

My Page

#{result}" end end server.mount("/pl", PLServlet) server.start ===================== Now I want to have another script that will have the implementation for Servlet_B. But I want to mount that on the same server. Any ideas on how to do that? Can it be done? TIA Naren