Hi,
I'm getting a 404 error when clicking on the link provided in you earlier post. Can you please check this on priority as we have a go live scheduled for this month end and this functionality is critical for us to go live.
Hi ,
When we are creating new edition, the entry related to edition information goes into only the Host Database. While when we try to upgrade the tenant to the required edition, system gives an error for the Foreign Key while entering the data into the AppSubscriptionPayments table. We found that since the edition information is not available in the tenant database, system gives this error. For now we have removed the foreign key from the AppSubscriptionPayments table and after that the system works well. Just want to know is this issue with the base platform or is there something that which we are doing wrongly.
Hi,
I have added a max length attribute to my DTO. However when I create an object of DTO and assign a string more than the permissible length, it does not give me error and the error is coming only when the object is getting committed in the database.
[Required]
[MaxLength(100)]
public string Description { get; set; }
Am I doing something wrong or it is a default behavior.
Thanks!!! This is exactly that we were looking for however for now we have used the demobuilder
Thanks!!! We are now using IFormFile
Thanks aaron...
Hi,
We are getting a following exception when trying to upload an excel file containing the records for import.
<ins>Could not create an instance of type 'SecuritySwitch.Abstractions.HttpPostedFileBase'. Model bound complex types must not be abstract or value types and must have a parameterless constructor.</ins>
We have enabled hangfire for the background processing and facing this issue in .Net Core 2.0.
We are facing an issue that the system throws timeout when seeding a tenant, in MVC 5.X we have specified the timeout in the Configuration class of the EntityFramework project
public Configuration()
{
AutomaticMigrationsEnabled = false;
ContextKey = "ManagementConsoleWeb";
CommandTimeout = 1000;
}
How can we achieve the same in the .Net Core 2.0.
Further I saw an API called /api/services/app/Account/IsTenantAvailable. Do I suppose to first get the TenantId by passing the TenantName in the above API and then further Authenticate by passing the TenantId?
Is there no such API similar to MVC5.X version that will ask me the TenantName, User and Password and returns me the Token that I can use in my subsequent APIs.
Regards, Mahendra
Hi,
In the MVC5.X version the Account/Authenticate API's parameter was TenantName, UserID and Password.
Recently we migrated to .Net Core With Jquery version. In this version we see that we need to pass the TenantID in the header in /api/TokenAuth/Authenticate function and then further in the subsequent API we need to pass the TenantID in the header.
We are bit confuse here. How the API consumer (In our case it is the mobile device running Mobile POS APP) will come to know the tenant id that he is supposed to pass in the header.
Please help us.
Regards, Mahendra