I am looking to create C# console application, which will use my desired webservice (http://localhost/MyService/MyService.asmx).
My Console application will consume above webservice and will call web methods inside it, I would prefer to pass the values from console window as arguments, say if there is web method from name "MyDetails", so from console application if I pass "admin" and its "password" then it will give the results on my console window.
For example if I try to run from console window as below:
run>> myconsoleservice.exe MyDetails admin password
Edit: I want to create console application which will consume my webservice and all the parameters to Web method will be passed from arguments.
Thanks.
Best Regards,