@deventerprise you are pointing out the worst side of zero.
Yes, you need to update all your templates even the ones made with RAD tool...
Going to v7 also means : removing all Jquery components Having color inconsistencies Font size issues ....
All that changes are not acceptable for my end users and this is why I decided to remain with old version... which is not a solution :(
@maliming : I just had to change extraCss option to false. The rest is the same as your screenshot
Hi,
I'm still having the same problem.
To identify the root cause, I've added a Logger trace on the method that sends notification... and I only got one log.
The method :
public async Task SchedulerNewInvoiceForecastCreatedAsync(int? tenantId, int invoiceForecastCount)
{
Logger.Warn("SchedulerNewInvoiceForecastCreatedAsync notification at " + DateTime.Now.ToString() + " : tenantId = " + tenantId.ToString());
var notificationData = new LocalizableMessageNotificationData(
new LocalizableString(
"SchedulerNewInvoiceForecastCreatedNotificationMessage",
LogisavConsts.LocalizationSourceName
)
);
notificationData["invoiceForecastCount"] = invoiceForecastCount;
await _notificationPublisher.PublishAsync(AppNotificationNames.SchedulerNewInvoiceForecastCreated, notificationData, severity: NotificationSeverity.Success, tenantIds: new[] { tenantId });
}
The log
INFO 2019-07-26 01:09:06,776 [49 ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 10.5639ms 200 text/html
WARN 2019-07-26 01:09:58,191 [28 ] N_SOFT.Logisav.Notifications.AppNotifier - SchedulerNewInvoiceForecastCreatedAsync notification at 7/26/2019 1:09:58 AM : tenantId = 15
INFO 2019-07-26 01:11:02,942 [50 ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://----------------.com/account/login
As you can see, all tenant users have duplicated entries in AbpUserNotifications.
dedicated issue created : https://github.com/tmenier/Flurl/issues/453
Hi, I'm getting same issue from a fresh new Xamarin Forms project on VS 2019 with Flurl... no issue when trying with VS 2017 !
Tks for your answers, I've choosen the mapping option. As I was on domain layer, I didn't had access to DTOs. Therefore, I've created an objet that inherits from the entity I wanted to convert and that works.
Tks @maliming. I found the issue, xml files have to be setted as "embedded ressource" instead of none. My bad.
Hi @ismcagdas,
In fact, DowmloadTempFile has changed but output is always the same. Yes, result.FileName contains the file extension.
I've made another test by trying to open the url from embedded webbrowser (in this case, it is chrome on android emulator). File is downloaded and can be opened.
The problem cames from file type which is always set to application/octet-stream
as default MIME type on server side.
It is not a problem when client app is running on a webbrowser (webbrowser automatically converts file type relatively to the file extension). But it is a problem for a Xamarin app.
I will change DowmloadTempFile controller to manage MIME type according to file extension and avoid this issue on xamarin side.
I will keep you informed if this change as not fixed the issue.
Tks @maliming for this great article. It is a part of the puzzle :)
I would also like to automate angular app build process like it is in the powershel script "build-with-ng.ps1" provided with the asp zero template.
I didn't found any documentation on how to use "build-with-ng.ps" script
OK, got it. Tks @alper