Hello! I Have same problem with this code in C#
WWW www = new WWW(url);
yield return www;
xmlDoc = new XmlDocument();
xmlDoc.Load(www.url);
In editor it’s work perfect but in webplayer i have same issue. It stops in last line and don’t known what to do with that. I searched almost all web and I didn’t found any working code.
I’m based my project script on this site: Unity Noobs: XML - Writing to an existing xml file