Activities of "selman"

hi Sure. But i want to say i used this methods before in another projects which created as N-Tier and it works excellent. And i tried new method for this repository methods so i moved UOW block then this method run. I don't understand point is that i used these methods without UOW block and it works but it doesn't work in this project. I shared a code block which throw error.

This code throw an error(Object Disposed Error):

var user = (await _identityUserService.GetAsync(item.CreatedUser));

And This Code Work Fine:

using (var uow = _uow.Begin(new AbpUnitOfWorkOptions(), requiresNew: true))
{
    var user = (await _identityUserService.GetAsync(item.CreatedUser));
    await uow.CompleteAsync();
}

Thanks for your support and interest.

hi I started get error after this code applied when try use repository which provides ABP so GetAsync, GetListAsync, FindAsync etc methods. I have an image for this error. This error doesn't occur when write and call my method in AppService and Repository. I am sharing image about error details. I am waiting your support and help.

I found source of error for about Account/Login Page 404. This reason is I navigate to Account/Login page in my ComponentBase in SetParameterAsync method. I wonder how can i navigate Login page in this place so MyComponentBase? I share an image which relation my 404 error in below. I am waiting your supports and helps. Thanks.

  • ABP Framework version: v8.0.4
  • UI Type: Blazor Server
  • Database System: EF Core (SQL Server
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
  • LeptonX: 3.0.3

Hi. I have couple problems with ABP. Firstly I get error 404 when try access https://....../Account/Login page but i access when i refresh with F5 or enter link without change link. I have a short video tihs problem. Secondly I get another error when try any exist link or page but mostly i get error which contains Reload message. This error doesn't always but it occurs mostly. And i have an image for this error. And lastly error about to CSS of pages. CSSs doesn't correctly load in sometimes. I shared resources which relation with errors in below:

I am waiting your supports and helps. Have a nice work.

Api crashes because of this error. For this reason, there is no other request.

Thank you for the answer. I have already created a self-signed certificate for internal uses, but when the API is initialized (sending a 'https://***/health-status' request to self) it gets the error "The remote certificate is invalid based on the verification procedure: RemoteCertificateNameMismatch". What is the error? When I tried to understand it, I realized it was like this: An error occurred because it was an untrusted certificate.

Hi,

We want to publish the application we developed. Internet access is not possible in the production environment of the application. With AuthServer, our API and Blazor project were developed separately from each other. Since ABP has to communicate via https. A locally generated certificate is always insecure.

I want to broadcast to the local network as https://xcompanylocalapp.com and allow users to access the application securely. (local domain DNS server etc.)

Therefore, what kind of structure should I build the application in the local environment?

  • ABP Framework version: v8.0
  • UI Type: Blazor Server
  • Database System: EF Core (SQL Server)
  • **Auth Server Separated (for Blazor): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
Showing 1 to 7 of 7 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11