|
create a user library file
1) create xml-file
create a text-file and rename it to "myfile.xml". then open created file with any text-editor and add the following code:
2) add root-node
<?xml version="1.0" encoding="ISO-8859-1"?>
<userlib>
...
</userlib>

 | root-node must be lowercase and must be named "userlib" (name of tag will become name of library-token) |

 | attributes of root-node will be ignored |
3) add child-nodes
<?xml version="1.0" encoding="ISO-8859-1"?>
<userlib>
<user id="1" login="elfe89" password="4m590-33k2" ... />
<user id="2" ... />
<user id="3" ... />
</userlib>

 | all child nodes must be lowercase and must not be named like root node |

 | you may define any attributes for child-tags |

 | "id"-attribute of child nodes must be set and must be UNIQUE |

 | "login"-attribute of child nodes must be set |

 | "password"-attribute of child nodes must be set |

 | "group"-attribute of child nodes must be set if MpfXmlAccess-class is loaded |
|