Activities of "ndeol"

if our license expires and we later renew it Does your system create a new API key automatically ?

I am unable to see that key . But if we don't renew does that mean we can still develop solution without upgrading packages right ?

key is different inside the project when i create new one . So I updated that new key with old and it started working. Does that mean api was changed?. How do we change or find our api key ?

  • ABP Framework version: v8.3.2
  • UI Type: Angular
  • Database System: MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue: We started getting this error in Australian Region for NuGet restore since 6 hours ago. I have check we have valid business license and we have been using this version from past 4 months. How come our release pipelines are failing? Can you please advice on this. All release and development restore is failing.?

Just adding one example of error below

Unable to find package Volo.Saas.Host.Application.Contracts with version (>= 8.3.2) error NU1102: - Found 117 version(s) in ABP Commercial NuGet Source [ Nearest version: 7.0.3 ]

Does this mean every time we update projects to new version we also have to update Nuget.Config with new nuget urls from abp ?

  • ABP Framework version: v8.3.2
  • UI Type: Angular /
  • Database System: MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Microsoft has release Azure service bus emulator . But current azure service event bus integration does not make use of azure emulator connection string and unable to connect with trying to connect at 443 port rather then skipping TLS negotiation and connecting on 5672 ports. I think azure service bus package need to updated inside Volo.Abp.EventBus.AzureServiceBus package to make emulator work . https://learn.microsoft.com/en-us/azure/service-bus-messaging/overview-emulator

Answer

https://community.cloudflare.com/t/how-to-turn-off-are-you-a-human/635902 I can open the same link with Browser but CLI or abp studio login fails for this url with 403 https://account.abp.io/.well-known/openid-configuration

Answer

+1 any ETA on this guys,All deplyment pipelines are also down due to DNS issue for Nuget?

  • ABP Framework version: v8.3.2
  • UI Type: Angular
  • Database System: MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue: Updated my Microservice project from version 8.0.2 to 8.3.2 both for angular and dotnet. I have followed all migration guides. I don't see any error in angular project but not authentication is triggering. API projects are running with no issues on auth server and configuration apis. Angular application is showing just spinner.

Thanks That worked

  • ABP Framework version: v8.0.2
  • UI Type: Angular
  • Database System: MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

This I abp implementation when saving Audit Porperty Changes. As in MongoDb Case I am adding custom Entity Change object which Is bigger as its in Sterilized object. But Implementation we currently have Truncate the Value before Audit Information is saved. There is no way to override it either. Can you explain how can I override **EntityPropertyChangeConsts.MaxNewValueLength ** , If not Then Any other way to set the value on NewValue as its protected Set.
[DisableAuditing] public class EntityPropertyChange : Entity<Guid>, IMultiTenant { public virtual Guid? TenantId { get; protected set; }

public virtual Guid EntityChangeId { get; protected set; }

public virtual string NewValue { get; protected set; }

public virtual string OriginalValue { get; protected set; }

public virtual string PropertyName { get; protected set; }

public virtual string PropertyTypeFullName { get; protected set; }

protected EntityPropertyChange()
{

}

public EntityPropertyChange(
    IGuidGenerator guidGenerator,
    Guid entityChangeId,
    EntityPropertyChangeInfo entityChangeInfo,
    Guid? tenantId = null)
{
    Id = guidGenerator.Create();
    TenantId = tenantId;
    EntityChangeId = entityChangeId;
    **NewValue = entityChangeInfo.NewValue.Truncate(EntityPropertyChangeConsts.MaxNewValueLength);**
    OriginalValue = entityChangeInfo.OriginalValue.Truncate(EntityPropertyChangeConsts.MaxOriginalValueLength);
    PropertyName = entityChangeInfo.PropertyName.TruncateFromBeginning(EntityPropertyChangeConsts.MaxPropertyNameLength);
    PropertyTypeFullName = entityChangeInfo.PropertyTypeFullName.TruncateFromBeginning(EntityPropertyChangeConsts.MaxPropertyTypeFullNameLength);
}

}

Showing 1 to 10 of 45 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 13, 2025, 04:08