VS 2008 Professional in VB.
Dim xmlDoc as XmlDocument = ......
Dim xmlHttp As New MSXML2.ServerXMLHTTP
Dim xmlResponse As New XmlDocument
xmlHttp.send(xmlDoc)
xmlResponse.LoadXml(xmlHttp.responseText)
Error on last line is 'hexadecimal value 0xFFFF, is an invalid character.' The offending character is a question mark not 0xFFFF. How do I trap this and replace the bad character with space? I' tried:
xmlHttp.responseText.Replace(
"?", Space(1))
ebassador
"Find it, fix it, move on."