Hello,
So I just ran into a very strange issue. This project is a WPF vb/c# application.
Dim returnString As String = feature.GetGeoJson()
This line of code throws a System.Xml.XmlException saying that “Name cannot begin with the ‘3’ character, hexadecimal code 0x33”
Now, my initial thoughts were that something was wrong with my visual studio project or possibly an outdated dll. I spent hours trying to figure out what in the heck was going on. Finally, I look at the ColumnValues dictionary and noticed 2 keys in the dictionary that began with ‘3’. To be exact, “3aCWrkPln” and “3pAcWrkPre”. So I removed the 3 from the beginning of these keys before trying to get their geo json. It worked.
It seems for now there is a work around for me(removing the 3), however, I thought I should make you aware of this snafu.
Let me know if there is anything I can do to fix this on my end since I am still not 100 percent convinced that it is an issue with the GetGeoJson() function.
Thanks!