DNN 6模块-如何利用异步调用

本文关键字:何利用 异步 调用 模块 DNN | 更新日期: 2023-09-27 18:18:53

DotNetNuke 6似乎不支持WebMethods,因为模块被开发为用户控件,而不是aspx页面。

从DNN用户模块路由,调用和返回JSON到包含该模块的页面的推荐方法是什么?

DNN 6模块-如何利用异步调用

处理此问题的最佳方法似乎是自定义httphandler。我使用了Chris Hammonds文章中的示例作为基准。

一般的想法是你需要创建一个自定义HTTP处理程序:
<system.webServer>
  <handlers>
    <add name="DnnWebServicesGetHandler" verb="*" path="svc/*" type="Your.Namespace.Handler, YourAssembly" preCondition="integratedMode" />
  </handlers>
</system.webServer>

您还需要遗留处理程序配置:

<system.web>
  <httpHandlers>
    <add verb="*" path="svc/*" type="Your.Namespace.Handler, YourAssembly" />
  </httpHandlers>
</system.web>

处理程序本身非常简单。您使用请求url和参数来推断必要的逻辑。在本例中,我使用Json。. Net向客户端返回JSON数据。

public class Handler: IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        //because we're coming into a URL that isn't being handled by DNN we need to figure out the PortalId
        SetPortalId(context.Request);
        HttpResponse response = context.Response;
        response.ContentType = "application/json";
        string localPath = context.Request.Url.LocalPath;
        if (localPath.Contains("/svc/time"))
        {
            response.Write(JsonConvert.SerializeObject(DateTime.Now));
        }
    }
    public bool IsReusable
    {
        get { return true; }
    }
    ///<summary>
    /// Set the portalid, taking the current request and locating which portal is being called based on this request.
    /// </summary>
    /// <param name="request">request</param>
    private void SetPortalId(HttpRequest request)
    {
        string domainName = DotNetNuke.Common.Globals.GetDomainName(request, true);
        string portalAlias = domainName.Substring(0, domainName.IndexOf("/svc"));
        PortalAliasInfo pai = PortalSettings.GetPortalAliasInfo(portalAlias);
        if (pai != null)
        {
            PortalId = pai.PortalID;
        }
    }
    protected int PortalId { get; set; }
}

http://mydnnsite/svc/time的调用被正确处理,并返回包含当前时间的JSON。

是否有人通过此模块访问会话状态/更新用户信息的问题?我得到了工作的请求/响应,我可以访问DNN接口,但是,当我试图获得当前用户时,它返回null;因此无法验证访问角色。

//Always returns an element with null parameters; not giving current user
var currentUser = UserController.Instance.GetCurrentUserInfo();