Hi,
Password Eye icon disappears all the time can you help me how to resolve it
As far as I remember this was a problem with the old version, if you upgrade to the next patch version your problem will be solved. See: https://abp.io/support/questions/6681/Show-Password-not-working-in-v803
Hello,
You can complete this process automatically using ABP Studio. I’ve tried to walk you through the steps to convert an open-source project to Pro.
Basically, all you need to do is use the “Upgrade to Pro” feature in ABP Studio — it handles the rest for you.
1-)
2-)
3-)
4-)
5-)
Related document: https://abp.io/docs/9.2/guides/migrating-from-open-source
In one of app micro service, we are going to change from Mongo Db to Azure Cosmos DB to use COSMOS Db's encryption feature.
Hello, I don't have much experience with CosmosDB, but there is a sample application on this subject.
https://github.com/abpframework/abp-samples/tree/dc803d90f7335fdc7427a26b487e5b9d95de30b0/CosmosDBSample#how-to-use-cosmos-db-in-abp
Have you seen this before, and will it work for you?
In order to reproduce your question, I created a project in the following configuration and sent a request to the HttpApi.Host project.
I updated appsettings.json as follows:
Since you created a tiered application, so did I, and therefore the following CORS setting is already available in HttpApiHost's module:
Result:
Can you control them in your case? Also, can you share the logs of your application (log.txt) located under the Logs folder?
Hi,
If you're implementing a distributed event handler like this:
public class RecurringJobCreatedOrUpdatedEventHandler
: IDistributedEventHandler, ITransientDependency
It won’t work because IDistributedEventHandler must be generic. You need to specify the event type it handles, like this:
public class RecurringJobCreatedOrUpdatedEventHandler
: IDistributedEventHandler<RecurringJobCreatedOrUpdatedEto>, ITransientDependency
Also, make sure your Web module depends on AbpEventBusRabbitMqModule. Otherwise, the event bus infrastructure won't be properly initialized, and your event handler won’t get triggered even if the event is published successfully. See: https://abp.io/docs/latest/framework/infrastructure/event-bus/distributed/rabbitmq#installation
Hi,
Thanks to the information you provided, I was able to reproduce the problem. The problem does not occur in the Application Layered template, but in the Microservice solution, so I could not reproduce it the first time. I will create an internal issue, and we will keep you informed about the progress. Thank you for your patience.
Hi,
Would you consider to use RabbitMQ or HangFire provider for background jobs? It is possible to process messages in parallel with them. See: https://github.com/abpframework/abp/issues/5217 and https://abp.io/docs/latest/framework/infrastructure/background-jobs/hangfire
Hi
To understand the problem better, could you please try creating a new ABP solution (with the same version and configration), and test if the same issue happens when Redis is enabled?
This will help us see if the problem is in your current project or something more general.
Hi,
Can you share the logs of your application (log.txt) located under Logs folder to make sure it's a CORS error.