Bug

  • Thread starter Thread starter Stefan
  • Start date Start date
S

Stefan

If an exception is trow in an ansambly, and i don't have
the source code of that ansambly how can i trace that bug.
It's there any way to find out ?


Stefan
 
Stefan,
If an exception is trow in an ansambly, and i don't have
the source code of that ansambly how can i trace that bug.
It's there any way to find out ?

Ideally the assembly vendor should provide clear exception messages
for any exceptions they throw so that you can figure out what's wrong.
If not, I suggest you talk to the vendor about it.



Mattias
 
Or you could use the reflector to see if you can get to the source code of
that assembly, just search for reflector on google.

HTH
 
There are a couple of options.

1. Reverse engineer the assembly. There are various decompilers out there.
If the assembly creator obfuscated, you are largely out of luck.

2. Read the vendor documentation and ensure that you are not doing something
wrong. By reading the exception message, you should get a better idea of
what is happening.

3. Search support.microsoft.com if it is a common exception and see if you
might be missing some other software necessary to run this assembly.

The first thing you have to do is determine that this is definitely a bug.
If so, the vendor should fix it.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top