Related of this issue is it possobile to do that:
the idea is: appService.saveOrUpdate(data).then(function(data){ // OK code } ,function(error){ // Error code });
ok! Thks to @hikalkan suppurt finally service work and I'm able to send back notification to webapp.
Later I update my git hub project
var s1 = <span style="color:#BF0000">abp</span>.localization.localize('Actions'); title: <span style="color:#00BF00">app</span>.localize('Actions') => app is not defined
If you do not have define app
Notification Issue
after Backgroud job try to send a client notification not fire but notification will send to user and if after notification correctly send to user i refresh (fire F5) I see my bell with +1 notification.
Small Update.
After read (another time) documentation I set Job
public override void PreInitialize()
{
Configuration.BackgroundJobs.IsJobExecutionEnabled = false;
}
[http://www.aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers#disabling-job-execution])
So now I've only service registered on HF. I've re enable HF on startup & dashboard and I can see the HF dashboard my job work fine. At the moment Notification not work fine because I don't see any NotificationDistributionJob
I think probably you need to pass token to your method
can you share the excption?
I found a solution. I check in Tenant but is setted on edition!
if(!tenant.EditionId.HasValue)
continue;
var ed = _context.Editions.FirstOrDefault(t => t.Id == tenant.EditionId.Value);
var allFeature = _context.EditionFeatureSettings.Where(t=>t.EditionId == ed.Id).ToList();
for(....)
Are you using Abp or AbpZero?
I try and the list is empty (0 element).
i call my method from InitialHostDbBuilder