Difference between revisions of "MultiCharts Study DRM Server"

From MultiCharts
Jump to navigation Jump to search
Line 18: Line 18:
 
To do this:
 
To do this:
  
Send an e-mail to '''[mailto:trading@ampclearing.com trading@ampclearing.com]''' <br>
+
Send an e-mail to '''support @ multicharts.com]''' <br>
  
 
Your e-mail address will be used as your login and the password for the DRM system will be sent to you via e-mail.
 
Your e-mail address will be used as your login and the password for the DRM system will be sent to you via e-mail.

Revision as of 15:57, 10 July 2017

General Description of the Protection Mechanism

When protecting the study the source code is exported to an assembly (DLL), which is protected by any NET obfuscator. MC .NET Special Edition features the Confuser Ex obfuscator. User can also use any other obfuscator. When importing the protected study a class inherited from the encrypted assembly is created. The encrypted assembly is connected via references.

In case the Study is used on several computers at the same time, the last user disconnects all connected users in 5 minutes.

To integrate licensing system into your studies the following steps are required:

  1. Register with MultiCharts LLC as a developer;
  2. Select a name for the Study;
  3. Add a DRM call code to your Study;
  4. Create a protected Study;
  5. Distribute the licenses among the users.

Step by Step Instructions

Step 1: Register as a Developer

To do this:

Send an e-mail to support @ multicharts.com]

Your e-mail address will be used as your login and the password for the DRM system will be sent to you via e-mail.

Step 2: Select a Name for the Study

After you receive your password you should log in to http://mcauth1.com/MCAIServer/ server using your login and password.
Then, go to the Study Name section.

SE DRM 1.png

Initially this section is empty. You should register the name which will be used for the study identification.
To do this, click the New item button:

SE DRM 2.png

Then, fill in all the fields:

SE DRM 3.png

The following information should be indicated:

  • Name - unique name, for example, Moving Average;
  • Trial period (in days, set to 0 for no trial period);
  • Default license period.

Step 3: Add a DRM Call Code to Your Study

Add the VerifyLicense function call to your study in constructor and set the registered study name and your login as parameters.

For example:

public MovingAverageIndiсator(object _ctx) : base(_ctx){
VerifyLicense("Moving Average", "Adam.Smith@gmail.com");
}

Study name and e-mail are not case-sensitive.

Step 4: Create a Protected Study

After the study is connected to DRM, it should be exported to a PLN file with protection.
To do this the following should be done in PowerLanguage Editor:

1. In the main menu click File and select Export...

SE DRM 4.png

2. Select the study to export.
3. Enable the Protect option.
4. Select a protection tool (the drop-down list is visible only if the Protect option is enabled).
5. Click OK.
SE DRM 5.png

Exported study can be distributed to the users.


Note:
  1. Study can be used without registration only if a trial period other than 0 is indicated when creating the study. When the trial period ends the study will ask for the key necessary to continue working with the study.
  2. You can protect the assembly using the built-in obfuscation tool or configure the application to use any other tool. The following obfuscators do not need additional configuration in PowerLanguage Editor: NET Reactor, Agile DOT NET, dotfuscator and Cli Secure.


Step 5: Managing Licenses

Go to the Licenses section to create a key.

SE DRM 6.png

Initially the table is empty. To allow the user to use your study you should create a license.
To do this, click the New item button.

SE DRM 7.png

The following information should be indicated for the new license:

  • User name, which will be used to display the user who has purchased the study (not required);
  • Select a study from the drop-down list;
  • The key will be generated automatically;
  • Date will be determined automatically: Default License Period will be added to the current date. The date also can be set manually.

SE DRM 8.png

After clicking the OK button the license is created and the key can be sent to the user.