i have a requirement that i need to pass the source ip address to the backend when authenticating a user.
i've already had to write a custom PasswordAuthenticationDao implementation b/c i am authenticating against a web service call, but the interface only allows for a username and password, and no other information. i'm not seeing anything that would allow me to get at the source ip.
am i going to need to write a whole bunch of custom code to accomplish this, or is there already existing code that i can leverage?


