- Home /
Question by
haruki.teramachi · Dec 22, 2015 at 09:00 AM ·
errorios4.6webrequesthttpwebrequest
About Implemented host name resolution with IPv6 in Unity 4.6.9 release-notes.
Hi, Unity team.
I have question about release-notes of unity-4.6.9.
It is "Implemented host name resolution with IPv6".
but, When I use "HttpWebRequest" on iOS9 device(Unity 4.6.9 build), I found the DNS error.
The error is "NameResolutionFailure".
I will teach a procedure.
- Make DNS64/NAT64 access point on Mac.
(https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html) - iOS9 device connect to access point.
- Execute test code
--------------
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create("Domain Name");
webRequest.Method = "POST";
Stream stream = webRequest.GetRequestStream();
--------------
- I found the error "NameResolutionFailure".
About "Implemented host name resolution with IPv6", will you tell me concretely?
and, Can you resolve this error?
Please tell me how to resolve this error.
Best regards,
Haruki
Comment
Your answer
Follow this Question
Related Questions
WebRequest.BeginGetRequestStream fails on iOS using IPv6 DNS64/NAT64 1 Answer
Building for iOS Fails, Claiming Sockets in Use, But they Are Not 1 Answer
UnityWebRequest Timeouts (some times) but postman success (always) 0 Answers
Index out of range exception 1 Answer
What technology UnityWebRequest used in iOS platfrom? how can I modify the dns info? 0 Answers