Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. SharePoint
  4. Get IP Address of Sharepoint server

Get IP Address of Sharepoint server

Scheduled Pinned Locked Moved SharePoint
csharpasp-netsharepointsysadminhosting
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    sarah_chandran
    wrote on last edited by
    #1

    I have a ASP.Net Page that resides on a web-hosting server and it can be accessed by adding it as a link to a webpart on some other sharepoint server. I want to display the IP address of Sharepoint server on the ASP.Net Page that can be viewed in the web part. Is it Possible? I tried Request.ServerVariables("HTTP_REFERER") but this gives the entire path which I don't want i.e. http://<Sharepointservername>/tryout/default.aspx I don't want this, I want the IP Address of the SharePoint Server alone. I also tried Request.ServerVariables("remote_host") but it gives me the IP Address of the web-hosting server where the ASP.Net Page resides which is not what I want. I hope all this is not confusing. I am a .Net developer and Sharepoint is pretty new to me, so plz. help.

    F 1 Reply Last reply
    0
    • S sarah_chandran

      I have a ASP.Net Page that resides on a web-hosting server and it can be accessed by adding it as a link to a webpart on some other sharepoint server. I want to display the IP address of Sharepoint server on the ASP.Net Page that can be viewed in the web part. Is it Possible? I tried Request.ServerVariables("HTTP_REFERER") but this gives the entire path which I don't want i.e. http://<Sharepointservername>/tryout/default.aspx I don't want this, I want the IP Address of the SharePoint Server alone. I also tried Request.ServerVariables("remote_host") but it gives me the IP Address of the web-hosting server where the ASP.Net Page resides which is not what I want. I hope all this is not confusing. I am a .Net developer and Sharepoint is pretty new to me, so plz. help.

      F Offline
      F Offline
      fred_
      wrote on last edited by
      #2

      Parse the servername from Request.ServerVariables("HTTP_REFERER")

      IPHostEntry ipEntry;
      //The IP Address Array. Holds an array of resolved Host Names.
      IPAddress [] ipAddr;
      //Value of alpha characters
      ipEntry = Dns.GetHostByName (servername );
      ipAddr = ipEntry.AddressList;

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups