Domain Name Registration

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • myqueries
    New Member
    • Jul 2008
    • 11

    Domain Name Registration

    Hi All,

    We are developing an application which provides users to create their own website and assign a domain name.we are almost done,but one thing that was left is once the user completes his site and assign a domain name then we need to register domain name .One way of doing this is we can integrated with any of the providers who provide API for domain name registration..B ut I wanted to know if there is any way that we can write programtically to configure in our IIS.Please ,can any one help me out this at earliest as I am in need of this immediately,Thi s is something similar in freewebs.com.

    Thanks in advance.
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Why would you need to configure anything in your IIS for it?
    If your IIS is up and running and serving up a webpage, just point the A record for the domainname you registered to the IP address that goes to the computer housing the IIS website?

    Comment

    • myqueries
      New Member
      • Jul 2008
      • 11

      #3
      Hi ...

      Thanks for the response.

      I am not that good in this concept.Can u please brief me what exactly u meant to say .for example I have created a website and assigned a domain . for this domain we will have a url mapped

      http://250.198.10.11/NewDealerSite.a spx?sid=1 -This is the url that will be passed

      www.mysite1.com --- this is the domain name to be registered.for above link.

      Sid will differ for each user that is the parameter that we pass .Now can you tell me taking this as an example .Sorry,if I trouble u.But I really wanted to know the implementation.

      Thanks

      Comment

      • Plater
        Recognized Expert Expert
        • Apr 2007
        • 7872

        #4
        Well for example if I have a server at 64.64.64.23 and i bought the domainname "mydomain" I would simply tell the dns settings for the domain that "mydomain.c om" should go to 64.64.64.23.
        Then when people put that "mydomain.c om" in their browser it will go to my server and my website.
        That is the most basic entry for a nameserver.

        Comment

        • myqueries
          New Member
          • Jul 2008
          • 11

          #5
          But here I need to do it dynamically programatically .we can't do it manually,That is what I am looking for

          Thanx

          Comment

          • myqueries
            New Member
            • Jul 2008
            • 11

            #6
            Dns Registry

            Hi All..

            Can anyone help me out in knowing some information related to domain name .I wanted to assign domain names through my application ,is there any way where i can register in Dns server .if so,how long does this process take .

            Thanks In Advance

            Comment

            • Curtis Rutland
              Recognized Expert Specialist
              • Apr 2008
              • 3264

              #7
              Do not double post your questions. If you feel that your question has been neglected, you can reply to the original question to "bump" it back to the top.

              MODERATOR

              Comment

              • bnashenas1984
                Contributor
                • Sep 2007
                • 257

                #8
                I saw this post today and thought you might be interested on testing the tool I use to find domain names. It's a great tool to combine domain names.

                Short term financing makes it possible to acquire highly sought-after domains without the strain of upfront costs. Find your domain name today.


                I'm not sure if i'm allowed to post url's in this forum.

                hope you find this tool helpful

                Comment

                • tlhintoq
                  Recognized Expert Specialist
                  • Mar 2008
                  • 3532

                  #9
                  Just a quick comment on the sequence of your work flow...

                  You said you are
                  1. Assigning a domain name
                  2. Building the web site
                  3. Registering the domain name

                  That is going to come back and bite you some day. At some point you are going to assign a domain name because it was available on Monday, build the site, then try to register the domain name on Tuesday after someone else has bought that name.

                  You really want to get the domain registered at the point where the customer approves it. Then you can take as much time as you like to build.

                  Comment

                  • JamieHowarth0
                    Recognized Expert Contributor
                    • May 2007
                    • 537

                    #10
                    From what I have read, the OP wants to build a full end-to-end ERP system so customers can buy web hosting and a domain and have the two automatically linked together.


                    This would involve a multi-step process:
                    1. Become an ICANN (or country-specific) registrar and register with the appropriate registry to be allowed to do this. Then get their API (I'm guessing they're gonna be using something like SOAP, XMLRPC or some other kind of server-side XML transfer).
                    2. When your customer registers a domain, the domain has to be registered on your nameservers. Set up a nameserver with your domain (contact your registrar and ask for "glue" records - you'll need a server with 2 Internet-accessible IPs for this).
                    3. Read here for the innards of the Microsoft DNS API. This will tell you how to utilise the DNS WMI Provider (using dnsapi.dll) to query and manipulate DNS records via WMI on Windows 2000 and later.


                    Once you've done this, you're at a stage where your customer can register a domain via your website (which then gets registered with the registry via that XML call) and then the DNS records are added to your nameservers (so the domain actually points somewhere).

                    Then, you want to take that domain, and read up on Microsoft's IIS API so you can set up a new website with host header mappings that match the domain that's just been registered, along with setting up new subfolders and adding the domain to mail server software so you can also provide email.

                    In a nutshell, that's the programmatic process for a web app that sells web hosting, domains and email.

                    Hope this helps.

                    codegecko :-)

                    Comment

                    Working...