Search results for query: *

  1. whiteadi

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

    Hi, I have added a few lines to OutputElements, see highligted ones (21-26): private static List<Tuple<string, string, string>> OutputElements(XmlSchemaParticle particle, string parentName) { List<Tuple<string, string, string>> parameters = new List<Tuple<string, string, string>>()...
  2. whiteadi

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

    But that is what the code getParams should do,. just that it doesn't, that is the problem.
  3. whiteadi

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

    HelloRequest has also a child element called Name that is not a complex element but I do need ALL the input parameters of the request to be made so then I can compose the envelope with the values that the sub created method for this operation will be caleld with, for exampel something like...
  4. whiteadi

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

    when I call getParams for SayHello it displays on command line: first debug from line 49 (in code of previous comment ;)), second from line 70 and last one from line 138 of OutputElements function. I also tried a to get the complexType, in this case HelloRequest, when there at line 139 is not...
  5. whiteadi

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

    public TheClient(string url) { wsdlUrl = url; ReadServiceDescription(); ServiceName = theService.Name; } ... void ReadServiceDescription() { try { XmlTextReader reader=new XmlTextReader (wsdlUrl)...
  6. 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...
  7. 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