There is a way to make a webservice that returns a parameter of the type XElement?
Now I’m working with XmlNode return type, but I want to get rid of using this old xml library.
I’m using this:
XDocument doc = new XDocument();
XElement xml = new XElement("produtos");
doc.Add(xml);
//...
var xmlDoc = new XmlDocument();
using (var xmlReader = doc.CreateReader())
{
xmlDoc.Load(xmlReader);
}
return xmlDoc;
I can’t figure out why the webservice dont work with the XmlLinq lib
You should be able to do this: