I'm new to WCF
I have to create a WCF service that receives plain XML (not SOAP), does some processing then sends a reply message back in plain XML. I don't have a problem sending XML, I just need some tips on where to start. I'm familiar with creating web services in .Net with SOAP... with web services I would define the function to be called based on the SOAP request.
If I send plain XML to a WCF service (without defining a particular function like I do with SOAP)... what function does it hit? I need to set this up so all XML requests sent to my WCF hit a particular function... but how? Are they any good examples out there to do simply that? (I googled for links to receive plain XML in WCF, but didn't find anything for a beginner to WCF)