Base solution for your next web application

Activities of "ryancyq"

Hi Tommy,

Can you show the request header and body used in postman?

Answer

If you are using MSSQL, you can troubleshoot it with this approach

<a class="postlink" href="https://stackoverflow.com/a/51223949/6856176">https://stackoverflow.com/a/51223949/6856176</a>

Answer

Can you show us the code of how you implement AppAuthenticate and AppTokenAuthController

Answer

Hi @jehadk,

Please override ConfigureClient as follow:

protected override void ConfigureClient(SmtpClient client)
{
    client.Connect(
        _smtpEmailSenderConfiguration.Host,
        _smtpEmailSenderConfiguration.Port,
        SecureSocketOptions.Auto
    );

    if (_smtpEmailSenderConfiguration.UseDefaultCredentials)
    {
        return;
    }

    client.Authenticate(
        _smtpEmailSenderConfiguration.UserName,
        _smtpEmailSenderConfiguration.Password
    );
}

As mentioned in [https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.MailKit/DefaultMailKitSmtpBuilder.cs#L35])

Hi @muleso,

Both Host and Tenant admin users are required to change password on next login.

As indicated in <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.EntityFrameworkCore/Migrations/Seed/Host/HostRoleAndUserCreator.cs#L55">https://github.com/aspnetzero/aspnet-ze ... tor.cs#L55</a> <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.EntityFrameworkCore/Migrations/Seed/Tenants/TenantRoleAndUserBuilder.cs#L63">https://github.com/aspnetzero/aspnet-ze ... der.cs#L63</a>

Answer

Hi @bobingham,

Can you try to remove [AbpAuthorize] and [DisableAuditing] for ExpirationHeartbeat() and check if it still being audited

Hi @feliw, which aspnetzero version and framework you used?

Also, which stage of the tutorial you were stuck in?

Answer

You can do something like this

MailMessage mail = new MailMessage
{
    Subject = "Subject",
    Body = "Message",
    IsBodyHtml = true
};

mail.Attachments.Add(new Attachment(stream, "invoice.pdf"));

await this._emailSender.SendAsync(mail);

Refer to <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/2442">https://github.com/aspnetboilerplate/as ... ssues/2442</a>

Hi @gowthamv

Can i check what is the value you used for the setting Abp.Zero.Ldap.ContextType?

Possible related to <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/3620">https://github.com/aspnetboilerplate/as ... ssues/3620</a>

Showing 1 to 10 of 573 entries