Base solution for your next web application

Activities of "m.aliozkaya"

Hi @Bernard,

Could you check https://stackoverflow.com/questions/73886403/idw10502-an-msaluirequiredexception-was-thrown-due-to-a-challenge-for-the-user

Hi @razkhan78,

Run yarn create-bundles could resolve your problem.

Hi @WirelessDynamics,

Could you share Developer Console errors? Also, at which step does the error occur? Could you share the entity.json and the project version to help us detective the problem?

Hi @drutter1954,

One can be an image of the logo and an image of the icon. Could you check this?

If you cannot find the solution, we can see the solution more easily if you share your project with us. [email protected]

Answer

Hi @Bernard,

Could you remove following Nuget packages from MVC project?

<PackageReference Include="Elsa.Persistence.EntityFramework.Core" Version="2.14.1" /> <PackageReference Include="Elsa.Server.Authentication" Version="2.14.1" />

Hi @Bernard,

Could you update GraphEmailClient to following code

// Get initial page of messages
pagedMessages = await _graphServiceClient.Me.Messages
        .Request()
        .WithAuthenticationScheme("AzureAd")
        .Select(msg => new
        {
            msg.Subject,
            msg.BodyPreview,
            msg.ReceivedDateTime
        })
        .Top(top)
        .OrderBy("receivedDateTime desc")
        .GetAsync();

Hi @drutter1954,

If you see the finished line it means bundles are created and if you change any javascript files (for example _CreateOrEditUserModal.js) the script watches it and bundles it.

Could you share a screenshot?

Answer

Hi @Bernard,

It is related to layout error. You can set layout null as following code:

@{
    // var serverUrl = $"{Request.Scheme}://{Request.Host}";
    var serverUrl = "https://localhost:44302";
    Layout = null;
}

Hi @Bernard,

I reproduced the error. I will try to fix this. Thanks for your feedback

Hi @Bernard,

The reason why the mail page was not working was related to this and now the mail page should be working. I will take a look for js issues about Elsa.

Showing 221 to 230 of 400 entries