---
title: "Steps of acquiring a proxy object in web services."  
description: "Steps of acquiring a proxy object in web services."  
author: "Anonymous User"  
published: 2011-05-23  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/1002/steps-of-acquiring-a-proxy-object-in-web-services  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# 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.

## Answers

### Answer by Anonymous User

- 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.


---

Original Source: https://www.mindstick.com/interview/1002/steps-of-acquiring-a-proxy-object-in-web-services

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
