Im trying to fetch a JSON from this service:
http://haimtest.azurewebsites.net/MuseumService.asmx/GetNews
you can see that in the browser it returns a pretty long json.
tried to get it into unity in UTF-8 charset with this code:
IEnumerator GetNews()
{
WWW www = new WWW("http://haimtest.azurewebsites.net/MuseumService.asmx/GetNews");
while(!www.isDone)
yield return 0;
Debug.Log(www.text);
Debug.Log(www.size);
}
the problem is that www.text doesnt have the full text that the service returns but only the first 454 chars of it: