I am looking for:

  • An online service that handles customers' software trial requests and mails out trial keys

combined with

  • A licensing SDK that can be integrated into my installer or application to accept a trial key and phone home to validate it

Does something like this exist or is there a platform that could be used to build this quickly?

I only need licensing for my trial product, not for the paid product which will be delivered in a different form.

There are several related questions already here but I can't find any solution that answers this specific question. Most important is the web service which would mean trial requests can be taken care of automatically.

Please don't answer that software protection is a waste of time or phone-home is evil. I am required to implement it by my patent licensors.

PS: My application is Windows C++

PPS: Something like this comes close but I don't want to have to write web services: http://www.inishtech.com/Support/FAQs/FAQs/Licensing/Automation-of-Demo-Trial-Licenses.aspx

link|improve this question

74% accept rate
feedback

closed as not constructive by Will Jan 9 at 1:33

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

There are many products that can do this but one piece of important missing information is: what platform will your application run on?

I've used Sofpro before, which has client protection as well as web server based key generation (as well as an SDK you can provide your own key generator with). It's a commercial product but they do offer free trials.

In my case, my application used their SDK to manage licensing; when a license was needed the application attached to my web server and provided authentication to have the server tell them their license key. Sofpro's keys are valid only on the machine the license is generated for, and the license keys are removable (and not re-installable... a new key must be generated for the same machine for that).

link|improve this answer
feedback

I work for LicenseSpot, a product that provides the functionality you're looking: serial number generation, trials, activation and mailing of the keys to the customer.

We also provide the SDK you need, even though is developed in managed code, you can integrate it in your C++ application using a COM wrapper.

link|improve this answer
Looks nice, @Jose. Is that COM wrapper in your SDK? – paperjam Jun 1 '11 at 15:05
feedback

(Disclaimer - I work For Agilis Software, a provider of licensing software and services that do exactly this).

There are a few other things to think about for trial licensing, since I assume from your post that you are concerned about people using your trial license to get more than just the one trial period. You may then want some or all of the following:

  1. A way for a trial user to activate their trial installation even if they don't have a network connection on their system. Ideally this is user self-service so you don't have to do anything, and so it can work 24x7.

  2. A way to automate issuing trial licenses, should you expect or one day receive sufficient volume of requests.

  3. Protection against people who try to extend a time-limited (say 30-day) trial by turning back their system clock before starting the trial, or turning it back once the trial has begun. You probably also want to stop them from running your trial on other machines once activated on the first one.

  4. A way of easily extending a trial if a promising prospect has valid reason for doing so.

  5. A way to prevent 'serial evaluators'. Common approaches are to not allow more than one trial on a given machine, or to a given email address.

  6. Registration of prospects, and reporting.

  7. Other trial limitations beyond just time e.g. configuring product features, or setting a usage limit.

Hope this helps,

Dominic

Agilis Software

link|improve this answer
Sorry but I don't see pricing on your website - I can't contemplate a solution without an entry-level price / online purchasing. – paperjam Jun 1 '11 at 15:00
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.