NET - Steps to configure discovery information for an XML web service

Explain the steps to configure discovery information for an XML web service.

The .disco file contains links to resources that define the specific XML web service. This allows discovery of the web service.
<?xml version="1.0" encoding="utf-8" ?>
<discovery xmlns:xsd=http://www.abc.org/2001/XMLSchema
    xmlns:xsi=http://www.abc.org/2001/XMLSchema-instance
    xmlns="http://schemas.xmlsoap.org/disco/">
<contractRef ref=http://www.abc.com/MyService.asmx?wsdl
        docRef=http://www.abc.com/MyService.asmx
        xmlns="http://schemas.xmlsoap.org/disco/scl/" />
    <soap address=http://www.abc.com/MyService.asmx
        xmlns:q1=http://tempuri.org/
        binding="q1:MyServiceSoap"
        xmlns="http://schemas.xmlsoap.org/disco/soap/" />
</discovery>
NET - Explain the steps to consume a web service in a client application
Explain the steps to consume a web service in a client application - Add a web reference to the application......
NET - Describe the steps to enable transactions in a web method
Describe the steps to enable transactions in a web method - You have to use TransactionOption property of the WebMethod attribute.......
NET - Explain the deployment features of the .NET Framework
Explain the deployment features of the .NET Framework - No-impact applications, Private components by default, Controlled code sharing, Side-by-side versioning, XCOPY deployment and replication, On-the-fly updates, Integration with the Microsoft Windows Installer, Enterprise deployment, Downloading and caching, Partially trusted code......
Post your comment