HR-XML - Human Resources XML
The HR-XML Consortium is the only independent, non-profit, volunteer-led organization dedicated to the development and promotion of a standard suite of XML specifications to enable e-business and the automation of human resources-related data exchanges. Our Vision: To be the recognized community and leading provider of global HR interoperability standards. Our Mission: •To lead the ongoing development of robust, extensible, global HR interoperability standards enabling easy-to-implement, time- and cost-effective integration of business applications within the HR community. •To expand and engage the community to share experiences and expertise for the betterment of the community. •To collaborate with other identified standards organizations to ensure interoperability and business alignment.
NuGet Package ID | LiquidTechnologies.XmlObjects.HRXML3-0 |
---|---|
Description | An object model for the HR-XML - Human Resources XML 3.0 standard providing strongly typed classes that can be serialized/deserializsed to XML. |
Documentation | Liquid XML Objects API |
Schema Documentation | https://schemas.liquid-technologies.com/HR-XML/3.0/ |
Official Schema Site | http://www.hr-xml.org |
License | EULA |
Supported Platforms |
|
- Create a new Visual Studio Project
- Add a reference to the nuget package @myModel.NugetID
-
Create an LxSerializer<> for your root element
- If the root element in your XML document is 'MyRoot' then the object generated to represent it should be called 'MyRootElm'*1
- Hint - In Visual Studio placing the caret within the code LxSerializer<MyRootElm> and pressing Alt-Shift-F10 will give you the option to add the appropriate using statement.
- Use the LxSerializer to read in the XML Document using the Deserialize method
- Setting a break point after this line will allow you to explore the structure of the object in the visual studio watch windows.
- Use the LxSerializer to write in the XML Document back out using the Serialize method
LxSerializer<ExamplePersonElm> serializer = LxSerializer<ExamplePersonElm>(); // Reading an XML file ExamplePersonElm person = serializer.Deserialize("MyPersonData.xml"); foreach(ExampleFriendElm friend in person.Friends) { Console.Write("Name = " + friend.Name); } // Edit the objects ExampleFriendElm newFriend = new ExampleFriendElm(); newFriend.Name = "Joe Blogs"; person.Friends.Add(newFriend); // Write the new data out as XML serializer.Serialize("MyNewPersonData.xml", person);
Video Tutorial
This video tutorial demonstrates the basic usage of the XML Objects tool, showing how to generate code from an XSD, read an XML document into the object model, modify the data and write out the XML.