capture the second E2ETraceEvent of a svclog file










0















I need to find the tag 200 using the service trace viewer, it looks something like that!



<SOAP-ENV:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-14799">
<ns2:SendInvoice xmlns:ns2="http://www.zadrwan.com/services/" xmlns:ns3="http://www.zadrwan.com/services/DocumentSendTo" xmlns:ns4="http://www.zadrwan.com/services/VersionRequest">
<ns2:Response>200</ns2:Response>
<ns2:Comments>Success!.</ns2:Comments>
</ns2:SendInvoice>




when running the webservice does the Trace and writes an E2ETraceEvent the first one I don't need it, but the second one E2ETraceEvent (request) is the one I need and where is the



I found some code on this page monitoring-and-reading-svclog-file



my code is like this:



 XmlReader reader = XmlReader.Create(stream, settings);
while (reader.Read())


switch (reader.NodeType)

case XmlNodeType.Element:

if (reader.Name == "E2ETraceEvent")


XmlReader subReader = reader.ReadSubtree();

while (subReader.Read())

switch (reader.NodeType)

case XmlNodeType.Element:
while (reader.Name == "Body")

Console.WriteLine(subReader.ReadOuterXml());


break;




break;




how do i catch the second one, with the tag that contains n2 response ??










share|improve this question






















  • Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

    – jdweng
    Nov 13 '18 at 19:50











  • @jdweng you are right! but in this case I just put a portion of code por explanation

    – ger
    Nov 13 '18 at 20:03















0















I need to find the tag 200 using the service trace viewer, it looks something like that!



<SOAP-ENV:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-14799">
<ns2:SendInvoice xmlns:ns2="http://www.zadrwan.com/services/" xmlns:ns3="http://www.zadrwan.com/services/DocumentSendTo" xmlns:ns4="http://www.zadrwan.com/services/VersionRequest">
<ns2:Response>200</ns2:Response>
<ns2:Comments>Success!.</ns2:Comments>
</ns2:SendInvoice>




when running the webservice does the Trace and writes an E2ETraceEvent the first one I don't need it, but the second one E2ETraceEvent (request) is the one I need and where is the



I found some code on this page monitoring-and-reading-svclog-file



my code is like this:



 XmlReader reader = XmlReader.Create(stream, settings);
while (reader.Read())


switch (reader.NodeType)

case XmlNodeType.Element:

if (reader.Name == "E2ETraceEvent")


XmlReader subReader = reader.ReadSubtree();

while (subReader.Read())

switch (reader.NodeType)

case XmlNodeType.Element:
while (reader.Name == "Body")

Console.WriteLine(subReader.ReadOuterXml());


break;




break;




how do i catch the second one, with the tag that contains n2 response ??










share|improve this question






















  • Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

    – jdweng
    Nov 13 '18 at 19:50











  • @jdweng you are right! but in this case I just put a portion of code por explanation

    – ger
    Nov 13 '18 at 20:03













0












0








0








I need to find the tag 200 using the service trace viewer, it looks something like that!



<SOAP-ENV:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-14799">
<ns2:SendInvoice xmlns:ns2="http://www.zadrwan.com/services/" xmlns:ns3="http://www.zadrwan.com/services/DocumentSendTo" xmlns:ns4="http://www.zadrwan.com/services/VersionRequest">
<ns2:Response>200</ns2:Response>
<ns2:Comments>Success!.</ns2:Comments>
</ns2:SendInvoice>




when running the webservice does the Trace and writes an E2ETraceEvent the first one I don't need it, but the second one E2ETraceEvent (request) is the one I need and where is the



I found some code on this page monitoring-and-reading-svclog-file



my code is like this:



 XmlReader reader = XmlReader.Create(stream, settings);
while (reader.Read())


switch (reader.NodeType)

case XmlNodeType.Element:

if (reader.Name == "E2ETraceEvent")


XmlReader subReader = reader.ReadSubtree();

while (subReader.Read())

switch (reader.NodeType)

case XmlNodeType.Element:
while (reader.Name == "Body")

Console.WriteLine(subReader.ReadOuterXml());


break;




break;




how do i catch the second one, with the tag that contains n2 response ??










share|improve this question














I need to find the tag 200 using the service trace viewer, it looks something like that!



<SOAP-ENV:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-14799">
<ns2:SendInvoice xmlns:ns2="http://www.zadrwan.com/services/" xmlns:ns3="http://www.zadrwan.com/services/DocumentSendTo" xmlns:ns4="http://www.zadrwan.com/services/VersionRequest">
<ns2:Response>200</ns2:Response>
<ns2:Comments>Success!.</ns2:Comments>
</ns2:SendInvoice>




when running the webservice does the Trace and writes an E2ETraceEvent the first one I don't need it, but the second one E2ETraceEvent (request) is the one I need and where is the



I found some code on this page monitoring-and-reading-svclog-file



my code is like this:



 XmlReader reader = XmlReader.Create(stream, settings);
while (reader.Read())


switch (reader.NodeType)

case XmlNodeType.Element:

if (reader.Name == "E2ETraceEvent")


XmlReader subReader = reader.ReadSubtree();

while (subReader.Read())

switch (reader.NodeType)

case XmlNodeType.Element:
while (reader.Name == "Body")

Console.WriteLine(subReader.ReadOuterXml());


break;




break;




how do i catch the second one, with the tag that contains n2 response ??







c# xml trace






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 13 '18 at 15:07









gerger

233213




233213












  • Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

    – jdweng
    Nov 13 '18 at 19:50











  • @jdweng you are right! but in this case I just put a portion of code por explanation

    – ger
    Nov 13 '18 at 20:03

















  • Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

    – jdweng
    Nov 13 '18 at 19:50











  • @jdweng you are right! but in this case I just put a portion of code por explanation

    – ger
    Nov 13 '18 at 20:03
















Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

– jdweng
Nov 13 '18 at 19:50





Xml you need to get the entire file, otherwise, you will get an exception. The 200 Done is the results of an http (not xml) and it the final status of an http response. the code you posted can't work. You cannot use a XmlReader to get http.

– jdweng
Nov 13 '18 at 19:50













@jdweng you are right! but in this case I just put a portion of code por explanation

– ger
Nov 13 '18 at 20:03





@jdweng you are right! but in this case I just put a portion of code por explanation

– ger
Nov 13 '18 at 20:03












1 Answer
1






active

oldest

votes


















0














You need to add the namespace. Something like:



 using (XmlReader reader = XmlReader.Create(new StringReader(xml)))

XmlNamespaceManager nsmanager = new XmlNamespaceManager(reader.NameTable);
nsmanager.AddNamespace("ns2", "http://www.zadrwan.com/services/");

while (reader.Read())

switch (reader.Name)

case "ns2:Response":
Console.WriteLine(reader.Name);
Console.WriteLine(reader.ReadInnerXml());
break;








share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53283935%2fcapture-the-second-e2etraceevent-of-a-svclog-file%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You need to add the namespace. Something like:



     using (XmlReader reader = XmlReader.Create(new StringReader(xml)))

    XmlNamespaceManager nsmanager = new XmlNamespaceManager(reader.NameTable);
    nsmanager.AddNamespace("ns2", "http://www.zadrwan.com/services/");

    while (reader.Read())

    switch (reader.Name)

    case "ns2:Response":
    Console.WriteLine(reader.Name);
    Console.WriteLine(reader.ReadInnerXml());
    break;








    share|improve this answer





























      0














      You need to add the namespace. Something like:



       using (XmlReader reader = XmlReader.Create(new StringReader(xml)))

      XmlNamespaceManager nsmanager = new XmlNamespaceManager(reader.NameTable);
      nsmanager.AddNamespace("ns2", "http://www.zadrwan.com/services/");

      while (reader.Read())

      switch (reader.Name)

      case "ns2:Response":
      Console.WriteLine(reader.Name);
      Console.WriteLine(reader.ReadInnerXml());
      break;








      share|improve this answer



























        0












        0








        0







        You need to add the namespace. Something like:



         using (XmlReader reader = XmlReader.Create(new StringReader(xml)))

        XmlNamespaceManager nsmanager = new XmlNamespaceManager(reader.NameTable);
        nsmanager.AddNamespace("ns2", "http://www.zadrwan.com/services/");

        while (reader.Read())

        switch (reader.Name)

        case "ns2:Response":
        Console.WriteLine(reader.Name);
        Console.WriteLine(reader.ReadInnerXml());
        break;








        share|improve this answer















        You need to add the namespace. Something like:



         using (XmlReader reader = XmlReader.Create(new StringReader(xml)))

        XmlNamespaceManager nsmanager = new XmlNamespaceManager(reader.NameTable);
        nsmanager.AddNamespace("ns2", "http://www.zadrwan.com/services/");

        while (reader.Read())

        switch (reader.Name)

        case "ns2:Response":
        Console.WriteLine(reader.Name);
        Console.WriteLine(reader.ReadInnerXml());
        break;









        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 13 '18 at 18:03

























        answered Nov 13 '18 at 16:08









        PhilSPhilS

        53925




        53925





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53283935%2fcapture-the-second-e2etraceevent-of-a-svclog-file%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Use pre created SQLite database for Android project in kotlin

            Darth Vader #20

            Ondo