I am working on code (legacy code) which uses Apache Xerces-C library. I am trying to view the value of DOMString
(and other related DOM objects) in Microsoft Visual Studio Debugger but in vain. I have tried the following
1) I Added the following in the autoexp.dat
file:
;------------------------------------------------------------------------------
;Xerces
DOMString=<fHandle->fDSData->fData,su>
;------------------------------------------------------------------------------
Result: Same behavior, it shows the memory location
2) I tried to quick watch the DOMString
variable using "var,su
" syntax
Result: ""
I have asked this question at the Apache Xerces General mailing list.
In case someone encountered this problem and had a workaround, it would be of great help to me.