views:

61

answers:

3

Hi guys,

I have a .net based asmx service and I trying to find out details on the clients that are currently using it.

Just wondering what is the best way to gather the information on things like the IP address of the client, the URL that is using my service and so on.

Cheers

+1  A: 

IIS logs with LogParser.

jwmiller5
BTW this still doesn't resolve issue of actually detecting the website that is using my WS.
+1  A: 

Thanks mate..

That's exactly what I was considering as my last option.

:)

A: 

Be aware that, except for limited circumstances (like an Intranet), the IP address you receive may not be meaningful. It could be the IP address of a proxy server, or an address given out by a NAT device. If you need reliability, then you need to create value that is intended to identify the machine - IP addresses are explicitly not meant to identify machines.

John Saunders