How do you find out what client machine is making a request to your servlet ?

3 years ago
OOP Java

The ServletRequest class has functions for finding out the IP address or host name of the client machine. getRemoteAddr() gets the IP address of the client machine and getRemoteHost() gets the host name of the client machine. See example here.

More related questions

Questions Bank

View all Questions