Hi All,
How can I get the IP Address of the current system/phone from where I am login the application?
I have tried below but it is giving the IP address of web and server. I want to get the IP Address of current system from where I am accessing the application.
select SYS_CONTEXT('USERENV', 'IP_ADDRESS', 15) ipaddr from dual;
select SYS_CONTEXT('USERENV', 'HOST', 15) host_name from dual;
select sys_context('userenv','ip_address') from dual;
select utl_inaddr.get_host_address(sys_context('userenv','server_host')) from dual;
Any suggestions would be appreciated.
Best Regards