Our application uses the AbpHub for establishing a SignalR connecdtion with the FE. Behind a corporate firewall, the websockets transport layer is often blocked. The expectation is that SignalR should fallback to a different transport type (ServerSentEvents or LongPolling) however this does not seem to be the case
Using a minimal asp.net core application, the fallback mechanism works. However using a minimal ABP framework project the fallback does not work. Let me know if you need a sample projedt.
Thanks
Thanks so much. I think i've got all the info i need now. as mentioend earlier, we'll raise another ticket on the angular support https://abp.io/qa/questions/8404/3a169e3e-9f81-d082-1017-310a3927bd1e or if you could help get any details on that would be great
Thank you,
Meaning that G provider will apply to all tenants unless overwritten on a T level
This part should be working the same for the cli as well. Can you please share the related package.json that has been generated for the gdpr project? May I also know your cli version?
My main project is on abp 8.x.x. Maybe that's why. Is there a way to download the old gdpr versions?
I'm on ABP CLI 8.3.2
this is the package.json for the code generated:
{ "name": "@volo/abp.ng.gdpr", "version": "9.0.1", "dependencies": { "@abp/ng.components": "~9.0.1", "@abp/ng.theme.shared": "~9.0.1", "@volo/abp.commercial.ng.ui": "^9.0.1", "tslib": "^2.3.0" }, "publishConfig": { "access": "public" }, "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/volosoft/volo.git" }, "license": "LGPL-3.0", "keywords": [ "aspnetcore", "boilerplate", "framework", "web", "best-practices", "angular", "maui", "blazor", "mvc", "csharp", "webapp" ] }
Hello, this part has been refactored and fixed in the next version being 9.0 with this PR https://github.com/abpframework/abp/pull/21197
Thanks for the reply, so when is the refactored version available on the abp cli?
Hi i've downloaded the angular gdpr source code using abp get-source Volo.Abp.Gdpr
However am facing some issues on the extensions.resolver.ts file
Hi
Are you able to point me to the source code for controller method for settings/oauth? I assume inside the controller method it would call some service like settingsProvider.setAsync('Llm.Url', newValue) but i might be mistaken
Hi
I noted that setting provider does not have setter methods (https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/ISettingProvider.cs)
What service can i use to set the values of the setting? Thank you