Determine caller domain

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tuncer Erhamza

    Determine caller domain

    Hi!

    Another web application (domain) call our application.
    We want to determine in our application which domain call.

    Thanks.


  • Juan T. Llibre

    #2
    Re: Determine caller domain

    re:
    !We want to determine in our application which domain call.

    Capture the requesting IP and do a reverse DNS lookup, although that won't help you.

    There's many clients which share IPs, via proxies, with many other clients.




    Juan T. Llibre, asp.net MVP
    asp.net faq : http://asp.net.do/faq/
    foros de asp.net, en español : http://asp.net.do/foros/
    =============== =============== ========
    "Tuncer Erhamza" <tuncere@webmer kezi.comwrote in message news:uC16sNfhIH A.4396@TK2MSFTN GP04.phx.gbl...
    Hi!
    >
    Another web application (domain) call our application.
    We want to determine in our application which domain call.
    >
    Thanks.
    >

    Comment

    • siccolo

      #3
      Re: Determine caller domain

      On Mar 14, 12:49 pm, "Tuncer Erhamza" <tunc...@webmer kezi.comwrote:
      Hi!
      >
      Another web application (domain) call our application.
      We want to determine in our application which domain call.
      >
      Thanks.
      you may want to check Request.ServerV ariables["HTTP_X_FORWARD ED_FOR"],
      and then, if that one's empty,
      look in Request.ServerV ariables["REMOTE_ADD R"] ....something along
      this lines.


      ... more at http://www.siccolo.com/articles.asp


      Comment

      Working...