Reading xml document into XmlDocument object

Lnecuepxe

New Member
I have published xml document through web service like this\[code\]<WebMethod()> _Public Function HelloWorld() As XmlDocument Dim xmlDoc As New XmlDocument xmlDoc.Load(AppDomain.CurrentDomain.BaseDirectory & "\Product.xml") Return xmlDocEnd Function\[/code\]How do i read this Xml document into xmldocument object from other web service?
 
Back
Top