Base solution for your next web application

Activities of "john_kattenhorn"

Answer

We've been using Hangfire with ABP for a while now and it took a while to figure out the Castle Windsor issues but it works fine now.

We use it as a WebJob in Azure as we didn't want to affect the performance of App whilst the jobs was running but it's actually a Console App.

Let me know if you want us to share some code and I'll see what I can do.

Answer

We've been using Hangfire with ABP for a while now and it took a while to figure out the Castle Windsor issues but it works fine now.

We use it as a WebJob in Azure as we didn't want to affect the performance of App whilst the jobs was running.

Let me know if you want us to share some code and I'll see what I can do.

We had this working pretty well, you can see our implementation in this PR which you can find here :

<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/pull/57">https://github.com/aspnetzero/aspnet-zero/pull/57</a>

I PR'd this work into the github repo; you can find it here :

<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/pull/57">https://github.com/aspnetzero/aspnet-zero/pull/57</a>

Answer

We've been using Hangfire with ABP for a while now and it took a while to figure out the Castle Windsor issues but it works fine now.

We use it as a WebJob in Azure as we didn't want to affect the performance of App whilst the jobs was running.

Let me know if you want us to share some code and I'll see what I can do.

Hi,

I have the requirement to add a setting to enable on a per-tenant basis NewRelic DevOps integration. Part of this requires inserting a script into the layout page which I only want to insert if the setting is set in the Tenant Manager.

I think I've got most of the steps needed but I'm a little stuck as to how to make the settings manager available to the page in the same way as LocalisationManager is e.g. @L("")

Do I need to extend WebViewPageBase ? If so how could I inject the settings manager into it so I can do something like :

SettingManager.GetSettingValueForTenantAsync<bool>(AppSettings.DevOps.UseNewRelic, tenant.Id))

Any guidance would be most appreciated.

Hi,

It was more around the POST'ing of values back, we've found that if we display in UK Format then we cannot post back as the binder doesn't like the date due to the month being on the wrong place.

I've solved it for now but wanted to get some best practice advice really.

Thanks

John

Hi,

Before we had ASP.NET Zero we had to do this all ourselves, as a UK based company are date formats are different to most other places.

Is there anything in the framework to ease our pain for SPA and MPA or should we just use our own mix-and-match of workarounds ?

Thanks

John

Hi,

As you've probably seen from my previous posts elsewhere I needed to be able to login Externally using Azure Active Directory.

I've spent the day doing some research into the best way forward and having looked the implementation for Twitter / Facebook etc, I think I'm going to adopt this approach for WAAD.

I'll setup a feature branch now and implement there and then define a PR to see what you think.

Thanks

John

PS. It's none of my business but should the External login stuff back to Module-Zero as there are so many people looking for it.

Answer

I went with the conversion of the tenants to abstract and it worked a treat!

What is the right way to control navigation on the save and cancel, should I use $state.go ?

Thanks again!

John

Showing 1 to 10 of 14 entries