Base solution for your next web application

Activities of "m.aliozkaya"

Hi @junior1986

Could you try to reset your cookies and caches, and log in again?

Hi @mgc ,

We are working on it, we will try to give an answer as soon as possible

Hi @BarcodesGroup,

It's reported at https://github.com/aspnetzero/aspnet-zero-core/issues/4654

The temporary solution is here https://github.com/aspnetzero/aspnet-zero-core/issues/4654#issuecomment-1333954318

We will update Power Tools as soon as possible, until then you can solve your problem by using it like in this branch. https://github.com/murphymj5209/MorthoTest/tree/fix-powertools

Hi, @murphymj5209

I find the problem and it will be fixed asap. You can follow this issue https://github.com/aspnetzero/aspnet-zero-core/issues/4654

Hi @mgc

I tried to subscribe getChatMessage at signalr-chat hub. I can send and receive messages from Angular to Xamarin app. I hope this code helps to you.

    public async Task<bool> ConnectAsync()
    {
        ChatConnection.On<ChatMessageDto>("getChatMessage", (result) =>
        {
            Console.WriteLine("Helo");
            
        });

        try
        {
            if (ChatConnection.State == HubConnectionState.Connected)
            {
                return true;
            }

            if (_isConnecting)
            {
                return false;
            }

            _isConnecting = true;

            await ChatConnection.StartAsync();

            Console.WriteLine(@"Connected!");

            return true;
        }
        catch (Exception ex)
        {
            ExceptionHandler.LogException(ex);
            return false;
        }
        finally
        {
            _isConnecting = false;
        }
    }

    public async Task<bool> SendMessageAsync(string message)
    {
        if (!await ConnectAsync())
        {
            return false;
        }

        try
        {
            var messageData = new SendChatMessageInput
            {
                TenantId = 1,
                UserId = 2,
                Message = message,
            };

            var response = await ChatConnection.InvokeAsync<string>("SendMessage", messageData);

            if (string.IsNullOrEmpty(response))
            {
                Console.WriteLine(@"Message successfully sent!");
                return true;
            }

            Console.WriteLine(@"Message failed to send: " + response);
            return true;
        }
        catch (Exception ex)
        {
            ExceptionHandler.LogException(ex);
            return false;
        }
    }

Hi @elecosoftseservice

I followed this tutorial in fresh solution and same version but I couldn't reproduce it. May you have disabled the entity framework core tracking?

Hi @mark.montesa,

I can't migrate migrations to my local database. I have errors about same tables. Like AbpWebhookEvents table exists in your database.

Answer

Hi @mahendra

Maybe this page can help you, https://aspnetboilerplate.com/Pages/Documents/Webhook-System#publish-webhooks

Hi @shedspotter

Maybe this page can help you, https://aspnetboilerplate.com/Pages/Documents/Feature-Management#checking-features

Showing 251 to 260 of 276 entries