Thanks. This question comes up quite a bit. People want "an exact error". The problem is that there are innumerable "exact errors" possible. (Granted there are common errors that might occur.)
My belief is that when only an "exact error" is provided, it typically ends up being an arcane/cryptic message or some "error code". You see this all the time with Microsoft errors -- where one gets some undecipherable, meaningless error message and code, which provides no context or even a glimpse of understanding was to what might be the cause of the problem. The result is that the application developer wastes an enormous amount of time in working to solve each and every error.
Chilkat wants to provide context and details so that 95% of the time, the LastErrorText/LastErrorXml already has the information to understand the cause of the problem, and what is required to fix. If the application developer remains uncertain, then he/she can pass it to Chilkat for advice, and that usually solves the problem quickly.
For common errors, one solution is to use the code generation for XML parsing at
http://tools.chilkat.io/xmlParse.cshtml You can copy-and-paste a sample of the LastErrorXml, such as what you posted, and then generate the code that parses it. (You'll throw out most of it and only keep the parts you want..) For example, the code generated, in C#, to generate the LastErrorXml you provided is:
Chilkat.Xml xml = new Chilkat.Xml();
// Insert code here to load the above XML into the xml object.
string tagPath;
string DllDate;
string ChilkatVersion;
string UnlockPrefix;
string Architecture;
string Language;
int VerboseLogging;
string error;
int v_cMethod;
string path;
DllDate = xml.GetChildContent("Extract|DllDate");
ChilkatVersion = xml.GetChildContent("Extract|ChilkatVersion");
UnlockPrefix = xml.GetChildContent("Extract|UnlockPrefix");
Architecture = xml.GetChildContent("Extract|Architecture");
Language = xml.GetChildContent("Extract|Language");
VerboseLogging = xml.GetChildIntValue("Extract|VerboseLogging");
error = xml.GetChildContent("Extract|inflateToBaseDir|inflateMappedEntry|inflateToOutput2|mappedInflateToOutput|error");
v_cMethod = xml.GetChildIntValue("Extract|inflateToBaseDir|inflateMappedEntry|inflateToOutput2|mappedInflateToOutput|_cMethod");
error = xml.GetChildContent("Extract|inflateToBaseDir|inflateMappedEntry|error");
path = xml.GetChildContent("Extract|inflateToBaseDir|inflateMappedEntry|path");
error = xml.GetChildContent("Extract|error");