0

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

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

我怎样才能做到这一点?我是否只是编写一个 Xquery 文件并上传到服务器然后调用它?

4

1 回答 1

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
    (); 
};
于 2013-02-03T16:25:40.410 回答