tags:

views:

16

answers:

1

How to retrieve IPAddress and browser information of user in ADF. I am not able to find this in ADFContext.

A: 

From ADFContext has a subclass ServletADFContext which should give you access to HTTPRequest which you should be able to get to

request.getHeader("user-agent")

IP Address: request.getRemoteAddr()

Browser: request.getHeader("user-agent")

hope this helps

Subraya Mallya