solution to make a open source web application in asp.net limited to be redistributedhttp://forums.asp.net/t/1789485.aspx/1?solution+to+make+a+open+source+web+application+in+asp+net+limited+to+be+redistributedSat, 07 Apr 2012 03:17:45 -040017894854917482http://forums.asp.net/p/1789485/4917482.aspx/1?solution+to+make+a+open+source+web+application+in+asp+net+limited+to+be+redistributedsolution to make a open source web application in asp.net limited to be redistributed <p>we have implemented a web application in asp.net 4.0 and customer needs us to give them the source code too so they can do the maintenance and limited improvements of application themselves ,but we need to make sure that they can not change the application(e.g interface) and sell that to other customers,what is the solution?</p> <p>p.s: actually we need to make sure that only they can use that web application,not anybody else.</p> 2012-04-05T08:24:16-04:004920359http://forums.asp.net/p/1789485/4920359.aspx/1?Re+solution+to+make+a+open+source+web+application+in+asp+net+limited+to+be+redistributedRe: solution to make a open source web application in asp.net limited to be redistributed <p>Ok, there are many questions in here.</p> <p>Regarding not being able to modify the interface, that's a tricky one. Most sites have their business logic compiled and forms as &quot;editable&quot; aspx files. In order to compile pages you need to use web application project instead of website.</p> <p>Then in order to protect your app there are 2 levels of protection:</p> <p>1. Protecting from unwanted ejecution: you need to implement some sort of licensing mechanism. Apps at my company have a built in licensing method that generates licenses PER SERVER so licenses cannot be shared between copies of the app</p> <p>2. Protecting against code inspection (decompilation): None of above will be of any use unless you OBFUSCATE your code. That will gave you some level of protection against customers (or whatever) trying to see how's your stuff programmed. Remember .net assemblies are compiled into intermediate language and can be decompiled to 100% functional code. Try &quot;.net reflector&quot; and see for yourself</p> <p>finally, this is not a simple matter. After years on the field, we're still changing stuff in our licencing/protection mechanisms not and then</p> 2012-04-07T03:17:45-04:00