Hi, There are two points you mention:
* HTTPS: This is AFAIK outside of the HttpServlet spec * User Authentication: This is intended to be handled by the HttpContext.handleSecurity method. You implement the handleSecurity method in the HttpContext implementation you use to register the servlets. Of course, when you use the default implementation as defined in the HttpService specification, there is no user authentication at all, and all requests will allowed to be handled by the registered servlets. Hope this helps. Regards Felix Am Montag, den 26.11.2007, 08:16 -0800 schrieb kitplummer: > Any pointers at all, on setting up Basic authentication for Jetty? I know > that the HttpService specifies that the implementation must handle security > - but, I'm just not sure where to begin. > > Kit > > > Kit Plummer-4 wrote: > > > > Looking for any ideas on how to best handle security (user > > authentication/HTTPS) with embedded Jetty. We've moved to using Pax Web > > recently, so are at Jetty 6.1.3. > > > > We are launching a few Servlets programmtically...via the HttpService. > > > > Any thoughts, ideas? > > > > TIA, > > Kit > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

