I have just started learning about Web Services. These are my understandings on a very high level based on whatever I have gone through:
1.The Service Provider/Server creates the WebService and the Service description (WSDL) is created which is published on the url/registry.
2.The Service Requestor/Client searches for the Web Service in the registry/url and obtains the WSDL which contains the binding informations
3.The Service Requestor uses this information to interact with the Service Provider using SOAP/HTTP, which invokes the Web Service.
I would like to know whether this is the basic architecture of web-services? If not, what is?