VS.NET 2005 BETA2 : Could not establish connection to network
I just create one simple solution in VS.NET 2005 Beta2 with 2 projects:
-webservice project (just with default HelloWorld web method)
-smartDevice project (who call HelloWorld web method)
When I try to call WebMethod the error occurred (I use PocketPC 2003 Emulator):
An unhandled exception of type 'System.Net.WebException' occurred in System.Web.Services.dll
Additional information: Could not establish connection to network.
When I write the same code in Windows project everything works OK.
I use this code:
--
localhost.Service s = new localhost.Service();
MessageBox.Show(s.HelloWorld());
--
Some ideas?
TIA,
Bojan

