The implementation of the factory service that instantiates new WWW-RPC serlets.
Methods
Attributes
| [W] | handlers | The setter for the service that will handle data returned by services. |
Public Instance methods
The factory method that is invoked when a new WWW-RPC servlet is needed. This will return a new WWWRPCServlet instance.
[ show source ]
# File lib/copland/webrick/www-rpc-servlet-factory.rb, line 50
50: def create_instance( point, parms )
51: service = parms[ 'service' ]
52: interface = parms[ 'interface' ]
53:
54: return WWWRPCServlet.new( service, interface, @handlers )
55: end