Answer Posted / dilshad
Web services are a standardized way for one application to
invoke a method of another application. These applications
may reside on different computers that are some way
connected, such as by a local area network or, more
commonly, by the Internet. With Web services you have two
actors, a client and a server. The server makes some set of
methods available. These methods, when called, will perform
some action and/or return some data. The client invokes one
of the available methods of the server. Like methods in a
class library, the methods of a Web service can accept an
arbitrary number of input parameters, and can optionally
return a result. The Web services standard spells out in
great detail how a client can invoke a Web service method
from a server. The standard dictates how input parameters
and return values are passed from one computer to the
other, how faults are handled, and a myriad of other
complications.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Why is mvc better than asp.net?
What is advantage of code behind coding in ASP.NET?
What does ascx stand for?
What are the different types of sessions in asp.net?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
What are the layouts of ASP.NET Pages?
What are main return types supported in Web API?
What is postback and autopostback in asp.net?
What are the various session state management options provided by asp.net?
What is the difference between session and viewstate in asp.net?
IN an ASP.NET Web application if there is any error, how can you debug?
Can you set which type of comparison you want to perform by the comparevalidator control?
How do I publish my asp.net application to my isp's web server?
How do I open an ashx file?
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?