I am working with a company that posts data to my server and i am receiving the xml data this way :
using (StreamReader reader = new StreamReader(Request.InputStream))
{
String xmlData = reader.ReadToEnd();
XmlDocument doc = new XmlDocument();
doc.LoadXml(xmlData);
}
But now they need me to return a value to them.
Do i return a value by posting back like they posted to me ?
Or how does it work when i want to return a value for their post?
The value that should be returned is a string.
Project built in c#
To return any kind of string to your vendor, try something like this :
Specify whatever in “MyString” as per need.