http://bugs.winehq.org/show_bug.cgi?id=30023
--- Comment #3 from Juan Lang juan.lang@gmail.com 2012-05-04 14:08:31 CDT ---
From your log:
0009:Ret KERNEL32.GetLastError() retval=00002f92 ret=1800b70c
00002f92 is 12178, ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR. That only seems to be set here: http://source.winehq.org/source/dlls/winhttp/session.c#L2012
Reading through that, I'd guess that modifying the default return value of WinHttpDetectAutoProxyConfigUrl to be TRUE would work around it.
My suspicion is that the real error is in WinHttpGetProxyForUrl, which shouldn't fail if WinHttpDetectAutoProxyConfigUrl fails, but return WINHTTP_ACCESS_TYPE_NO_PROXY. It'd need tests though.