I have created a WCF service in which I have created the following method
public List<AddTravelDetails> ReadXML(XmlDocument xDoc)
Now I want to consume the service.
Can anyone help me? How can I pass XmlDocument as input parameter for the ReadXML function?
Thanks, Rahul
stringparameter and create theXmlDocumentinside the service method with that string as input.