Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8377307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:38:21+00:00 2026-06-09T15:38:21+00:00

My application is going to be receiving dump data continuously in the following manner:

  • 0

My application is going to be receiving dump data continuously in the following manner:

3c:73:3a:45:6e:76:65:6c:6f:70:65:20:78:6d:6c:6e:73:3a:73:3d:22:68:74:74:70:3a:2f:2f:73:63:68:65:6d:61:73:2e:78:6d:6c:73:6f:61:70:2e:6f:72:67:2f:73:6f:61:70:2f:65:6e:76:65:6c:6f:70:65:2f:22:3e:3c:73:3a:42:6f:64:79:20:78:6d:6c:6e:73:3a:78:73:69:3d:22:68:74:74:70:3a:2f:2f:77:77:77:2e:77:33:2e:6f:72:67:2f:32:30:30:31:2f:58:4d:4c:53:63:68:65:6d:61:2d:69:6e:73:74:61:6e:63:65:22:20:78:6d:6c:6e:73:3a:78:73:64:3d:22:68:74:74:70:3a:2f:2f:77:77:77:2e:77:33:2e:6f:72:67:2f:32:30:30:31:2f:58:4d:4c:53:63:68:65:6d:61:22:3e:3c:53:65:74:4e:61:74:69:6f:6e:61:6c:4c:69:73:74:20:78:6d:6c:6e:73:3d:22:68:74:74:70:3a:2f:2f:77:77:77:2e:6c:67:65:2e:63:6f:6d:2f:64:64:63:22:3e:3c:6e:61:74:69:6f:6e:61:6c:4c:69:73:74:3e:3c:70:6f:72:74:6e:75:6d:62:65:72:3e:36:30:30:30:3c:2f:70:6f:72:74:6e:75:6d:62:65:72:3e:3c:73:6c:61:76:65:61:64:64:72:65:73:73:3e:37:30:30:30:3c:2f:73:6c:61:76:65:61:64:64:72:65:73:73:3e:3c:66:6c:61:67:7a:6f:6e:65:3e:32:3c:2f:66:6c:61:67:7a:6f:6e:65:3e:3c:66:6c:61:67:69:6e:64:69:76:69:73:75:61:6c:3e:35:3c:2f:66:6c:61:67:69:6e:64:69:76:69:73:75:61:6c:3e:3c:66:6c:61:67:64:69:6d:6d:69:6e:67:3e:33:3c:2f:66:6c:61:67:64:69:6d:6d:69:6e:67:3e:3c:66:6c:61:67:70:61:74:74:65:72:6e:3e:36:3c:2f:66:6c:61:67:70:61:74:74:65:72:6e:3e:3c:66:6c:61:67:67:72:6f:75:70:3e:39:3c:2f:66:6c:61

Which is just ASCII code for

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SetNationalList xmlns="http://www.lge.com/ddc">
   <nationalList>
      <portnumber>6000</portnumber>
      <slaveaddress>7000</slaveaddress>
      <flagzone>2</flagzone>
      <flagindivisual>5</flagindivisual>
      <flagdimming>3</flagdimming>
      <flagpattern>6</flagpattern>
      <flaggroup>9</flaggroup>
    </nationalList>
</SetNationalList></s:Body></s:Envelope>

I basically need to get the values from portnumber,slaveaddress… flaggroup.

What is the best way to parse such a data in C#?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T15:38:23+00:00Added an answer on June 9, 2026 at 3:38 pm

    Well, this is basically an xml structure.
    Parse this xml structure in an XDocument object (http://msdn.microsoft.com/en-us/library/system.xml.linq.xdocument.aspx), and then do some query on it.

    Take a look at Linq to XML : http://msdn.microsoft.com/en-us/library/bb387098.aspx

    If you are not LINQ familiar, you can use something like XPath

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing an application which gets the data stream going to the printer
I am writing an application which is going to allows users to change the
I have an application which is going to be distributed to a hosting platform,
So I'm building an application that is going to do a ton of code
I have a web application which uses URLs that look like this: http://library.example.com/Register.aspx?query=academic&key=586c70bb-5683-419c-aae9-e596af9ab66a (The
I have written code for receiving WAP push messages in mms application. I am
I've got a C# application going that needs to send out an html email
How do I stop my application from going back when the user clicks on
In my application there are going to be lots of users, over 500. They
I have an application that is going to work like a p2p-software where all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.