Example: Validating input XML file schema

A user wants to validate an input XML file. That user created an XML file named newusers.xml.

To complete this task, run the following QSHELL command line function:
arsxml validate -i newusers.xml
The file newusers.xml might look like this:
<?xml version="1.0" encoding="UTF-8"?>
<onDemand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user name="BILL" userType="User Admin"/>
<user name="ERIN" userType="User"/> 
<user name="BRIE" userType="User"/>
</onDemand>