Base solution for your next web application

Activities of "feryat.olcay"

Question

Hi,

I need to access the GitHub repo (https://github.com/aspnetzero/aspnet-zero-core).

Can you give me access to the GitHub repo?

My colleague (https://github.com/Yekbun) already has access to the GitHub repo, but I need access as well. (https://github.com/erguntoprak)

What is your product version? 11.0.0

What is your product type (Angular or MVC)? Angular

What is product framework type (.net framework or .net core)? .net core

Hi,

How to enable two factor authentication with email for tenant.

Hi,

We got the following error.

"System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters."

When we debugged our project, we realized that the token was not valid. First, we got the encrypted token, and then we needed to encode it for the SignalR URL.

Code :

                ServicePointManager.ServerCertificateValidationCallback = ValidateServerCertificate;
                var token = await _zenoApi.GetTokenAsync(true);
                var tokenEncode = System.Web.HttpUtility.UrlEncode(token);
                
                HubConnection connection = new HubConnectionBuilder()
               .WithUrl($"{_options.ZenoURL}signalr-data-collector?enc_auth_token={tokenEncode}")
               .WithAutomaticReconnect()
               .Build();

               await connection.StartAsync();

            

It's working now :) Thanks for your feedback.

Hi,

Yes, we tried with "https" and it is working with below code block on localhost. But, it is NOT working on IIS Server.

                ServicePointManager.ServerCertificateValidationCallback = ValidateServerCertificate;
                var token = await ZenoService.GetTokenAsync();   
                HubConnection connection = new HubConnectionBuilder()
               .WithUrl($"{_signalrUrl}?enc_auth_token={token}")
               .WithAutomaticReconnect()
               .Build();

                await connection.StartAsync();
                .
                .
                .

static bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; }

Is there any specific control SignalR IIS Server.

Hi,

Prerequisites What is your product version? 11.3.0

What is your product type (Angular or MVC)? Angular

What is product framework type (.net framework or .net core)? .NET Core

We got the same error. In our scenario, we want to connect to the API with SignalR from a console application. We do not get any problems on local with Angular app and console app. When we deploy the API to IIS, we get the following error after run the Console App. Do you have a suggestion?

"AspNetCore.Server.IIS.Core.IISHttpServer - Connection ID "17582052955455006947", Request ID "8000a8e4-0002-f400-b63f-84710c7967bb": An unhandled exception was thrown by the application. System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters."

Thank you for your support.

Hi,

Prerequisites What is your product version? 11.3.0

What is your product type (Angular or MVC)? Angular

What is product framework type (.net framework or .net core)? .NET Core

We got the same error. In our scenario, we want to connect to the API with SignalR from a console application. We do not get any problems on local with Angular app and console app. When we deploy the API to IIS, we get the following error after run the Console App. Do you have a suggestion?

"AspNetCore.Server.IIS.Core.IISHttpServer - Connection ID "17582052955455006947", Request ID "8000a8e4-0002-f400-b63f-84710c7967bb": An unhandled exception was thrown by the application. System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters."

Thank you for your support.

Hi,

We are interested in implementing a ChatHub-like structure within SignalR. Our clients currently utilize Web Services and .Net 4.7.2. However, when attempting to establish a websocket connection similar to ChatHub, we encounter the following error. Could you kindly provide any suggestions or recommendations to resolve this issue?

Error : "Only 'http' and 'https' schemes are allowed. Parameter name: requestUri"

Simple code : HubConnection connection = new HubConnectionBuilder() .WithUrl($"wss://localhost:44301/signalr-data-collector?enc_auth_token={token}") .WithAutomaticReconnect() .Build();

Hi,

What is your product version? V11.4.0 What is your product type (Angular or MVC)? Angular What is the product framework type (.net framework or .net core)? .net core 6

We'd like to ask you before we develop a feature. We use multi-tenancy. We want to develop the tenant and sub-tenant infrastructure. Does the infrastructure of ASP.NET ZERO have a tenant and sub-tenant feature?

Hi,

What is your product version? V11.4.0 What is your product type (Angular or MVC)? Angular What is the product framework type (.net framework or .net core)? .net core 6

We'd like to ask you before we develop a feature. We use multi-tenancy. We want to add Country/City and Timezone features to the tenant. Does the infrastructure of ASP.NET ZERO have Country/City and Timezone features?

Question

Hi,

How to download metronic angular theme (version 8.1.2)

Showing 1 to 10 of 17 entries