Activities of "maliming"

hi

What's your NuGet.Config ?

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    <add key="BlazoriseMyGet" value="https://www.myget.org/F/blazorise/api/v3/index.json" />
    <!-- {ABP_COMMERCIAL_NUGET_SOURCE} -->
  </packageSources>
</configuration>

The value 'send-email-user' is not valid for id.

I can't see why this causes this error, can you share a simple project?

Sending HTTP request POST "https://localhost:44325/api/userTask-service/task-managements/send-email-user?emailTo=srinivas.k%40exceego.com&emailBody=test&emailSubject=test&api-version=1.0" [INF] Received HTTP response headers after 2830.2244ms - 500

Can you share some code of this method? and DTO class.

hi

You should always persist the key to the database or redis, etc. If you use redis, make sure that the key is not cleared;

https://docs.identityserver.io/en/latest/topics/startup.html#key-material https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-5.0

hi

Try to add format: abp.localization.currentCulture.dateTimeFormat.shortDatePattern

    $dateRangePicker.datepicker({
        autoclose: true,
        language: abp.localization.currentCulture.cultureName,
        format: abp.localization.currentCulture.dateTimeFormat.shortDatePattern
    });

The value 'invite' is not valid for id The value 'send-email-user' is not valid for id

There is a problem with your request parameters. Can you share full logs?

hi

Yes, Can you try?

hi

It is not supported by default, you can add new methods to implement it, you can check the corresponding documentation for details.

https://docs.microsoft.com/en-us/dotnet/api/system.net.mail.mailmessage.attachments?view=net-5.0

http://www.mimekit.net/docs/html/Creating-Messages.htm

hi

The AuthenticationStateProvider is service of Blazor Server not of abp.

https://github.com/dotnet/aspnetcore/blob/release/5.0/src/Components/Server/src/DependencyInjection/ComponentServiceCollectionExtensions.cs#L80

You can inject it directly instead of creating a subclass of it.

return await Task.Run(() => _activeUsers.Values.ToList());

Use return Task.FromResult(_activeUsers.Values.ToList()); insteadof Task.Run

hi

Are you enable WebSockets of IIS?

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/websockets?view=aspnetcore-5.0#iisiis-express-support

Showing 7511 to 7520 of 8945 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 08, 2025, 14:09