Web services
As you described web services are software for machine-to-machine communication. I would only append that one of the main purpose of web services is interoperability = cross platform communication.
WSDL
WSDL stands for Web Services Description (or Definition) Language. It is XML based language which describes interface (contract) of the service.
SOAP
SOAP stands for Simple Object Access protocol. It is standardized interoperable protocol for machine-to-machine communication. In SOAP service you develop set of methods which allow you to execute code remotely. Only SOAP services can be described by first versions of WSDL. There are multiple types of SOAP web services. Multiple interoperable standards (WS-*) add additional features to SOAP services like message security, distributed transactions, reliable messaging, etc. SOAP can be used over different transport protocols but most common is SOAP over HTTP.
REST
REST stands for Representational Entity State Transfer. REST is not a protocol. It is development approach / philosophy. In REST services you have small set of methods and you use them to work with resources identified by URI. These methods are most commonly HTTP GET, POST, PUT and DELETE. REST services can only be described by WSDL 2.0 (the problem is that WSDL 2.0 is not yet supported by all platforms). Because of different nature of REST services, description is not needed and most of the time not used at all. REST services are used only over HTTP protocol.