> That would be a possibility. I could then obtain all request info in my > login method. > > A small note on passing the request and response objects to the > authentication implementation, however. This makes the authentication > process completely dependent on the presence of a web interface. If > login must later on occur by other means, this would be impossible > without mocked request/response objects. Hi,
I think you have good point. More in general I don't think it's a good idea to send the request/response into the core. The scanparser used to send "scanpages" intro the core but we will need an object that looks like the pageContext http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/jsp/PageContext.html but that does not depend on servlet technology. for the moment we have to use the request/response.
