I need to create and execute a C#.net client that consumes a web service (wsdl).
I have used the wsdl.exe
tool:
wsdl.exe /language:CS /out:c:\myTests\ http://localhost:8080/myTestService.wsdl
getting as output a .cs file that contains several methods but no main.
How do I create a client that invokes the remote method of the web service?