Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Licensing system for Flex Application

Does anyone have experience in creating a licensing system for a Flex Application. My Flex application is a swf which is embedded in a aspx page. For data retrieval it accesses web services.

My intention is to sell it to my customers on license base. (Eg: Using a Serial Number).

like image 998
Nipuna Avatar asked Aug 30 '26 02:08

Nipuna


1 Answers

I think I've answered this a lot; but I can't find it. Here are two services:

  1. NitroLM
  2. Sharify

There used to be another, I think, but I can't remember the name and my Google-Fu is failing me.

You didn't go into details on how you want your licensing scheme to work; so it's tough to give you specifics. The algorithm is not complicated, but the details can become very much so.

I built something for Flextras in the early days that would watermark non licensed Flex components. The gist is:

  1. Load serial Number.
  2. Perform some secret sauce algorithm! In the Flextras model this was done at runtime based on a serial number specified at compile time. It did some checking of the serial number data against the domain, the component, and the component's version. For an application you may want to check other data (The Username for example) and possibly against some central repository server.

  3. If the user is allowed access? If so then let them have at it.

  4. If not; then show them the "invalid" message/screen/etc..

like image 98
JeffryHouser Avatar answered Sep 04 '26 18:09

JeffryHouser