Hi Patrick, the reason for why it's no HTTPRequest is, that the HTTPRequest is "wrapped" in the webrequest of jforum ... to be able to modify things upon it.
You can use the RequestContext request to use getParameter to retrieve requestparameters.. or getSession - to get or set session attributes. Both should work like a charm.
Aside that, if there is no method "getRequest" in jforum, look in one of his "parents" - that's a programming paradigm .. "overwriting" and thus :-)
You can use or overwrite methods that have been declared in your super class(es)... so if method "getDiameter" has been declared in class "Circle" .. and "Ball" is having "circle" as it's superclass, it may have the method getDiameter already implemented
Anyhow, to come back to the actual issue: just use the requestcontext variable of method authenticateuser to retrieve the session (request.getSession()) ... and work with it
[originally posted on jforum.net by Sid]