ASP.NET - Explain the steps of acquiring a proxy object in web services.

Explain the steps of acquiring a proxy object in web services.

- Client communicates to UDI node to retrieve a list of available web services that the client has access to.
- Every service listed has a URI pointing to the service's DISCO or WSDL document, which is needed to access the webservice and its 'webmethod" methods.
- After interpreting the DISCO document, follow the URI for the WSDL document related to the chosen webservice.
- Client then adds and parses the WSDL document and creates a proxy object which can then communicate with Webservice and access its "webmethod" methods.
ASP.NET - Explain the steps to create a web services and consume it.
Steps to create and consume a webservice - create a new website by selecting ASP.NET Web Site and giving it a suitable name...
Difference between cache object and application object - ASP.NET
Difference between cache object and application object - Application variable/object stores an Object with a scope of availability...
What is Cache Callback in Cache? - ASP.NET
What is Cache Callback in Cache? - The cache object has dependencies e.g. relationships to the file it stores..
Post your comment