Hi
Could you please create a new package and deploy it to a fresh directory within IIS
Hello vipulbuoyancy,
Can you please go through this link for generating logs https://github.com/dotnet/sdk/issues/7943
Hello vipulbuoyancy,
Can you please provide logs of Auth Server application and Have you created authserver.pfx file and placed it in published folder of AuthServer application ?
Hello DominaTang,
please check this https://docs.abp.io/en/abp/latest/Integration-Services#marking-an-application-service-as-integration-service
and go through this discussion https://github.com/abpframework/abp/issues/12470
regards,
Hi Anjali,
OK I am following these steps exactly as above but still getting the same result.
First of all to confirm, when you refer to the Host project, I am assuming that you mean the HttpApi.Host project? In my case ESv2.HttpApi.Host ( screenshot below ) ?
Second, after a dotnet clean / restore if I run abp bundle on the Blazor project I get an error as noted in a previous message on this chain. So I need to build the Blazor project first, then I can run abp bundle without any issues.
dotnet clean
dotnet restore
then third open Blazor project cmd and hit command abp bundle
if still you are getting error after abp bundle please check once whether you are getting that first error after running Blazor application or not?
I guess it should get resolved.
Hello mc86.
please try to add this code
context.Services.AddGrpc(options =>
{
options.MaxReceiveMessageSize = 10 * 1024 * 1024; // 10 MB
});
regards,
Hello BassaSolutions,
Please check this similar issue https://support.abp.io/QA/Questions/3281/Swagger-Authorisation--401-Response-instead-of-login-page-redirect#
Regards,
Hello Karim,
I know your project is a Blazor WASM project, but your Host project must be having node_modules and yarn.lock file.
You can delete that yarn.lock file instead of node_modules folder and run yarn
command in cmd of Host project.
dotnet clean
dotnet restore
abp bundle
dotnet build
and then dotnet run
Even if this doesn't help you try to update Leptonx version. Please check if any error occurs while firing above commands.
Regards,
Hi
Can you please check Routes section in ocelot.json file present in WebGateway
Host (Host name of deployed application) and Port
Check BaseUrl also - It should be your deployed Web gateway URL
Hello WilliamT,
please try to add the below code to add new menu item
context.Menu.AddItem(
new ApplicationMenuItem(demo5979Menus.Home,"My New Menu Item", "/My/NewMenuItem", icon: "fa fa-home"));