Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.

UnityWebRequest - CANNOT RESOLVE DESTINATION HOST

I'm trying to do a webrequest, however im facing this error:

CANNOT RESOLVE DESTINATION HOST

The problem is only on the HoloLens. On the emulator and as a normal unity project, it works.

This is my code:
`void Update () {
StartCoroutine(GetData());
}

IEnumerator GetData()
{
    UnityWebRequest uwr = UnityWebRequest.Get(url);
    yield return uwr.Send();

    if (uwr.isError)
    {
        Debug.Log(uwr.error);
    }
    else
    {
        Debug.Log((float.Parse(uwr.downloadHandler.text) / 100));
        fnumber = ((float.Parse(uwr.downloadHandler.text) / 100));
        Vector3 v3new = new Vector3(oldX, fnumber, oldZ);
        transform.position = Vector3.MoveTowards(transform.position, v3new, 100);
    }
}`
Tagged:

Best Answer

  • AngeloGAngeloG
    Answer ✓

    Error is solved, the HoloLens didn't have a connection to the internet for some weird reason.

Answers

  • AngeloGAngeloG
    Answer ✓

    Error is solved, the HoloLens didn't have a connection to the internet for some weird reason.

Sign In or Register to comment.