Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 992753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:19:01+00:00 2026-05-16T06:19:01+00:00

OpenSRS from Tucows has a reseller API (or rather several APIs) to allow you

  • 0

OpenSRS from Tucows has a reseller API (or rather several APIs) to allow you to register domains, manage DNS settings etc.

They have API Toolkits for PHP and Ruby, but does anyone know of a .Net SDK, or have any sample code that they can share, as a basic starting point for the API?

Many thanks,
Tim

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T06:19:01+00:00Added an answer on May 16, 2026 at 6:19 am

    use the XML API specification

    And the following is a pseudo implementation of how you would send your xml request:

    public class OpenSrs {
    
        private const string URL_BASE       = "https://horizon.opensrs.net:55443";
        private const string RSP_USERNAME   = "username";
        private const string PRIVATE_KEY    = "PrivateKey";
    
        public string SendWebRequest(string postData)
        {
                WebRequest request = WebRequest.Create(URL_BASE);
    
                request.Method = "POST";
                request.ContentType = "text/xml";
                request.Headers.Add("X-Username", RSP_USERNAME);
                request.Headers.Add("X-Signature", Utility.md5Hash(
                            Utility.md5Hash(postData + PRIVATE_KEY) + PRIVATE_KEY));
    
                byte[] dataArray = Encoding.ASCII.GetBytes(postData);
    
                request.ContentLength = dataArray.Length;
    
                Stream dataStream = request.GetRequestStream();
                dataStream.Write(dataArray, 0, dataArray.Length);
                dataStream.Close();
    
                WebResponse response = request.GetResponse();
                dataStream = response.GetResponseStream();
                StreamReader reader = new StreamReader(dataStream);
                string strResponse = reader.ReadToEnd();
    
                reader.Close();
                dataStream.Close();
                response.Close();
    
                return strResponse;         
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to get a title from table 2, table 2 has title and
I have the following code which is executed from the command line: import cgi,time,os,json,sys,zipfile,urllib2
I want to upload and get the result from this website. http://cello.life.nctu.edu.tw/ I tried
from poster.encode import multipart_encode from poster.streaminghttp import register_openers def picscrazy(str,int): register_openers() datagen, headers =
I'm attempting to send a multipart post request from an appengine app to an
In IE7, my jQuery-UI dialog openers seem to be setting focus to the (invisible)
I do some work on on old tables based site. It is being replaced
The Objective : A script which cycles through a list of proxies and sends
Whenever I close my Gtk# application, I get this: (/home/matthew/opensbs/OpenSBS/bin/Debug/OpenSBS.exe:5050): GLib-WARNING **: g_set_prgname() called
I'm using urllib2 to interact with a webserver. For the specific problem I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.