Postbuilding .NET applications? Pros? Cons?

M

Marcel

My collegues and I are considering to start working with .NET (again), but
we do not want people to learn all about the structure and secrets of our
application by reading the intermediate language (with ildasm.exe). We do
not like to use obfuscation because that messes up stacktraces in case of
error logging. It seems there are some applications that postbuild .NET
applications, including the neccessairy .NET Framework classes within the
executable and building it to traditional machine code.

Does anyone out there know applications like that (name, url?), and perhaps
share experiences with me?

Thanks, Marcel.
 
R

RobinS

I believe someone answered this in the other group where you posted it.

Robin S.
 
P

PS

Marcel said:
My collegues and I are considering to start working with .NET (again), but
we do not want people to learn all about the structure and secrets of our
application by reading the intermediate language (with ildasm.exe). We do
not like to use obfuscation because that messes up stacktraces in case of
error logging. It seems there are some applications that postbuild .NET
applications, including the neccessairy .NET Framework classes within the
executable and building it to traditional machine code.

Does anyone out there know applications like that (name, url?), and
perhaps
share experiences with me?

www.eziriz.com, www.remotesoft.com, www.thinstall.com, www.xenocode.com

There are probably others as well. Any product adds an additional point of
failure and I have used a couple of these products and did have some
problems which required tech support from the vendor. I have also used
obfuscation products but these generally provide the ability to translate
the obfuscated stack trace back to "plain" text.

Not all products need to embed the framework into the executable to avoid
the prying eyes of a tool like Reflector
(http://www.aisto.com/roeder/dotnet/).

PS
 
S

saenzcorp

www.eziriz.com,www.remotesoft.com,www.thinstall.com,www.xenocode.com

There are probably others as well. Any product adds an additional point of
failure and I have used a couple of these products and did have some
problems which required tech support from the vendor. I have also used
obfuscation products but these generally provide the ability to translate
the obfuscated stack trace back to "plain" text.

Not all products need to embed the framework into the executable to avoid
the prying eyes of a tool like Reflector
(http://www.aisto.com/roeder/dotnet/).

PS

Read this:
http://groups.google.com/group/Reviews4All/t/59dc5a98995a713
 

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