-getftrdef or getdef template: pers?clnt=<name|pass>&com=getftrdef&ftr=<ftr_pattern> Order of query params is not important. pattern : * | name[.*], where name is a path expression descript: selects all features matching the feature pattern and formats an XML answer with their names and def values. If no feature in DB matches the pattern, the result will not have any row elements (200 OK will still be returned). The results are sorted according to ascending feature name (a->z, 1->10). example : pers?clnt=name|pass&com=getftrdef&ftr=lang.* returns : 200 OK, 401 (fail, request error), 501 (fail, server error) 200 OK : in this case the response body is as follows <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="/resp_xsl/up_features.xsl"?> <result> <row><ftr>feature</ftr><defval>default value</defval></row> ... </result> comments: the reference to the xsl file allows to view results in a web browser. In case the response body is handled directly by an application and not by a browser, this reference to xsl can be ignored.