Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
On submitting the data delow to an API post method using the swagger interface the time zone (+12:00) information is stripped out and has converted it to 2021-06-21T12:00:00+00:00.
{ "dateTime":"2021-06-21T00:00:00+12:00", }
If I view the Audit Log I can see that the data is already altered to 2021-06-20T12:00:00+00:00.
This is having the effect of showing date controls getting confused and showing 2021-06-19
Our web servers are running on MS Azure Web apps
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
We are always being directed to detailed developer error messages and not the Custom error page. Web.config error setting is as below. Any suggestions as to why we are still getting detailed develoer error messages?
The errors in question are unhandled errors thrown by the API
<customErrors mode="On" defaultRedirect="Error"> </customErrors>
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi After upgrading from 7.1 to 8.8 we are getting a 500 error on the ExternalLogin method when using OpenIdConnect,
This is working fine with the 7.1 version using the same OpenIdConnect config. We are unable to locate any logging information or indication of what the error may be.
Help please
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hi,
Can you provide any guidance on WS02 SAML integration for identity services? Where to start or what materials to review?
Any help appreciated.
Cheers
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
hi,
We Need to integrate with a SAML V2.0 Authentication service. Can you recommend any approach or products that would help in this? The Service in question is https://developers.realme.govt.nz/
Thanks
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
After upgrading from 7.1 to 8.8 we are unable to get our xUnit test projects compiling. The solution itself builds and runs fine.
The error seems realted to missing the Abp.DynamicEntityParameters.IDynamicEntityParameterConfiguration. We have compared our test project against a fresh demo version of 8.8 and can find no differernce. Can you provide any pointers on where we can look?
` Syntaq.Falcon.Tests.Apps.AppJobsAppService_Tests.Should_Create_App_Job Source: AppJobsAppService_Tests.cs line 60 Duration: 1 ms
Message: System.MissingMethodException : Method not found: 'Abp.DynamicEntityParameters.IDynamicEntityParameterConfiguration Abp.Configuration.Startup.IAbpStartupConfiguration.get_DynamicEntityParameters()'. Stack Trace: FalconCoreModule.PreInitialize() <>c.
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
have follwed this tutorial at https://docs.aspnetzero.com/en/aspnet-core-mvc/latest/Features-Angular-Customizable-Dashboard
And am getting "There is no view configration for widget...." on clicking save from the popup dialog. (The widget is showing in the dialog). As there is a lot of code to share and I was hoping you could point me on the right track for me to investigate further rather than provide a full code sample which is going to be difficult on this forum
Cheers
Hi,
I am trying to creaste custom Audit Log entries from the Application API level. I have a custom Audit class as below. When I try to call and save to the Audit log no audit data si created and no errors are thrown / reported.
Any suggestions?
Sample Call to Audit Class
AuditInfo info = new AuditInfo()
{
BrowserInfo = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 Edg/86.0.622.38",
ClientIpAddress = "::1",
ClientName = "",
CustomData = "",
Exception = null,
MethodName = "GetAll",
Parameters = "{}",
ServiceName = "Syntaq.Web.Controllers.Forms",
TenantId = AbpSession.TenantId,
UserId = AbpSession.UserId
};
AuditSyntaqLogStore log = new AuditSyntaqLogStore(_auditLogRepository);
await log.SaveAsync(info);
Custom Class
public class AuditSyntaqLogStore : IAuditingStore, ITransientDependency
{
private readonly IIocResolver _iocResolver;
private readonly IRepository<AuditLog, long> _auditLogRepository;
/// <summary>
/// Creates a new <see cref="AuditingStore"/>.
/// </summary>
public AuditSyntaqLogStore(
IRepository<AuditLog, long> auditLogRepository
)
{
_auditLogRepository = auditLogRepository;
}
public void Save(AuditInfo auditInfo)
{
_auditLogRepository.Insert(AuditLog.CreateFromAuditInfo(auditInfo));
}
public virtual Task SaveAsync(AuditInfo auditInfo)
{
return _auditLogRepository.InsertAsync(AuditLog.CreateFromAuditInfo(auditInfo));
}
}
ProfileAppService.ChangePassword is logging the user out. The password is successfully changed. Any suggestions?
Him,
How do you get the Tenant Name in javascript?
Cheers