Activities of "kerem.kalemci"

Hi Everyone,

I have an issue about using automapper. I have two class named as ClassA and ClassB. ClassA has two field; Name,Surname . Also ClassB has three field; Name,Surname and Phone. When I want use automapper for ClassB => ClassA, I expect just fill Name and Surname in ClassA and work with successfully. But in this situation if I don't ignore the Phone field, I got error for non mapped fields. I just want map same fields. But my application is not start without ignore fields. Thanks from now.

  • ABP Framework version: v6.0.2
  • UI Type: Angular
  • Database System: EF Core (SQL Server)

Hi everyone,

I have an issue with postgreSQL. I got this issue "Sorry, the number of clients is soo many" sometimes when I started IIS or when I try reach to already started services. What can I do for this issue. Thanks for helps from now.

  • ABP Framework version: v6.0.2
  • UI Type: Angular
  • Database System: EF Core (PostgreSQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): No
    • Exception message and full stack trace:

  • ABP Framework version: v6.0.2
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): No

Hello everyone.

We have a micro service project that created by abp suite. We was added three different service project to this microservice project. And this service projects are feeding only one ui. Our goal is this service projects are convert a module template project with abp suite with easily. Our goal is separate their ui and after at all, we want make this uis to npm package and add to main ui. How can we do that, thanks from now.

Hello,

The ocelot's respective config:

{
  "ServiceKey": "Saas Service",
  "DownstreamPathTemplate": "/swagger/v1/swagger.json",
  "DownstreamScheme": "https",
  "DownstreamHostAndPorts": [
    {
      "Host": "testsaas.hitsoft.com.tr",
      "Port": 443
    }
  ],
  "UpstreamPathTemplate": "/testsaas.hitsoft.com.tr/{everything}",
  "UpstreamHttpMethod": [ "Put", "Delete", "Get", "Post" ]
},

When I choose SAAS from the swagger's dropdown, it complains 502 bad gateway. Auth, admin, identity works like a charm.

Question

Access to the path 'C:\Windows\system32\LogFiles\WMI\RtBackup' is denied.

This is the error message.

Hello,

Abp can't find the pfx file. It is at the root directory at the production.

The code is:

private X509Certificate2 GetSigningCertificate(IWebHostEnvironment hostingEnv, IConfiguration configuration)
{
    var fileName = "authserver.pfx";
    var passPhrase = "";
    var file = Path.Combine(hostingEnv.ContentRootPath, fileName);

    if (!File.Exists(file))
    {//
        throw new FileNotFoundException($"Signing Certificate couldn't found: {file}");
    }

    return new X509Certificate2(file, passPhrase);
}

Of course passPhrase is not empty.

Hi there.

Normally the command;

New-SelfSignedCertificate -subject *.hitsoft.com.tr -DNsName testsaas.hitsoft.com.tr -CertStoreLocation Cert:\LocalMachine\My -NotAfter (Get-Date).AddYears(10)

makes this work for the url testsaas.hitsoft.com.tr.

What is missing? We don't want let's encrypyt.

It complains : ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

Is there a code block where we setup the pfx file in abp already?

Hello,

I imported the certificate with the command:

New-SelfSignedCertificate -subject *.hitsoft.com.tr -DNsName testsaas.hitsoft.com.tr -CertStoreLocation Cert:\LocalMachine\My -NotAfter (Get-Date).AddYears(10)

It is in the trusted root

System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatchSystem.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

The url is testsaas.hitsoft.com.tr

DNS_PROBE_FINISHED_NXDOMAIN error occured now. There no logs although there is stdoutlog open in the web.config.

There is another problem in the copying of appsettings.json but I might take this into account after we solve this issue.

Showing 1 to 10 of 11 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13