Menu

XML_in_NiCE

Scott Forest Hull II Dasha
There is a newer version of this page. You can find it here.

This section will discuss a prototype about implementing a plugin to allow the parsing and creation of XML files in NiCE.

The Reason

What type of Parser

XML Schema for Model Profile

Currently, the Model Profile and Simulator Profile will be shared. Here is a sample ps.app file from the previous version of NiCE 1.0

AppName=ps
ComputingPlatform=derp.derp.com
ExecutionString=ps cat ${MIP}
ProblemTypes=Show Running Processes
Show_Running_Processes_Option=All

This is a sample schema created using Eclipse XML Schema creator:

xmlns:tns="http://www.example.org/SimulatorModel" elementFormDefault="qualified">

   <complexType name="Model">

    <sequence>

        <element name="AppName" type="string"></element>

        <element name="ComputingPlatform" type="string"></element>

        <element name="ExecutionString" type="string"></element>

        <element name="ProblemTypes" type="string"></element>

        <element name="Show_Running_Processes_Option" type="string"></element>

    </sequence>

   </complexType>

</schema>

XML Schema for Simulator Profile

-Under Construction-