"afshar" <af****@discussions.microsoft.com> wrote in message
news:8D**********************************@microsof t.com...
Hi all,
Can I pass an XML document through Web Services instead of a simple
string?
afshar
ASP.NET generated web services only allow the XmlNode type to be used. You
can convert it back to an XmlDocument using XmlDocument.LoadXml(
xmlNode.OuterXml ) at each end if you really need to.
See this...
http://msdn.microsoft.com/library/de...ebServices.asp
Also, take a look at serialisation, it'll reduce the amount of time you have
to handle XML directly among other things.
HTH
Glenn