2010-01-10 39 views
0

现在,我与我的第一个Windows Mobile的项目工作,我有一个奇怪的问题..
我使用WebRequest下载从互联网的一些图片 - 我的手机它的工作原理,但在调试器我有套接字例外。使用的WebRequest localy导致异常

string url = "http://new.meteo.pl/um/metco/mgram_pict.php?ntype=0u&fdate=2010011006&row=381&col=199&lang=pl"; 
Stream stream = null; 
WebRequest requestPic = WebRequest.Create(url); 
WebResponse responsePic = requestPic.GetResponse(); 
stream = responsePic.GetResponseStream(); 

return new System.Drawing.Bitmap(stream); 

输出:

A first chance exception of type 'System.Net.WebException' occurred in System.dll 
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll 
The thread 0x167c46f6 has exited with code 0 (0x0). 

如何强制我的本地实例来获得这个图像?

回答

1

如果您使用设备模拟器,只需配置网络信息。

并确保它可以连接到外部世界(这可能不可能取决于您的网络基础设施)。