Activities of "Anjali_Musmade"

Hello nanohealthserviceaccount,

Could you please check below link

https://github.com/abpframework/abp/issues/6247#issuecomment-778150542

Please do let me know if it helps you or if anything else is needed.

Thank you, Anjali

Hello oshabani,

Could you please check below link https://support.abp.io/QA/Questions/5191/Chat-Icons-does-not-appear-in-mobile-state--it-appears-only-in-pc-state-LeptonX

Please do let me know if anything else is needed.

Thank you, Anjali

Hi

in the screenshot below Authorization URL is of api url but the appsetting.jso you shared point to the authserver url. i think it is some configuration issue from your side. can you let us know if you have multiple environment appsettings.json?

Hi

can you share your angular enviornment.ts and enviornment.production.ts make sure the authority is not the swagger url it should be authserver url

Hello chris.b@mindmill.co.uk,

Could you please add below code and try to resolve it. After adding this code it works at my end.

  1. index.cshtml.cs
 public async Task OnGetAsync()
    {
        CustomTestCategoryLookupList.AddRange((
                await _customTestsAppService.GetCustomTestCategoryLookupAsync(new LookupRequestDto
                {
                    MaxResultCount = LimitedResultRequestDto.MaxMaxResultCount
                })).Select(t => new SelectListItem(t.Name, t.Info)).ToList()
        );

        await Task.CompletedTask;
    }
  1. CustomTestsAppService
public async Task<List<CustomTestCategoryDto>> GetCustomTestCategoryLookupAsync(LookupRequestDto input)
        {
            var query = _dbContext.Set<CustomTestCategory>().AsQueryable();

            var categories = await query
                .Take(input.MaxResultCount)
                .ToListAsync();

            return categories.Select(c => new CustomTestCategoryDto
            {
                Name = c.Name,
                Info = c.Info
            }).ToList();
        }
  1. Add this line to ConfigureServices in WebModule
context.Services.AddTransient<ICustomTestsAppService, CustomTestsAppService>();

Please do let me know if anything else is needed.

Thank You, Anjali

Hello Sergei.Gorlovetsky,

I apologies for delay in response, Actually the issue is at our side.

For time being please add below code:-

Create a AppBsonClassMapSerializer class in {Projectname}.MongoDB and add this code

using MongoDB.Bson.Serialization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Data;
using Volo.Abp.Domain.Entities;
namespace {ProjectName}.MongoDb
{
    public class AppBsonClassMapSerializer< TClass > : BsonClassMapSerializer< TClass >, IBsonDocumentSerializer
    {
        public AppBsonClassMapSerializer(BsonClassMap classMap) : base(classMap)
        {
        }
        public override TClass Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
        {
            var result = base.Deserialize(context, args);
            try
            {
                Type type = result.GetType();
                if (type == null)
                {
                    return result;
                }
                PropertyInfo propertyInfo = type.GetProperty(nameof(AggregateRoot.ExtraProperties));
                if (propertyInfo != null && propertyInfo.CanWrite)
                {
                    if (propertyInfo.GetValue(result) == null)
                    {
                        propertyInfo.SetValue(result, new ExtraPropertyDictionary());
                    }
                }
                return result;
            }
            catch (Exception)
            {
                return result;
            }
        }
    }
    public class AppBsonSerializationProvider : IBsonSerializationProvider
    {
        public IBsonSerializer GetSerializer(Type type)
        {
            if (type.BaseType == typeof(Volo.Abp.Domain.Entities.Auditing.FullAuditedAggregateRoot<Guid>))
            {
                Type serializerType = typeof(AppBsonClassMapSerializer<>).MakeGenericType(type);
                return (IBsonSerializer)Activator.CreateInstance(serializerType, BsonClassMap.LookupClassMap(type));
            }
            return null;
        }
    }
}

Add BsonSerializer.RegisterSerializationProvider(new AppBsonSerializationProvider()); into {Projectname}MongoDbModule.cs

We will fix it in next version and your ticket will be refunded. Can we close this ticket if your query is resolved? Please confirm.

Awaiting for your valuable response.

Thank You, Anjali

Hello sanobarm@cloudassert.com,

Can you please try to add API URL entry in CORS section of Auth Server and check whether login works or not for API and can you please provide both a screenshot and the error logs that you are encountering

Thank you, Anjali

Hello Dev2ng,

Please do let us know if this solution has worked for you?

Can we close this ticket if your query is resolved? Please confirm.

Awaiting for your valuable response.

Thank You, Anjali

Hello ed_developer3,

Hope you are doing well.

Please do let us know if we can help you with something else?

Can we close this ticket if your query is resolved? Please Confirm.

Thank You, Anjali

Hello alicaner,

Hope you are doing well.

Please do let us know if the above shared solution has worked for you?

Can we close this ticket if your query is resolved? Please confirm.

Awaiting for your valuable response.

Thank You, Anjali

Showing 1151 to 1160 of 1341 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30