Hi maliming, Our version is 4.4.3,we are using HTTPS also we get this error after installing it on IIS. This is not the case in the developer environment.When we look at the Chrome console, we see that you clear the local storage when it redirects from API to angular.
Hi support,
We updated our project from version 3.3.1 to version 4.3.2. We used a class belonging to the File Management module in the project. We could not find this class in the new version.
CreateFileInput blobInput = new CreateFileInput
{
Content = input.Content,
DirectoryId = null,
Name = input.Name,
MimeType = input.MimeType
};
thanks mehmet.Awesome.
Hi @Mehmet, Thanks your answer.
How can we do without updating version?
Thanks.
Hi support,
Anyone have a suggestion?
but when I log in abp commercial with tenant, it appears directly.
How can we add the tenant name to a visible place. How can we show it without clicking the user picture?
Hi @alper, I create my report file with Datawizard as follows.
I did not transfer data to the report file I prepared using abp services. It will be nice if an article or document is published on your site.
namespace DevexpressReporting.Reporting
{
public class ReportingService:ITransientDependency
{
private IProductRepository _productAppService;
public ReportingService(IProductRepository productAppService)
{
_productAppService = productAppService; // for _productAppService (null variable occurs)
}
public List<Product> GetProducts()
{
return _productAppService.ToList();
}
}
public class CreateReport
{
private ReportingService _reportingService;
public CreateReport(ReportingService reportingService)
{
_reportingService = reportingService;
}
public List<Product> GetReport()
{
return _reportingService.GetProducts();
}
}
}
When I export GetProduct () in the ReportingService class as datasource, I get a Null reference error. It will be nice if a document is published for Angular and .Net core