Hi
All I have created a website and I would like to implement license functionality to my website.[Users must have license to use website]. Does anyone knows any good free lincensing sytem?
Website code will be distributed and installed on diffrent client's servers.
There aren't any free ones that I know of. If you do some Googling you will find some paid-for ones.
If you search this forum you should find some posts by myself as I have answered this in the past (a few years ago).
The trouble with distributing your website is that even if you compile .net into an assembly (.dll) you can still look inside it. Its a part of the .net compilation model, you can use a tool to inspect any .net assembly. You can obfuscate it to make it harder
to get at but its still not impossible.
Any solution you end up using will be potentially breakable.
If you really want to control your technology you would need to host it on your own servers and then sell access to it.
anuj_koundal
Contributor
2088 Points
496 Posts
How to Implement licensing system to my .Net Website
Mar 14, 2013 11:04 AM|LINK
Hi
All I have created a website and I would like to implement license functionality to my website.[Users must have license to use website]. Does anyone knows any good free lincensing sytem?
Regards
Anuj Koundal
rtpHarry
All-Star
56620 Points
8958 Posts
Re: How to Implement licensing system to my .Net Website
Mar 14, 2013 11:12 AM|LINK
There aren't any free ones that I know of. If you do some Googling you will find some paid-for ones.
If you search this forum you should find some posts by myself as I have answered this in the past (a few years ago).
The trouble with distributing your website is that even if you compile .net into an assembly (.dll) you can still look inside it. Its a part of the .net compilation model, you can use a tool to inspect any .net assembly. You can obfuscate it to make it harder to get at but its still not impossible.
Any solution you end up using will be potentially breakable.
If you really want to control your technology you would need to host it on your own servers and then sell access to it.