Yes it is very possible. Remember SOAP is just an XML blob being past
from one point ot another. Are you building your own SOAP parser?
No, I'm using ASP.NET webservice (ASMX) to handle the SOAP requests,
but I cannot find how to retrieve XML attributes from the SOAP
requests, only nodes.
Keenan Newton - 15 Feb 2005 18:47 GMT
Well if it is returning an XmlNode object, there should be an
attributes collection for the XmlNode
Dilip Krishnan - 16 Feb 2005 05:05 GMT
Hello jcprince@gmail.com,
XmlAttribute is a type of xml node and each node has a property called
Attributes that is a collection of Xmlnodes
HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
http://www.geniant.com
> No, I'm using ASP.NET webservice (ASMX) to handle the SOAP requests,
> but I cannot find how to retrieve XML attributes from the SOAP
> requests, only nodes.