Parsing XML stream in ASP.NET 3.5
Posted
by Ranjit
on Stack Overflow
See other posts from Stack Overflow
or by Ranjit
Published on 2010-05-04T02:25:02Z
Indexed on
2010/05/04
2:28 UTC
Read the original article
Hit count: 286
Hi All, I am trying to build an ASP.NET 3.5 application based on XML streams from a legacy systems. My issue is once I get the XML I have to built menus and sub menus from the XML as well filter data(XML stream) based on the menu selection without making roundtrip to the Data store(legacy system).
Right now I have a DAL which will get the XML stream in the form of XDocument.I was able to built the first level Menu Items, but not the sub Menu Items based on the selection in the Main Menu and then the final content based on the sub menu selection, all this without making a round trip. Is there a way to do this in-memory. Please suggest.
thank you. Ranjit
© Stack Overflow or respective owner