I am trying to consume a web service (Hello World example) from a Pocket PC.
The web service is on a different computer running IIS and I can navigate to
the .asmx file and see the methods via internet and also invoking them. It
also works using the Internet Explorer built in to the Pocket PC Emulator.
Im running Visual Studio 2003.NET.
In my smart device project i added a web reference to this web service and
used the following very simple code. Just trying to get the first step into
the world of web services.
computer2.WebServiceHello ws = new computer2.WebServiceHello();
textBox1.Text = ws.HelloWorld();
and the error im getting is a System.Net.WebException with the following
message.
"Unable to connect to the remote server"
Now im puzzled what im doing wrong. Can anyone give me some ideas...
<Best regards>
//P