I am very new to WCF. I want to send a SOAP request to a content service say \[code\]content.domain.com\[/code\] and receive response from the same. The WSDL for the Content Service can be seen at: \[code\]http://content.domain.com/ContentService?wsdl\[/code\]SOAP request will look like\[code\]<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:con="http://content.domain.com" xmlns:api="http://api.content.domain.com"><soapenv:Header /><soapenv:Body><con:get1><con:in0><api:AID>89575</api:AID><api:clientLoginID>abc</api:clientLoginID><api:domain>en</api:domain></con:in0></con:get1></soapenv:Body></soapenv:Envelope>\[/code\]There will be a xml response to this request which I need to parse and get the values from it. Someone will please guide me to achieve this through WCF.