Okay, I understood your point. So, here's a scenario, I have the saas service, which already has few endpoints created by ABP. Now to add some new endpoints, I have created a new AppService called TenantOverrideAppService and similarly the interface for the app service ITenantOverrideAppService, as well the controller TenantOverrideController. Now I am trying to call that endpoint from the Blazor application and it throws the error that it can't find the specific endpoint. While if I use the existing endpoints provided by ABP for the Saas Service, it works. So, what's the configuration that I am missing here. Anything related to proxy? Please elaborate.
Any updates on this?
I have already configured the ocelot.json file
{
"ServiceKey": "Saas Service",
"DownstreamPathTemplate": "/api/saas/{everything}",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 44381
}
],
"UpstreamPathTemplate": "/api/saas/{everything}",
"UpstreamHttpMethod": [ "Put", "Delete", "Get", "Post" ]
},
but it still gives the same error.
You mean I have to configure the ocelot.json file right? Also, how is it different from the communication between the microservices?
Are there any plans of the datepicker/calendar in the Forms modules by ABP?
Do ABP support Datepicker/calendar in the forms module?
Hello, this is working fine. Can you tell me what exact configuration you did to make it work? So that I can keep track of it in future.
But I don't know how to configure the MVC, that's why I am asking you how do I configure that. Do I need to give any dependency of the Forms module anywhere in the blazor project? I am sending you my project via email, in the project I have blazor project named "blazor" in the apps folder, can you check the project and tell me exactly where I need to do the configuration? Thank you.
I am able to run the Swagger UI now, but how do I configure for the Blazor Server project, because there is not blazor project in the example you sent, do I have to look in the Public Web Project?