code security?

L

Lore Leunoeg

Hello

Is there a way to get code really secure, so that it can't be disassembled?
I don't mean dotfuscator, because I think it's not secure.

Thank you
Sincerely
Lore
 
R

Richard Grimes

Lore said:
Hello

Is there a way to get code really secure, so that it can't be
disassembled? I don't mean dotfuscator, because I think it's not
secure.

Yes. Use .NET remoting. When the code only runs on your machine your
customers cannot decompile it. Of course, don't do the dumb thing that
most examples of .NET remoting do - that is distribute the original
library with the client app so that the client has the metadata. Use
soapsuds instead.

Richard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top