Hi,
Do you have the same error in abp-studio-ui-logs.txt ?
Hi,
Thank you for sharing the logs. Could you check which app is locking this file ? You can use a tool like https://lockhunter.com/ or https://learn.microsoft.com/en-us/windows/powertoys/.
Hi,
Are there any logs on C:\Users\{USERNAME}\.abp\studio\ui\logs folder ? If so, could you share it ?
still not working failed at CreateSubscriptionAsync (403 Fibidden)
You should run this process as a host user because if the TenantId is in session, it can't access Edition info with the current design. But, I agree with you, a Tenant user should be able to execute this process as well. We will think about changing this restriction.
Hi,
I have replied via email and I'm posting my reply here so other developers can benefit from it;
PaymentWebOptions as shown below in the PreConfigureServices method of your TestWebModule.
var configuration = context.Services.GetConfiguration();Configure<PaymentWebOptions>(options =>
{
options.RootUrl = configuration["App:SelfUrl"];
options.CallbackUrl = configuration["App:SelfUrl"] + "/PaymentSucceed";
});
product_id from Stripe, you need to use price_id and set it to ExternalId of GatewayPlan."PaymentMethodTypes": []
Please note that, if the payment is successful, the user will be redirected to CallbackUrl endpoint you have configured.For subscriptions, you can use Stripe CLI to get Webhook requests in your development environment.
Hi @rmk
This package is stored in ABP's private NuGet server, so it doesn't exist on nuget.org. When you create an ABP project, it should contain a NuGet config and this NuGet.config file also contains a NuGet source linked to your license.
So, if you are adding this package to a commercial project, it should already be there. If you are trying to add this to a open-source project, you should copy the NuGet config from commercial project to your open-source project.
Hi @Stloby
I have granted beta access for ABP Studio for your license, you can download it on https://commercial.abp.io/studio. But, you can't create microservice project since you don't have a Business or Enterprise license.
Hi @mmukkara
Sorry for my late reply. I didn't get a notification about your question.
Yes, step 2 is possible. When you migrate your backend to ABP.IO, you can generate typescript proxies using NSWAG and make necessary changes on your angular app if you face a problem. When you complete the migration, you can generate the typescript proxies ABP style using abp cli.
The tenant request header name is different in ABP.IO and AspNEt Zero, so you also need to change it from Abp.TenantId to __tenant on your Angular app.
Hi,
Could you check your server side logs (under Logs folder) and try to find the error message for this exception and share it with us ?
Thanks,
Hi @mohammedalqaisi
Just a note that, LeptonX supports ABP 6.x and above, so if you integrate it to a 5.x project, you will get an error.