This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Servlets and the fly likes IP address retrieval Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "IP address retrieval " Watch "IP address retrieval " New topic
Author

IP address retrieval

sunil kumre
Ranch Hand

Joined: Dec 23, 2000
Posts: 64
Hello
I'm writing a servlet which will be put on our server.
A client can make a request for this servlet.I would like to retrieve the IP address of the client machine(which could be behind a firewall).What code should be put in the servlet to make this happen.
Thanks in advance
Sunil
Manjunath Subramanian
Ranch Hand

Joined: Jul 18, 2001
Posts: 236

You can make use of the method getRemoteAddr() declared in the
ServletConfig interface,implemented by HttpServletRequest class
This method will return the string equivalent of the client
IP address.The firewall shouldn't be a problem.
Hope this helps,
Manjunath
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: IP address retrieval
 
Similar Threads
Track client request
Get the website name in the sevlet
Getting IP and location of a client
IP address retrieval
Difference between request.getRemoteAddr() and request.getLocalAddr()?