Activities of "nowayja"

Hi ABP gurus, starting from ABP Suite we generated a preview version with Blazor web assembly We have the latest visual studio 2022 preview with .net 6.0.100-rc.2.21505.57 The host starts fine but the browser hangs when running the web assembly We have tried debug and release modes running IIS and Kestrel but no luck. We get This Page Isn't Responding every time, whatever we do in both Edge and Chrome

We would love to get ahead of the curve and build our next soln in .net 6 but this is a blocker and I cant help thinking we are missing something obvious. (This has been tried on different machines by different developers with the same result)

ABP 4.3.3 Blazor WASM

We have a key client who host the ABP solution on Azure behind a proxy. Most urls are working correctly and set correctly in the IdentityServerClient tables. However Https:// ..... .well-known/openid-configuration is returning the forbidden URL of the Azure host rather than the poxy public facing address {"issuer":"https://restructed URL Behind the proxy ..... Rather than the correctly set URL in the database.

We are completely blocked from deploying because of this and looking at a short term hack of the identity server to get us live. It looks like the Identity server is using HttpContext.Request.Host rather than the database URL to set the URL values.

Do you have a simple way to override this with some kind of appsetings or DB setting.

Hope this makes sense, all other URLs are correct, just the Open ID ones are getting the server address behind the proxy rather than the public address.

ABP 4.3.0 Blazor

In other Blazor server projects I have used the following technique to communicate between background servces and the pages

https://dzone.com/articles/blazor-how-tos-status-from-a-background-task

An alternate to this would be sockets but I would prefer to use

@code{
    protected override void OnInitialized()
    {
        State.OnChangeAsync += Refresh;
    }
    private async Task Refresh()
    {
        await InvokeAsync(StateHasChanged);
    }
    public void Dispose()
    {
        State.OnChangeAsync -= Refresh;
    }
}

Do you know iif this approach will work with Blazor WASM or should I fallback to traditional SignalR sockets

Many thanks in advance

J

Question

Last time I logged this bug I was given a work around that broke other functionality. (increase the default page size from 10 to 300 :( ) The bug is thiis. When we have a navigation property with the UI set to dropdown I can only select from upto ten of the referenced entity

As you can see here, we need to be able to select other countries without having to HACK the autogenerated code

Question

This might be a noob problem. i am creating my first "module". So far so good but after I added an Entity "ProcAction" with abp suite, I cannot build the Blazot base, and bacause of that I cannot run update-database from package manager

Any tips appreciated

thx :)

Hi Team I suspect this is a noob question but I am blocked on an azure deployment

Swagger and Account/Login are working fine on one url https://a-----.azuresites.net Blazor is working fine on another url https://b-----.azuresites.net

I can login directly with https://a-----.azuresites.net/Account/Login

But I cannot login from blazor - i get

I get a same origin issue

and cors is set in appsettings "CorsOrigins": "https://*.azurewebsites.net,http://localhost:4200,https://localhost:44307"

Any clues would help (Should we be able to host both blazor ansd the APIs under one app url ? )

Also a humble request for deployment instructions particularly to Azure

Seems like we are close but something is not working.

thanks in advance

Hi ABP team,

firstly - huge repect, I highly recommend this framework to anyone who values high standards in .Net. We have happily renewed our commercial subscription and hope to do so for years to come.

There are a few lessons we have learnt from the Drupal community which maybe we can discuss over a coffee one day.... Perhaps the most useful was that Drupal provided a free Market Place for community members and freelancers to advertise their services.

From our perspective it would be very useful to be able to find developers and companies with a track record in ABP and so I would like to humbly request that you create a free market place where suppliers can promote themselves.

Apologies if this has been fixed or already pointed out

In blazor with the auto generated forms the dropdown list is trunctaed at 10 (we actually have circa 200 countries)

Apologies if this has been answered and I have missed it.

I created a project in 4.0 rc3 blazor with abp suite

It worked fairly well, but I have one entity with a lot of seeded data and the paging on the data grid does not work.

I was hoping an upgrade to 4.0.0 might fix the issue. I have done a save and regenerate, but still the paging does not work. The pager itself seems to work and retain state, but the datagrid does not refresh.

Any ideas apprecaited, many thanks

I would like to politely ask that during lockdown the developer machine count per user be increased to 3 machines.

Also abp logout should allow us to decommission a machine.

I now have desktop machines at home and office plus a laptop for working on the sofa. Increasing to 3 mchines would help?

Showing 1 to 10 of 13 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11