Search results for query: *

  • Users: whiteadi
  • Content: Threads
  • Order by date
  1. whiteadi

    Question How to get nested complexType parameters for an operation from a SOAP wsdl?

    Having an WSDL and given one operation offered by it I want to parse it and fetch the input parameters for that operation, this example works for me only when there are no nested complex types: How to parse an xsd file which has nested elements(complexType and simpleType elements and...
  2. whiteadi

    Resolved how to parse generic XML envelope and get all nodes values(inner text) separated (not concatenated)

    I want to parse ANY SOAP response XML, usually if I have a string xml with response, strXML, and I would do this: XmlDocument doc = new XmlDocument(); doc.LoadXml(strXML); String str = doc.InnerText; return str; I would get the values of all nodes, the text, but concatenated. I...
Back
Top Bottom