30 lines
912 B
XML
30 lines
912 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!DOCTYPE authenticationClientFactory [
|
|
|
|
<!ELEMENT authenticationClientFactory (testAuthentication?,
|
|
webAuthentication?)>
|
|
|
|
<!ELEMENT testAuthentication (user) >
|
|
|
|
<!ELEMENT user EMPTY >
|
|
<!ATTLIST user login CDATA #REQUIRED >
|
|
<!ATTLIST user password CDATA #REQUIRED >
|
|
|
|
<!ELEMENT webAuthentication (location) >
|
|
|
|
<!ELEMENT location EMPTY >
|
|
<!ATTLIST location server CDATA #REQUIRED >
|
|
<!ATTLIST location port NMTOKEN #REQUIRED >
|
|
<!ATTLIST location path CDATA #REQUIRED >
|
|
|
|
]>
|
|
<authenticationClientFactory>
|
|
<testAuthentication>
|
|
<user login="root" password="q" />
|
|
</testAuthentication>
|
|
<webAuthentication>
|
|
<location server="localhost" port="80"
|
|
path="/storage/var/xmlrpc/xrLocStor.php" />
|
|
</webAuthentication>
|
|
</authenticationClientFactory>
|