Activities of "yunusemrecaglar"

  • ABP Framework version: v7.2.2
  • UI type: Blazor Server
  • DB provider: EF Core
  • Tiered (MVC) or Auth Server Separated (Angular): yes

Hello,

I have a project that is not built with ABP Framework, and I am trying to fetch data from another project that is built with ABP Framework. To achieve this, I need to implement user authentication. Could you provide information on how to obtain a token from the other project and how to make API calls using that token? Thank you.

Answer

There is no information available regarding the details as shown below, and there are no errors visible in logs.txt. I am sending logs.txt as an email.

[ { "code": null, "message": "Sayfa işlenirken sunucu tarafında beklenmedik bir hata oluştu!", "details": null, "data": {}, "validationErrors": null }, { "code": null, "message": "Sayfa işlenirken sunucu tarafında beklenmedik bir hata oluştu!", "details": null, "data": {}, "validationErrors": null } ]

Question
  • ABP Framework version: v7.2.2
  • UI type: Blazor Server
  • DB provider: EF Core
  • Tiered (MVC) or Auth Server Separated (Angular): yes

Hi, In our project, our pages work smoothly on machines with the Windows operating system. However, when the same user, same page, and same web browser are used on machines with the macOS operating system, it encounters a 500 error. When I directly call the API connection on macOS, there is no error. What could be the reason for this?

I sent e-mail.

Did you receive the email I sent?

Is it okay if I send an email with the full content of the logs?

hi, When I create a project from scratch, there is no issue. We currently have a project on version 6.0.1, and when I try to upgrade it to version 7.2.2, I encounter this error. Of course, I'm sharing the details below.

AuthServer <Project Sdk="Microsoft.NET.Sdk.Web">

<Import Project="....\common.props" />

<PropertyGroup> <TargetFramework>net7.0</TargetFramework> <Nullable>enable</Nullable> <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> <RootNamespace>Pbys</RootNamespace> <AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> <MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish> <PreserveCompilationReferences>true</PreserveCompilationReferences> </PropertyGroup>

<ItemGroup> <Compile Remove="Logs*" /> <Content Remove="Logs*" /> <EmbeddedResource Remove="Logs*" /> <None Remove="Logs*" /> </ItemGroup>

<ItemGroup> <Content Include="Pages**.js"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> <Content Include="Pages**.css"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> </ItemGroup>

<ItemGroup> <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" /> <PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" /> <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="7.0.0" /> <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.0" /> <PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="7.0.0" /> <PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" Version="7.0.0" /> <PackageReference Include="DistributedLock.Redis" Version="1.0.2" /> </ItemGroup>

<ItemGroup> <PackageReference Include="Volo.Abp.Autofac" Version="7.2.2" /> <PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="7.2.2" /> <PackageReference Include="Volo.Abp.DistributedLocking" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.Application" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.HttpApi" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.Web.OpenIddict" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.Web.Impersonation" Version="7.2.2" /> <PackageReference Include="Volo.Saas.Host.Application.Contracts" Version="7.2.2" /> <ProjectReference Include="..\Pbys.EntityFrameworkCore\Pbys.EntityFrameworkCore.csproj" /> </ItemGroup>

<ItemGroup> <PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonX" Version="2.2.-" /> </ItemGroup>

</Project>

Blazor <Project Sdk="Microsoft.NET.Sdk.Web">

<Import Project="....\common.props" />

<PropertyGroup> <TargetFramework>net7.0</TargetFramework> <Nullable>enable</Nullable> <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> <MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish> <PreserveCompilationReferences>true</PreserveCompilationReferences> </PropertyGroup>

<ItemGroup> <PackageReference Include="AspNetCore.HealthChecks.UI" Version="7.0.0-rc2.6" /> <PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="7.0.0-rc2.6" /> <PackageReference Include="AspNetCore.HealthChecks.UI.InMemory.Storage" Version="7.0.0-rc2.6" /> <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" /> <PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" /> <PackageReference Include="Blazorise.Bootstrap5" Version="1.2.0" /> <PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.2.0" /> <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="7.0.0" /> <PackageReference Include="DistributedLock.Redis" Version="1.0.2" /> </ItemGroup>

<ItemGroup> <PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="7.2.2" /> <PackageReference Include="Volo.Abp.DistributedLocking" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Autofac" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Swashbuckle" Version="7.2.2" /> <PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="7.2.2" /> <PackageReference Include="Volo.Abp.AspNetCore.Mvc.Client" Version="7.2.2" /> <PackageReference Include="Volo.Abp.AspNetCore.Authentication.OpenIdConnect" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Http.Client.Web" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Http.Client.IdentityModel.Web" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Admin.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Account.Pro.Public.Web.Impersonation" Version="7.2.2" /> <PackageReference Include="Volo.Abp.AuditLogging.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Identity.Pro.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.OpenIddict.Pro.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.LanguageManagement.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Saas.Host.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.TextTemplateManagement.Blazor.Server" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Gdpr.Blazor.Server" Version="7.2.2" /> <ProjectReference Include="..\Pbys.HttpApi.Client\Pbys.HttpApi.Client.csproj" /> <PackageReference Include="Volo.CmsKit.Pro.Admin.Blazor.Server" Version="7.2.2" /> </ItemGroup>

<ItemGroup> <PackageReference Include="Volo.Abp.AspNetCore.Components.Server.LeptonXTheme" Version="2.2.-" /> <PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonX" Version="2.2.-" /> </ItemGroup>

<ItemGroup> <Compile Remove="Logs*" /> <Content Remove="Logs*" /> <EmbeddedResource Remove="Logs*" /> <None Remove="Logs*" /> </ItemGroup>

<ItemGroup> <None Update="Pages**.js"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <None Update="Pages**.css"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup>

</Project>

  • ABP Framework version: v6.0.1 => 7.2.2
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes hi, I upgraded the ABP Framework from version 6.0.1 to 7.2.2, but after a user logs in, an error appears on the page. Can you help me identify where I am making a mistake?

[2023-06-12T12:40:03.464Z] Error: Volo.Abp.Http.Client.AbpRemoteCallException: Internal Server Error at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.ThrowExceptionForResponseAsync(HttpResponseMessage response) at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync(ClientProxyRequestContext requestContext) at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync[T](ClientProxyRequestContext requestContext) at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync[T](String methodName, ClientProxyRequestTypeValue arguments) at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies.AbpApplicationConfigurationClientProxy.GetAsync(ApplicationConfigurationRequestOptions options) at Volo.Abp.AspNetCore.Mvc.Client.MvcCachedApplicationConfigurationClient.GetRemoteConfigurationAsync() at Volo.Abp.AspNetCore.Mvc.Client.MvcCachedApplicationConfigurationClient.<GetAsync>b__19_0() at Volo.Abp.Caching.DistributedCache2.GetOrAddAsync(TCacheKey key, Func1 factory, Func1 optionsFactory, Nullable1 hideErrors, Boolean considerUow, CancellationToken token) at Volo.Abp.AspNetCore.Mvc.Client.MvcCachedApplicationConfigurationClient.GetAsync() at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task1 task) at Nito.AsyncEx.AsyncContext.<>c__DisplayClass16_01.<Run>b__0(Task1 t) at System.Threading.Tasks.ContinuationResultTaskFromResultTask2.InnerInvoke() at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task1 task) at Nito.AsyncEx.AsyncContext.Run[TResult](Func1 action) at Volo.Abp.AspNetCore.Mvc.Client.RemoteLocalizationContributor.GetResourceOrNull(String resourceName) at Volo.Abp.AspNetCore.Mvc.Client.RemoteLocalizationContributor.GetOrNullInternal(String resourceName, String name) at Volo.Abp.Localization.LocalizationResourceContributorList.GetOrNull(String cultureName, String name, Boolean includeDynamicContributors) at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetLocalizedStringOrNull(String name, String cultureName, Boolean tryDefaults) at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetLocalizedString(String name, String cultureName) at Volo.Abp.UI.Navigation.DefaultMenuContributor.Configure(MenuConfigurationContext context) at Volo.Abp.UI.Navigation.DefaultMenuContributor.ConfigureMenuAsync(MenuConfigurationContext context) at Volo.Abp.UI.Navigation.MenuManager.GetInternalAsync(String name) at Volo.Abp.UI.Navigation.MenuManager.GetAsync(String[] menuNames) at Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Navigation.MainMenuProvider.GetMenuAsync() at Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu.MainHeader.MainHeader.OnInitializedAsync() at Microsoft.AspNetCore.Components.ComponentBase.RunInitAndSetParametersAsync

How can we accomplish that?

hi, Have you implemented a mechanism that prevents the usage of the last 3 passwords?

顯示 60 個紀錄的 41 到 50 個.
Made with ❤️ on ABP v8.2.0-preview Updated on 3月 25, 2024, 15:11