Wednesday, August 20, 2014

Explain when do we required ASP.NET web services.

ASP.NET web services are the great way to expose your middle tier components via internet. These components offer no issue communicating across firewalls as they use SOAP as transport protocols that transmit structured data using HTTP channel. Thus, message can be easily exchanged through port 80, i.e. through internet data port without being getting hampered by corporate firewalls or proxy server.
Web services can fit in the situation when we require integrating disparate systems written by separate vendors via internet. 

Web services are primarily being used for B2B integration like authorizing employees, supplier, electronically signing of invoice etc.

Related Posts:

  • Remoting.Net vs Web Services Both .Net Web services and .Net Remoting are Microsoft solutions for distributed application. Before choosing one of them for application development, let’s identify the differences between these technologies. Protocol .Ne… Read More
  • Deploying a Web Service Deploying the .Net Web Services is as simple as any ASP.NET application. Similar to ASP.NET applications, you need to copy or upload the .ASMX file and the .DISCO files to the appropriate directories, and that's it.  … Read More
  • Why do we need .Net Web Services? We have a number of heterogeneous technologies available on internet. The demand for reusable components across platforms and programming languages are high. Most of the components have the limitation that they can't share … Read More
  • Define the specifications that help in the discovery of a web service. DISCO DISCO, an abbreviation of discovery, is a file that groups together a list of related web services. A company that offers web services publishes a DISCO file on its server that has links of all the web services it pr… Read More
  • Explain the protocols a .Net Web Service uses. In .Net, a web service is bind with three different protocols such as HTTP/POST,  HTTP/GET, and SOAP. This allows client with three options to choose for  communication. The protocols are included in the WSD… Read More

0 comments:

Post a Comment