HttpServletRequest Initialization

0
I have a java action that takes a user to a login page (auth0), but launching this requires passing an HttpServletRequest to store the call context in the session. Where can I generate/find this? Do I need to create an object for this in my domain model to pass in as a parameter, or is there something in iMendixRequest/Context that I can use?
asked
1 answers
2

Can't you use something like 

 

		HttpServletRequest servlet = request.getHttpServletRequest();

 

answered