Search Issue Tracker
Fixed in 2018.3.X
Votes
0
Found in
2018.2.1f1
Issue ID
1066792
Regression
No
[UWP] App crashes when calling UnityWebRequest.SendWebRequest() if URL contains domain name and port
Steps to reproduce:
1. Download attach project
2. Switch platform to UWP
3. Build the project
4. Open VS solution
5. Build project (Debug, x64, Local Machine)
Results: UnityWebRequest.SendWebRequest() fails if URL contains domain name and port
Reproduced with: 2018.3.0a10, 2018.2.6f1, 2018.1.9f1, 2017.4.9f1
Note: reproducible on .NET and IL2CPP backends
Workaround:
Prefixing the URL with a valid protocol will prevent the crash, e.g. "http://" or "https://"
Typically, a default protocol (http://) is automatically prefixed to the URL if one isn't specified, but in this case, using a domain and port number, the prefix isn't applied causing an unhanded exception in the WinRT API NetworkInformation::GetProxyConfigurationAsync. Specifying a fully qualified URL will prevent this.
The unhanded exception has been fixed for 2019.1.0a2, but WebRequest behavior won't be changed to automatically prefix http:// when using a URI with domain and port. This means the WebRequest URI "httpbin.org:12345" will still fail to connect while "httpbin.org" will succeed.
Regardless, it's strongly recommended to always specify a fully qualified URI for any connection (local or remote) to avoid unexpected behavior.
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Component Glyphs value is truncated and Ligature Table glyph fields become inaccessible when increasing the Component Glyphs count
- There is no “Overwrite Preset?” popup when saving a Customizable Toolbar preset with a name that already exists
- Customizable Toolbar preset does not switch to the Unity Default Preset when Reverting All Saved Presets or deleting the active Preset
- [Usability] Selected node gets unselected when undoing changes in the Graph Inspector Node Settings tab
- Search Default option for Column Format does not reset the column's format
amcakebread
Feb 11, 2020 15:18
I am having this exact same issue in 2019.3.0f5 - random crashes when connecting to FTP://....:port