Xquery如何在服务器上运行

时间:2013-02-02 18:34:01

标签: xquery

我不确定Xquery如何在服务器上运行。我知道语法,但不知道如何为我的网站实现它。

例如。我有在XML文件中存储用户名和密码的站点。现在我想验证登录或注册的用户名和密码。

我该怎么做?我只是编写一个Xquery文件并上传到服务器然后调用它吗?

1 个答案:

答案 0 :(得分:1)

请在下面找到在Sausalito之上运行的基本身份验证模块的示例。

module namespace auth = "[project logical uri]lib/auth";

import module namespace base64 = "http://www.zorba-xquery.com/modules/converters/base64";

import module namespace req = "http://www.28msec.com/modules/http/request";
import module namespace res = "http://www.28msec.com/modules/http/response";

declare variable $auth:login := "login";
declare variable $auth:password := "password";

declare function auth:authorize() as empty-sequence()
{
 let $auth := "Basic " || string(base64:encode($html:login || ":" || $html:password)) eq  req:header-value("Authorization")
 return
  if(not($auth) and not($unprotected)) then
    error($res:unauthorized);
  else
    (); 
};