I want to have a template for Blazor Web App when publish will output one for blazor and one for HttpApi.host included Auth Server, but with Layered template for Blazor Web App and check Tiered option it will create a solution template with separated auth server. I tried for Blazor Web Assembly it has option "Separate Authentication Server" if i don't check it will create solution template as expected with integration of Auth Server into HttpApi.host.
How can I do the same for Blazor Web App.
Option for Blazor Web App:
Option for Blazor Web Assembly:
Hi, I used this command to generate static proxy: abp generate-proxy -t csharp -u https://localhost:44366/ --without-contracts -m CoreBackend It ran with no error but some generated files cannot generate the correct method of endpoint, for example:
public virtual List<BankDto> GetExistingDataByField(string fieldName, string fieldValue, Guid docId)
{
//Client Proxy does not support the synchronization method, you should always use asynchronous methods as a best practice
throw new System.NotImplementedException();
}
Another question: can we just generate for some services or a specific service instead of generate for all?
Please find in the attached images I have enclosed sample files of application, contract and proxy files.
Hi ABP Team,
In my solution I have many blob storage with different provider (aws, azure, database...)
I'd like to build a page that can help to manage content of each blob storage using File Management. This page allow user to select which blob container to view the content and file management will show the content of selected blob. I tried to configure at runtime but it always get the default blob in database.
How we can apply the configuration to file management at runtime?
thanks,
Dharma
Hi, I have a loading problem with Blazor Application using Blazor Web App template. When you navigate within the same tab, only related component and data of opening page are loaded, but opening a page on a new tab triggers a complete application reload. How to prevent this reload when opening on new tab. Thanks, Dharma
thanks, Dharma
Hi,
I dev Blazor WebApp with v8.2 running well on development environment but when publishing to production running on nginx/ubuntu the error happened after clicked on Login button at Login Form.
The home page still show ok, then click on Login --> Login Form show ok, too--> Enter user name and pwd, click login --> error happened:
Link of Log file: https://drive.google.com/file/d/1bjEl2FtGVu6hYSlQj26jD9QznCYKLo7g/view?usp=sharing
Hi ABP Team,
I have customed to add permission at runtime and I can added to Permission Group and Permission Table but when open Permission on UI these added permission were not shown there.
Code to add new Permission Group and Permission:
Result:
Didn't see on UI of Permission Setting:
How can I implement a dynamic Permission Management that I can Add/Remove at runtime? Thanks, Dharma Han Nguyen
Hi ABP Team,
I have a problem with Chat module after upgraded to v8.2 and use new application template Blazor Web App.
My previous app I used Blazor Wasm template as the main solution in this main solution I installed Chat module. I have developed another module called Common, in this module I have added a Notification icon to toolbar follow the guideline from this: https://docs.abp.io/en/abp/latest/UI/Blazor/Toolbars, and I use SignalR to realtime update notification to show on this icon.. Then I integrated this module to Main Application, everything are ok.
Now I'd like to use new application template in v8.2: Blazor Web App so I created a new Main Solution with new template then I integrated Common module as I have done before but when run the Main Solution the Chat icon on Toolbar show during page loading but was disappeared after Common module loaded completely, and on the toolbar only see the Notification icon but didn't see Chat icon. I come to Setting to check the Chat feature was also disappeared here.
During loading page at beginning still can see Chat icon:
But after completing loading (included Common module) Chat was disappeared, only see the Notification I have implemented in Common module:
Go to Setting there is no Chat feature there:
Thanks, Dharma Han Nguyen