|
Answer» Following are the different steps needed to get a PROXY object of a WEBSERVICE at the client side:
-Client communicates to UDDI node for webservice either through browser or UDDI’s public web service.
-UDDI node responds with a list of webservices.
-EVERY service listed by webservice has a URI pointing to DISCO or WSDL document.
-After parsing the DISCO document, we follow the URI for the WSDL document related to the webservice which we need.
-Client then parses the WSDL document and builds a proxy object which can communicate with Webservice. Following are the different steps needed to get a proxy object of a webservice at the client side:
-Client communicates to UDDI node for webservice either through browser or UDDI’s public web service.
-UDDI node responds with a list of webservices.
-Every service listed by webservice has a URI pointing to DISCO or WSDL document.
-After parsing the DISCO document, we follow the URI for the WSDL document related to the webservice which we need.
-Client then parses the WSDL document and builds a proxy object which can communicate with Webservice.
|