|
I am hoping there is a simple answer to this! My webserver has a number of IP addresses. one particular website has one of these IP addresses mapped to it. On said website, I have a java applet which is making outbound http requests.
Now, I am wondering...
Started by SiC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So the IP address.
The java applet will be run by your visitors.
They won't see any of your IPs adapter/IP actually gets used .
To, and this is client side, they will see the IP of the website user.
|
|
How to I get the IP address of a given website,such as serverfault.com?
Started by Jinx on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at serverfault):
C:\Documents and Settings\user>ping systems, etc, that the IP address you get back might have no real relationship to the IP address address 69.59.196.212
dig gives....
Ping serverfault.com look for the IP address in the output.
|
|
When a user request comes in, I can use Context.Request.UserHostAddress to get the user's IP address. How can I get the IP address of the website/server at runtime? I have some reporting code that can be used by multiple websites on the same server, and...
Started by ccoxtn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
System.Net.Dns.GetHostAddresses
by the way, you must pass in as an argument the name of the host, so perhaps try this:
System.Net.Dns.GetHostByAddress(System.Net.IPAddress.Parse(System.Web.HttpContext.Current.Request.UserHostName)).HostName;
And if all... .
|
Ask your Facebook Friends
|
From time to time, I use a temporary email address from www.10minutemail.com to sign up for a website, in order not to receive too much spam.
For some reason, the website is blocked on my job. Are there any alternatives for this?
Started by Natrium on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at superuser):
It gives you very....
I am a fan of Spam Gourmet for this.
All of my e-mail is routed to my private, real e-mail address where I can reply as normal.
That I create a disposable e-mail address for every website I have to register on.
|
|
How write code in ASP to get website visitors IP address and Country ID ?
Plz help me, Alex
Started by Alex on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Second, ip address is usually within the request address info (with asp is the REMOTE....
First, this has nothing to do with javascript.
Typically solutions like GeoIP are used to locate an IP address down to a geographical location.
|
|
Hi,
Is there simple and reliable way to detect your website visitor IP address using Java. I am trying to make use of Akismet to detect spam on my blog post/comment. The API require me to specify the IP address of the commenter.
Thanks =)
Started by zfranciscus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The last address is the only one....
It's a comma-separated list of IP numbers, where the last one is the address that connected to your load balancer.
Forwarded-For header, as getRemoteAddr() will be the address of your load balancer.
|
|
For example, a website like stackoverflow.com, is it a good practice to use email address to identify users in many tables?
Is it bad if the primary key is very long, say
varchar(50)
or even
varchar(100)
?
Started by Steven on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
A string (like an email address) would in an email address.....
Third, you should just use something like an auto-incrementing ID .
Their email address? Then you have an ugly cascade of changes that need to be made across your tables.
|
|
I'm creating a website with rails that sells a virtual service, and therefore don't really want to validate the billing address for credit card transactions.
From what I have read on paypal (page 14 of this pdf ) and other resources i have looked at, ...
Started by Alex.Bullard on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A billing address is required....
That said, there may be a setting to turn this requirement off, I have not looked .
IIRC address is required.
Yes, the billing address is now required even though they do not mention it in their docs.
|
|
I want to block all non-US users from accessing my website. I'm using nginx on the front end and have a django powered website.
1) How can I determine what are US IP addresses?
2) Should I be blocking them in my webserver or in my application layer?
Started by MikeN on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Some small countries traffic ....
There is a limit to how accurately you can do this .
Generally the more accuracy you want the more you pay for it .
Some are free, some are online checks, some give you a list or a library .
You need a GEO location provider.
|
|
Hello all. I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to pick up the domain name. My e-mail address...
Started by Unniloct on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
If you have to have your email address is that if you are providing....
My email address is my first name at this website harvesters will look to find out how people are obfuscating emails.
Before the new site is up is to send me an email .
|