Definitely! 🥳🥳
Hello,
We don't think about it anytime soon due to some compromises. But, if we find a method that scales better, we will do it.
If you want to implement something like this yourself, you can take inspiration from this article.
Hi, I see your question is the same as the question here. If not, please let me know.
Since Maliming explained the situation quite clearly, I believe you will solve the problem if we are talking about the same question.
Duplicate of https://support.abp.io/QA/Questions/1088/How-to-get-Api-token-using-client-secret-key
Hello, I don't think this question is related to ABP but still, there is some information I want to share with you ✌️
Firstly being wondering if this reduces resources utilization since my iis cpu and ram usage is high.
Unfortunately, I don't know much about the ISS.
Seems every time I run the project, a new recurring job is created , how can I avoid this ?
Hangfire methods allow calling with a delay. For instance:
BackgroundJob.Schedule(
() => Console.WriteLine("Hello, world"),
TimeSpan.FromDays(1));
See more: https://docs.hangfire.io/en/latest/background-methods/calling-methods-with-delay.html
Hi, this issue doesn't seem to be related to ABP but you should be able to do it similar to the code below.
PreConfigure<OpenIddictServerBuilder>(builder =>
{
builder.
... // In production, it is recommended to use two RSA certificates, one for encryption, one for signing.
.SetAccessTokenLifetime(TimeSpan.FromDays(365))
.SetIdentityTokenLifetime(TimeSpan.FromDays(365));
});
Thank you very much for the repeatable application. The problem is caused by a bug in 6.0.0
. This seems to have been resolved with this PR. So when we release 6.0.0
patch version (soon), the problem will be solved.
Thanks, I clone the repo, you can remove it for security reasons.
If the project is not private, you can create a new repository on GitHub or upload it to the cloud. If it is private, you can create a private repository on GitHub and add me.
https://github.com/berkansasmaz
I tried to reproduce the problem with the information you provided, but unfortunately, I was unsuccessful.
I then created a brand new v6.0.0 ABP solution and followed the blog thinking that I perhaps broke something in the upgrade. Unfortunately, it displays the same error.
Any chance of submitting this application as a minimal-reproducible application?
Closing the issue. Feel free to re-open or create a new issue if you have further questions.