| Author |
what is the method to get the name of the server
|
Saritha Reddy
Greenhorn
Joined: Jun 17, 2004
Posts: 8
|
|
Hi My server Ip address is say 172.33.33.345 I have a name for this server say "xxxx" if I use request.getServerName() I get the IPAddress I want the server name not the IPAddress. Can some one help me with a method name that returns the name of the server I appreciate your help Thanks in advance
|
 |
sawan parihar
Ranch Hand
Joined: Aug 24, 2004
Posts: 250
|
|
Hello, There are many ways to do it . You can use JMX for the same but the below approach is much more simpler. import java.net.InetAddress; InetAddress address = InetAddress.getLocalHost(); String hostName = address.getHostName(); Hope it helps.
|
Sawan<br />SCJP,SCWCD,SCBCD<br /> <br />Every exit is an entry somewhere.
|
 |
Saritha Reddy
Greenhorn
Joined: Jun 17, 2004
Posts: 8
|
|
|
Thank you
|
 |
 |
|
|
subject: what is the method to get the name of the server
|
|
|