Skip to content

Parse Ericsson Mobile Network Dump file in XML format and work with data the way you like

Notifications You must be signed in to change notification settings

ruboarm/Ericsson-XML-Dump-Parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Ericsson-XML-Dump-Parser

Via the Parser it's possible to read Ericsson Mobile network Dump file exported in XML format and make it possible to extract needed data and work with it.

Important: Currently only LTE part is ready!!!

A sample XML file is included in the repository for test purposes.

Sample Usage

// Open XML file from local PC
var openFileDialog = new OpenFileDialog();
var filename = openFileDialog.GetFileName();

// If XML file is selected then Serialize it
if (filename != "")
{
    // Open file strem to read the selected file
    using (var fileStream = new FileStream(filename, FileMode.Open))
    {
        // Deserialize XML file
        var xmlDocument = Serialization.DeserializeXML(fileStream);

        // Example of getting data
        var lte = xmlDocument.configData.SubNetwork.SubNetworks.FirstOrDefault(n => n.Id == "LTE");
    }
}

About

Parse Ericsson Mobile Network Dump file in XML format and work with data the way you like

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages