I am getting
SecurityException: No valid crossdomain policy available to allow access
When i am trying to call a webservice in Unity3D 3.5 version but the same code was working in Unity3d 4.0 version, below is the code.
var www : WWW = new WWW ("webservice");
yield www;
var dataString = www.text;
I have already googled and found this link which explains that this has been implemented in version 3.0, is this has been revoked in version 4.
http://docs.unity3d.com/Documentation/Manual/SecuritySandbox.html
Please let me know how can i override this work on development enviornment