Windows 2008 Classic ASP Reverse DNS

Discussion in 'Windows / IIS' started by process, Mar 13, 2009.

  1. Is AspDNS OR IP*Works! V8 ActiveX Edition OR any other component to perform Reverse DNS lookups through Classic ASP installed on the Windows 2008 Servers?
     
  2. On the Windows 2008 servers, you can use /n software IP*Works! Internet Toolkit v8 .NET Edition
     
  3. We are using Classic ASP on the Windows 2008/IIS 7 platform.

    Is it possible to install "IP*Works! V8 ActiveX/COM Edition" or a similar component to allow for Reverse IP lookup to allow us to do something like the below?

    Set DNSLook = Server.CreateObject("IPWorks8.IPInfo")
    DNSLook.ResolveAddress Request.ServerVariables("REMOTE_ADDR")
    GetDomainName = DNSLook.HostName
    Set DNSLook = Nothing
     
  4. Takeshi Eto

    Takeshi Eto DiscountASP.NET Staff

    Not at this time. We focus on ASP.NET so there are no plans to offer the COM edition. I'll mention it to our Product team though.
     
  5. Anybody know of another way to perform reverse DNS lookup at DiscountASP from Classic ASP on Windows 2008/IIS 7? Looks like AspDNS component (From ServerObjects?) was available at some point in the earlier servers (not anymore).
     
  6. Bruce

    Bruce DiscountASP.NET Staff

  7. Unfortunately that script requires creating a shell (Server.CreateObject("Wscript.Shell")) and invoking run, which understably is a security issue in a shared hosting environment and hence is not allowed/supported by DiscountASP.

    Any other ideas?

    Also FYI: In our test environment locally we are using Windows 2003 SP2 and ServerObject's ASPDNS and it works.
     
  8. Bruce

    Bruce DiscountASP.NET Staff

    sorry.. i don't have anything else to recommend.
     

Share This Page