Multiple scripts accessing one WEBrick session?

N

Naren

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 = "<head><title>My Page</title></head>"
def do_GET(req, res)
var1 = req.query['var1']
var2 = req.query['var2']
result = DoStuff.new( var1, var2 )
res.body = "<html>#{HEAD}<body><h2>My
Page</h2>#{result}</body><html>"
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
 
J

Jan Svitok

Hi,

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 = "<head><title>My Page</title></head>"
def do_GET(req, res)
var1 = req.query['var1']
var2 = req.query['var2']
result = DoStuff.new( var1, var2 )
res.body = "<html>#{HEAD}<body><h2>My
Page</h2>#{result}</body><html>"
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

For one-file version:
Just add your servlets and respective server.mount(url, servlet)
linesto the script.

For more file:
version 1: create files per servlet, and require them into main script
(that will still contain those mount lines)

version 2:
file "base_servlet.rb":
require 'webrick'
class MyBaseServlet < WEBrick::HTTPServlet::AbstractServlet
class << self
attr_accessor :url
end
end

for each servlet:

require 'base_servlet'
class ServletA < BaseServlet
self.url ='/pl'
... the rest of the code
end

file 'server.rb'
require "webrick"
#(1)
server = WEBrick::HTTPServer.new:)Port => 8080, :DocumentRoot =>
"C:\\WWW")
trap("INT") {server.shutdown}

ObjectSpace.each_object(Class) do |servlet|
server.mount(servlet.url, servlet) if servlet < BaseServlet
end
server.start

and either require all the servlets at (1) or start the server with
ruby -rservlet_a -rservlet_b ... server.rb

J.
 
N

Naren

Thanks Jan, I am quite new with Ruby, so I am grateful for your example
code. In addition to answering my question, I also got some generally
Ruby programming style tips out of it. :) What I was hoping I could do
was to mount and unmount servlets independent of each other... while
the other ones were still up and running. Your current solution
(version 2) will work for now, cause I only have 3 or 4 servlets now.
But overall I think I might have around 20, then I would like to have
independent control. I guess I might look into other containers than
WEBrick at that time.

Thanks again.

Naren
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top