On Thu, 2003-01-23 at 16:18, Randy Heiland wrote:
> In my ongoing quest to make myself less ignorant in WebKit, could someone point
> me to docs discussing ways of creating a factory servlet?  I now have a working
> subclass of XMLRPCServlet, but would like to make it usable by multiple users.

I don't think a factory is what you want.  The factory creates the
servlet -- you'd create a new factory to create a whole new type of
servlet.  Like if you wanted to use Cheetah Templates, or use some form
or modified HTML file, or a servlet written in Perl.  There's no
documentation for factories, you'd just have to read the code.

But I don't think you want a factory, you are just creating a
specialized class.  If you want other people to be able to use it you
should just put it somewhere they can import it, and they can use it as
the superclass for their own servlets.  Even XMLRPCServlet is just a
subclass of Servlet, it doesn't have its own factory.  

-- 
Ian Bicking           Colorstudy Web Development
[EMAIL PROTECTED]   http://www.colorstudy.com
PGP: gpg --keyserver pgp.mit.edu --recv-keys 0x9B9E28B7
4869 N Talman Ave, Chicago, IL 60625 / (773) 275-7241



-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to