Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is the problem: I have a WCF service and a few sites connecting to it and sending certain messages.

How can I obtain client's URL (not IP) from the WCF service to assign it with the message? A kind of statistics.

I'm using C#.

Thank you in advance, Tim

share|improve this question

1 Answer

up vote 1 down vote accepted

You can't. Clients don't send from URLs, they send from IP addresses (well, callback clients have a URL but that's another story)

share|improve this answer
Thank you! I found another way – Tim Mar 13 '10 at 4:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.