Error Domain=com.google.GDataXML Code=-1
I am developing a new app, have many under my belt with Titanium. However, this is the first which needed/uses createHTTPClient. I am not requesting any data from google, however, studio's console log shows:
[ERROR] Error Domain=com.google.GDataXML Code=-1 "The operation couldn’t be completed. (com.google.GDataXML error -1.)".   in -[TiDOMDocumentProxy parseString:] (TiDOMDocumentProxy.m:57)
Why is it connecting to google? I am not even pulling an XML file, so I am a little worried of where else this app may be connecting to, and why?!
2 Answers
- 
				
					
Accepted Answer
com.google.GDataXML is the name of the Google open source XML parser. It can also be used as a generic DOM parser. So, if you are doing a http request ,dont be suprised if its being called. You are not contacting Google - dont worry :-)
 - 
				
					
I know this is an old post. But for anyone else finding it I thought I would just add what I found to be the reason that this strange message appeared.
Basically, it was caused by an XML error in a strings.xml file - i.e. a simple parsing problem of one of my own XML files ;-)