Activities of "zhongfang"

my blazor application is behined a Nginx veverse proxy.

In fact, all blazer pages get the same exception, include ABP built in CMS module.

[03:30:33 INF] Executing endpoint '/_Host'
[03:30:33 INF] Route matched with {page = "/_Host", action = "", controller = "", area = ""}. Executing page /_Host
[03:30:33 INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
[03:30:33 INF] Antiforgery token validation failed. The required antiforgery header value "RequestVerificationToken" is not present.
Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The required antiforgery header value "RequestVerificationToken" is not present.
   at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.ValidateRequestAsync(HttpContext httpContext)
   at Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.ValidateAntiforgeryTokenAuthorizationFilter.OnAuthorizationAsync(AuthorizationFilterContext context)
[03:30:33 INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.AutoValidateAntiforgeryTokenAuthorizationFilter'.
[03:30:33 INF] Executing StatusCodeResult, setting HTTP status code 400
  • Page.razor
@page "/line"
@using Yee.Erp2.Gitlab.Blazor.Shared

@foreach (ProjectConnector connector in connectors)
{
    <h3>@connector</h3>
    <ProjectFlow FirstProject="@connector.Project" NextProjectPath="@connector.DownstreamPath" SubPipelineTriggered="StarPipeline" />
}

@code {

    List<ProjectConnector> connectors = new List<ProjectConnector>();

    protected override async Task OnInitializedAsync()
    {
        await base.OnInitializedAsync();

        this.connectors.Add(new ProjectConnector()
        {
            DownstreamPath = "framework/third/topsdk"
        });
    }

    async void StarPipeline( ProjectDto current, string path)
    {
        this.connectors.Add(new ProjectConnector()
        {
            Project = current,
            DownstreamPath = path
        });

        this.StateHasChanged();
    }
}
  • ProjectFlow.razor
@using System.Text
@using System.Text.RegularExpressions
@inject IProjectAppService ProjectService

<Row>

    @foreach (ProjectDto project in projects)
    {
        <Column ColumnSize="ColumnSize.Is1">
            <Card>
                <CardHeader>
                    <Badge Color="Color.Primary" Pill>master</Badge>

                    <Badge Color="Color.Success">
                        <Tooltip Text="Confirmed">
                            <Icon Name="IconName.ArrowRight" aria-label="Confirmed" />
                        </Tooltip>
                    </Badge>

                </CardHeader>
                <CardBody>
                    @project.Name
                </CardBody>
                <CardFooter>
                    <a href="@string.Concat("https://gitlab.mycompany.com/", project.PathWithNamespace)" target="_blank">
                        打开
                    </a>
                </CardFooter>
            </Card>
        </Column>
    }
</Row>

@code {

    [Parameter]
    public ProjectDto? FirstProject { get; set; }

    [Parameter]
    public string? NextProjectPath { get; set; }

    public delegate void PathChangedHandler(ProjectDto current, string path);

    [Parameter]
    public PathChangedHandler SubPipelineTriggered { get; set; }

    List<ProjectDto> projects = new List<ProjectDto>();

    protected override async Task OnInitializedAsync()
    {
        await base.OnInitializedAsync();

        if (this.FirstProject != null)
        {
            this.projects.Add(FirstProject);
        }

        ProjectDto current = await this.ProjectService.GetProjectAsync(NextProjectPath);

        projects.Add(current);

        while (current != null)
        {

            List<ProjectDto> next = await this.GetNext(current.Id);

            if (next.Count > 0)
            {
                projects.Add(next.First());

                if (next.Count > 1)
                {
                    if (SubPipelineTriggered != null)
                    {
                        for (int i = 1; i < next.Count; i++)
                        {
                            await InvokeAsync(() => this.SubPipelineTriggered.Invoke(current, next[i].PathWithNamespace));
                        }
                    }
                }

                await InvokeAsync(() => this.StateHasChanged());

                current = next.FirstOrDefault();
            }
            else
            {
                current = null;
            }
        }

    }

    async Task<List<ProjectDto>> GetNext(int projectId)
    {
        string encodedContent = await this.ProjectService.GetGitlabCiYmlAsync(projectId);

        var decodedBytes = Convert.FromBase64String(encodedContent);
        var decodedContent = Encoding.UTF8.GetString(decodedBytes);

        List<ProjectDto> list = await this.Analyze(decodedContent);

        return list;
    }

    async Task<List<ProjectDto>> Analyze(string yamlContent)
    {
        List<string> projectPaths = new List<string>();

        // 使用正则表达式查找所有匹配项
        MatchCollection matches = Regex.Matches(yamlContent, @"^\s*project:\s*(\S.*)$", RegexOptions.Multiline);

        foreach (System.Text.RegularExpressions.Match match in matches)
        {
            projectPaths.Add(match.Groups[1].Value);
        }

        List<ProjectDto> result = new List<ProjectDto>();

        // 输出所有找到的项目路径
        foreach (string projectPath in projectPaths)
        {
            // Console.WriteLine("Extracted project path: " + projectPath);

            ProjectDto current = await this.ProjectService.GetProjectAsync(projectPath);

            if (current != null)
            {
                result.Add(current);
            }
        }

        return result;
    }

}

I must tell you that the problem is happened after I install Volt.Chat module.

in Visual Studio. the problem is the same as in Internet Server.

my HttpApi is very simple. I paste as below.

using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp;

namespace Yee.Erp2.Gitlab.Projects
{
    [Area(GitlabRemoteServiceConsts.ModuleName)]
    [RemoteService(Name = GitlabRemoteServiceConsts.RemoteServiceName)]
    [Route("api/gitlab/project")]
    public class ProjectController : GitlabController, IProjectAppService
    {
        private readonly IProjectAppService _gitlabRepositoryService;

        public ProjectController(IProjectAppService gitlabRepositoryService)
        {
            _gitlabRepositoryService = gitlabRepositoryService;
        }

        [HttpGet]
        [Route("id")]
        public virtual Task<string> GetGitlabCiYmlAsync(int repositoryId)
        {
            return this._gitlabRepositoryService.GetGitlabCiYmlAsync(repositoryId);
        }

        [HttpGet]
        [Route("list")]
        public virtual Task<List<ProjectDto>> GetProjectsListAsync()
        {
            return this._gitlabRepositoryService.GetProjectsListAsync();
        }

        [HttpGet]
        [Route("path")]
        public virtual Task<ProjectDto> GetProjectAsync(string path)
        {
            return this._gitlabRepositoryService.GetProjectAsync(path);
        }
    }
}

hi

Can you get the same exception on a new 8.0.5 template project?

It is very normal. I have created a new application with ABP Suite 8.0.5 just now.

Thanks! It has worked for my.

OH, i have "Reply to" noreply@abp.io.

I have sent again to liming.ma@volosoft.com just now.

I have sent mail to you. The mail includ a webtransfer short link.

Perhaps you can find in Junk box. I have sent successfully by qq mail. And I didn't receive a refund mail.,

Showing 31 to 40 of 136 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 08, 2025, 08:24
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.