-
as seen on Stack Overflow
- Search for 'Stack Overflow'
HI
I am writing an application where I need IP address. I have domain name, but I like to know hoe to get IP address from domain name. For ex www.girionjava.com how to get IP address of this by programming in java.
Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
so i have a code which gets me the ip address of a machine i am wroking on.
so if my gui is published on the server and i access it from my local machine it gives me tha address of my local machine and when i access the gui from the server itself it gives me the server address.. which is fine.
But…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
Please let me know how to get the client IP address,
I have tried all of the below things , but I am getting the same output 127.0.0.1
string strClientIP;
strClientIP = Request.UserHostAddress.ToString();
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
We're trying to implement a custom solution for Growl for Windows. We tell the Growl client to subscribe to notifications from our server. The server then gets a message from the client via the GNTP (Growl messaging protocol). We require the name of the user logged into the client machine in order…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hello
i want to knw the ipaddress of my computer.
/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'
this command gives the ipaddress of my computer and print result on console but i want it in a varible sothat i can use it in my C program. How can i do that.
>>> More