Problems with unity 3.3 and Xml files

I have spend the last couple of hours trying to load a simple xml file into my project. My project is supposed to run in the webplayer and this is where all my problems start - everything works just fine from the editor, but as soon as I build my webplayer nothing works. Just for fun and because I ran out of options I tried to make a very simple test and try it out in unity 2.6 and now everything is fine ?? In the Unity 2.6 version I can see all of my xml file in my test gui, but in the exact same project, just build from unity 3.3 I get the Error message - see simple code below

using UnityEngine;
using System.Collections;

public class NewBehaviourScript : MonoBehaviour {

	private string xmlData;
	
	// Use this for initialization
	IEnumerator Start () 
	{
		string path = "http://www.aneks.dk/pxml/Mysterium.xml";

		WWW xmlDownload = new WWW(path);

		yield return xmlDownload;

		Debug.Log("DownLoad done");

		if(xmlDownload.error == null)
		{
			Debug.Log("DownLoad Succes");
			xmlData = xmlDownload.data;
		}			
		else
		{
			Debug.Log("DownLoad Error");
			xmlData = "ERROR";
		}
		xmlDownload.Dispose();
		xmlDownload = null;
	}
	
	void OnGUI()
	{
		GUI.Label(new Rect(10f, 10f, 300f, 600f), xmlData);
	}
}

Did something regarding reading xml files change in unity 3.3 ?

I hope somebody can help me, cause I run out of things to try.

Best

Claus

Try it.

what error message are you getting ?

Thanks for the suggestion

Sorry for not being more clear on that, what I meant was that my test GUI.Label writes ERROR - based on this piece of the code. It gets the xmlData string;

else
{
	Debug.Log("DownLoad Error");
	xmlData = "ERROR";
}

So the Error I got were because of the xml did not download.

But I did manage to solve the problem. With all the new and interesting features of unity 3 I somehow missed this page in the http://unity3d.com/support/documentation/Manual/Security%20Sandbox.html
I still don’t understand why I need this crossdomain.xml file when both the unity3d and the xml file are located on the same domain, but hey I workes

Please help me too how you resolved the problem i am having the same problem…