Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / C#
Article

Contacting a Registration Server to obtain a unique registration key based on unique machine ID

Rate me:
Please Sign up or sign in to vote.
4.08/5 (4 votes)
20 Sep 2007CPOL2 min read 39.7K   704   52   7
This article describes usage of System.Net.WebRequest & WebResponse to contact a Server and obtain a registration key for a Windows application.
Screenshot - registration.jpg

Introduction

Sometimes in the industry, it is required to collect some unique machine information and send it to a server for the purpose of creating a unique registration key based on the hardware information. This is required in the case when the software requires a per PC registration. Thus we can collect the machine information of the PC in which the software was installed, and issue a registration key which will be valid only for that machine.

Background

Using WMI functionality, it is possible to collect machine specific hardware information.
In .NET, one can use System.Management.ManagementClass for this purpose. (This is explained in this article.)

The problem arises when we try to send this information to the server. Because of the firewall that is present in OSes starting from WinXP, if we try to send data from our application to an external server, the firewall pops up a warning to the user informing her/him that the application is trying to send data and asks the user whether she/he wants to proceed or block the application. (Also this approach will fail if the local network is connected to the Internet through a firewall, which is configured to block anything other than HTTP traffic.)

The solution thus comes in the form of HTTP (i.e. we have to send the data through HTTP).
In .NET, this is easily achieved through System.Net.WebRequest or by using a Web Service. This article uses the WebRequest approach.

Using the Code

In the class ContactRegistationServer (UserRegistration project), you will notice that we are creating a WebRequest and passing the hardware information through QueryString.

C#
WebResponse registrationKey = null;
String url_string = "http://localhost/Registration/Registration.aspx"
    + "?CPU=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.cpuID)
    + "&BIOS=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.biosID)
    + "&MB=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.baseID)
    + "&DISK=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.diskID)
    + "&MAC=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.macID)
    + "&VIDEO=" + System.Web.HttpUtility.UrlEncode(hardwareInfo.videoID);
try
{
    WebRequest requestRegistration = WebRequest.Create(url_string);
    registrationKey = requestRegistration.GetResponse();
}
catch (Exception ex)
{
    System.Windows.Forms.MessageBox.Show("Failed connecting to server");
    return;
}

On the server (Refer project 'TestPage' Registration.aspx.cs), the QueryString received from the client is retrieved and a unique registration key is produced and returned to the user.

C#
//Call the Foolproof Registration Key algorithm :)
TheFoolProofRegistrationKey regKey = new TheFoolProofRegistrationKey();
String key = regKey.getRegistrationKey(Request.QueryString["CPU"]);
Response.Write(key);

Notes: If You Decide to Download and Run the Program

If you decide to download and try the application, please make sure to create a virtual folder of the name "Registration" on your local Web server. This is required as the WebRequest is using the following URL: http://localhost/Registration/Registration.aspx (or else copy the files to a folder by the name Registration under the server root folder).

Just for the use of a novice, I have attached a few screen shots on how to add the virtual directory on IIS.

Image 2

Screenshot - virtual3.jpg

And finally you should have something as follows:

Screenshot - virtual2.jpg

Points of Interest

For testing purposes, I also tried to connect to the server from a different PC: (e.g.: http://10.10.42.135/Registration/Registration.aspx) and it still worked - the firewall did not complain:).
I did not try to connect to a server outside our network, but I guess that should also work...

To collect machine specific information, use the code in this article.

History

  • 20th September, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Sri Lanka Sri Lanka
coding in C# C++ C

==============================================

Code in English, not Gibberish Smile | :)

Comments and Discussions

 
QuestionD we need any Crypto library? Pin
Giri Ganji24-Sep-07 19:33
Giri Ganji24-Sep-07 19:33 
AnswerRe: D we need any Crypto library? Pin
Sajjitha Gunawardana25-Sep-07 5:07
Sajjitha Gunawardana25-Sep-07 5:07 
GeneralOne Caveat Pin
TrendyTim24-Sep-07 12:56
TrendyTim24-Sep-07 12:56 
GeneralGood Article Pin
merlin98121-Sep-07 4:17
professionalmerlin98121-Sep-07 4:17 
GeneralRe: Good Article Pin
Sajjitha Gunawardana21-Sep-07 5:26
Sajjitha Gunawardana21-Sep-07 5:26 
GeneralRe: Good Article Pin
merlin98121-Sep-07 7:45
professionalmerlin98121-Sep-07 7:45 
Display a message to the user saying something like "I'm sorry, but XYZ Application can not contact the registration server. Please make sure your firewall isn't blocking access for this application".

Then, close you application or whatever you do when the user is a non-registered user.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I get my developer tools from Merlin A.I. Soft

Rhabot - World of Warcraft Bot

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

GeneralRe: Good Article Pin
MathiasW24-Sep-07 12:47
MathiasW24-Sep-07 12:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.