| Author: venkatesan 08 Oct 2009 | Member Level: Diamond | Rating:  Points: 2 |
you can check here
http://dotnetguts.blogspot.com/2007/09/all-about-web-service-in-net.html
Regards, M.Venkatesan. Dot Net Code Snippets
|
| Author: Arjune 08 Oct 2009 | Member Level: Gold | Rating:  Points: 2 |
WebServices are a set of Services or Application Logic exposed over Internet or Http Network by means of WebMethods. It is quite similar to any Method or Function in its coding Logic that you can have in a class library(or.dll). Except that Dlls are useful only inside the Machine whereas WebServices are exposed through Http Network to be consumed remotely by any number of clients
Kindly rate the answer if it is helpful
|
| Author: seema 08 Oct 2009 | Member Level: Gold | Rating:  Points: 2 |
http://www.w3schools.com/ngws/ngws_webservices.asp http://www.west-wind.com/presentations/dotnetwebservices/DotNetWebServices.asp
|
| Author: Kunal 08 Oct 2009 | Member Level: Gold | Rating:  Points: 2 |
Its a medium from which a system can call a web method. Also the output from the webservices is in xml format so it is platform independent i.e. any applications for eg java, .net or siebel can call the same webservice
Happy Programming Kunal Don't forget to rate the response...
|
| Author: Saroj Kumar Raut 14 Oct 2009 | Member Level: Silver | Rating:  Points: 2 |
It exposes a no. of methods, that provides functionality that can be used by any one or more language, regardless of the programming language. Web services use Internet standards such as HTTP and XML, to communicate with client application. There are 3 ways to call a Web Service, such as: - HTTP GET, HTTP POST and SOAP.
Use Web services when you need to send and receive data from different computing platforms and also for reusability purpose we can use webservice.
|