RE: Getting client IP address

2010-10-12 Thread Maris Orbidans


 -Original Message-
 From: Josh Kamau [mailto:joshnet2...@gmail.com]
 Sent: 06 October 2010 12:31
 To: users@wicket.apache.org
 Subject: Re: Getting client IP address
 
 Thanks guys, I got the IP address. Is it possible to get the client
 computer
 name?

nope

Maris


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting client IP address

2010-10-12 Thread James Carman
ServletRequest.getRemoteHost():

Returns the fully qualified name of the client or the last proxy that
sent the request. If the engine cannot or chooses not to resolve the
hostname (to improve performance), this method returns the
dotted-string form of the IP address. For HTTP servlets, same as the
value of the CGI variable REMOTE_HOST.

On Tue, Oct 12, 2010 at 7:14 AM, Maris Orbidans maris.orbid...@ingg.com wrote:


  -Original Message-
  From: Josh Kamau [mailto:joshnet2...@gmail.com]
  Sent: 06 October 2010 12:31
  To: users@wicket.apache.org
  Subject: Re: Getting client IP address
 
  Thanks guys, I got the IP address. Is it possible to get the client
  computer
  name?

 nope

 Maris


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Getting client IP address

2010-10-12 Thread Maris Orbidans
Yes, hostname.
Sorry, I thought about something else.

 -Original Message-
 From: jcar...@carmanconsulting.com
[mailto:jcar...@carmanconsulting.com]
 On Behalf Of James Carman
 Sent: 12 October 2010 12:25
 To: users@wicket.apache.org
 Subject: Re: Getting client IP address
 
 ServletRequest.getRemoteHost():
 
 Returns the fully qualified name of the client or the last proxy that
 sent the request. If the engine cannot or chooses not to resolve the
 hostname (to improve performance), this method returns the
 dotted-string form of the IP address. For HTTP servlets, same as the
 value of the CGI variable REMOTE_HOST.
 
 On Tue, Oct 12, 2010 at 7:14 AM, Maris Orbidans
maris.orbid...@ingg.com
 wrote:
 
 
   -Original Message-
   From: Josh Kamau [mailto:joshnet2...@gmail.com]
   Sent: 06 October 2010 12:31
   To: users@wicket.apache.org
   Subject: Re: Getting client IP address
  
   Thanks guys, I got the IP address. Is it possible to get the
client
   computer
   name?
 
  nope
 
  Maris
 
 
 
-
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 _
 This e-mail has been scanned for viruses by MessageLabs.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting client IP address

2010-10-12 Thread James Carman
It's not terribly reliable from what I remember, but if it works, it works. :)

On Tue, Oct 12, 2010 at 7:50 AM, Maris Orbidans maris.orbid...@ingg.com wrote:
 Yes, hostname.
 Sorry, I thought about something else.

 -Original Message-
 From: jcar...@carmanconsulting.com
 [mailto:jcar...@carmanconsulting.com]
 On Behalf Of James Carman
 Sent: 12 October 2010 12:25
 To: users@wicket.apache.org
 Subject: Re: Getting client IP address

 ServletRequest.getRemoteHost():

 Returns the fully qualified name of the client or the last proxy that
 sent the request. If the engine cannot or chooses not to resolve the
 hostname (to improve performance), this method returns the
 dotted-string form of the IP address. For HTTP servlets, same as the
 value of the CGI variable REMOTE_HOST.

 On Tue, Oct 12, 2010 at 7:14 AM, Maris Orbidans
 maris.orbid...@ingg.com
 wrote:
 
 
   -Original Message-
   From: Josh Kamau [mailto:joshnet2...@gmail.com]
   Sent: 06 October 2010 12:31
   To: users@wicket.apache.org
   Subject: Re: Getting client IP address
  
   Thanks guys, I got the IP address. Is it possible to get the
 client
   computer
   name?
 
  nope
 
  Maris
 
 
 
 -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 _
 This e-mail has been scanned for viruses by MessageLabs.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting client IP address

2010-10-06 Thread Altuğ Bilgin Altıntaş
Read with order

1 - http://www.javadb.com/get-users-ip-address
2 - https://cwiki.apache.org/WICKET/raw-httpservletrequest.html

2010/10/6 Josh Kamau joshnet2...@gmail.com

 Hi Team;

 Is it possible to get the IP address of the client and how?

 kind regards.



Re: Getting client IP address

2010-10-06 Thread Richard Nichols
There may be a more correct way of doing it, but this will work -

getWebRequestCycle().getWebRequest().getHttpServletRequest().getRemoteAddr();


On Wed, Oct 6, 2010 at 9:46 PM, Josh Kamau joshnet2...@gmail.com wrote:

 Hi Team;

 Is it possible to get the IP address of the client and how?

 kind regards.




-- 
Richard Nichols
http://www.richardnichols.net/ :: http://onmydoorstep.com.au/


Re: Getting client IP address

2010-10-06 Thread Josh Kamau
Thanks guys, I got the IP address. Is it possible to get the client computer
name? i checked the ClientInfo Object and it doesnt have much.

regards

On Wed, Oct 6, 2010 at 1:58 PM, Richard Nichols r...@visural.com wrote:

 There may be a more correct way of doing it, but this will work -


 getWebRequestCycle().getWebRequest().getHttpServletRequest().getRemoteAddr();


 On Wed, Oct 6, 2010 at 9:46 PM, Josh Kamau joshnet2...@gmail.com wrote:

  Hi Team;
 
  Is it possible to get the IP address of the client and how?
 
  kind regards.
 



 --
 Richard Nichols
 http://www.richardnichols.net/ :: http://onmydoorstep.com.au/