I am new in web development. I tried to consume http://www.webservicex.net/globalweather.asmx services in my web application using proxy class, But I don't have any idea how to do that? This services uses request response function.
Asked
Active
Viewed 2,300 times
2 Answers
0
Right Click References --> Add Service Reference and discover the service.
Use the link
Community
- 1
- 1
Nambirajan S
- 201
- 1
- 6
0
You can also generate a proxy class by using the wsdl utility. You can find the utility in your Microsoft SDKs directory e.g. C:\Program Files\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools (vary depending on .NET version)
Use command line wsdl http://www.webservicex.net/globalweather.asmx?WSDL in the directory to generate the proxy class.
Yong Xiang Low
- 36
- 3