Hi,
You can check it. It still works.
ok
Hi,
There is an example: https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver
Can you share the full logs?
Hi,
there is no IncomingEventInfo entity.
You may want to update the IncomingEventRecord
You can try:
protected IDbContextProvider<YourDbContext> DbContextProvider { get; }
internal async Task IncomingEventInfoMarkAsProcessed(IncomingEventInfo incomingEvent, InboxConfig inboxConfig)
{
.....
var dbContext = await DbContextProvider.GetDbContextAsync();
await dbContext.IncomingEvents.Where(x => x.Id == messageId).ExecuteUpdateAsync(....);
await eventInbox.MarkAsProcessedAsync(messageId);
}
Sorry, Unfortunately you need to wait for the next patch version
Hi,
I don't know much about your solution structure and user cases.
I would suggest that services not depend on each other, you can consider refactoring the structure.
I can't add the contract from Service 1 to Service 2. I tried to call my HttpClient from the Domain, but I can't check permissions and still have a 401 issue.
You need to add the current user's access_token to the request header
No,
If you want, you need to manually initialize Autocomplete
Here is the logic, you can check it.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js#L78