Base solution for your next web application

Activities of "ismcagdas"

Hi,

Could you share ProxyExpenseAppService implementation and how you are calling it ?

Hi,

In your solution you can take a look at TenantRoleAndUserBuilder and its usage. It is called as shown below;

new TenantRoleAndUserBuilder(context, 1).Create();

Basically, you can get list of all tenants and execute the line above with the TenantId.

foreach(var tenant in tenants){
    new TenantRoleAndUserBuilder(context, tenant.Id).Create();
}

Hi @mdepouw

Redis cache basically acts as a database, so you don't have to configure anything else. All instances should get the latest value. Have you tried it ?

Hi,

If you are using an image tag, then you need to return File response from server. You can create a Controller and return File as shown below;

return File("LogUrl", mimeType);

Hi,

Could you describe the problem as well ? Do you get any value when you debug the line below ?

var file = await _binaryObjectManager.GetOrNullAsync(picture);

Hi,

Thanks. In that case, you can take a look at this blog post https://aspnetzero.com/blog/integrating-azure-active-directory-with-asp.net-zero.

This seems like a generic error and we couldn't figure out the error without looking at your code.

Hi,

Here is the message;

You were right, it doesn't work for the Index action but it works for ProxyToPHPServer. Is that enough for you or do you want us to investigate it deeper ?

Hi,

We are using NSWAG to generate proxies and it doesn't support an option to split service proxies at the moment. You can follow https://github.com/aspnetzero/aspnet-zero-core/issues/4955

Showing 1 to 10 of 12681 entries