I am just wondering whether it is
possible to consume these web services
via, for example, a console
application?
certainly you can
Sample webservice
[WebService(Namespace = "http://localhost/MyWebService/")]
public class MyWebService : WebService
{
[WebMethod]
public int Add(int a, int b)
{
return a + b;
}
[WebMethod]
public String SayHello()
{
return "Hello World";
}
}
Here is how to consume
it from a console application
public static void Main(String[] args)
{
MyWebService service = new MyWebService ();
mySvc.SayHello();
mySvc.Add(2, 3).ToString();
}
see this article for detailed sample
.NET Web Services Tutorial