Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "admin@SYNTAQ"

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 8.8
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .net Core

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

Question

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 8.8
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .Net Core

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>

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 8.8
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .net core

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

Question

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version?
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .Net Core

If issue related with ABP Framework

  • What is ABP Framework version? ASPNETZERO 8.8

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

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 8.8
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .net Core

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

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? 7.1 => 8.8 upgrade issue
  • What is your product type (Angular or MVC)? > MVC
  • What is product framework type (.net framework or .net core)? .Net Core 2.1 => 3.1

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.

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? ASPNET Zero 9.2
  • What is your product type (Angular or MVC)? MVC
  • What is product framework type (.net framework or .net core)? .Net Core 3.1

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

Prerequisites

  • Ver 8.8
  • MVC
  • .net Core 3.1

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

Showing 11 to 20 of 31 entries