Activities of "john@johnfuqua.com"

Answer

Abp Suite does should be including this ignore when their is a navigational property as well. Here is where we added the ignore. Again related to the same object model.

Answer

More Abp Suite generation issues: Suite does not generate this method circled in the image. I believe this is related to the Child entity having a navigation property.

Running this command fixed the proxy files. abp generate-proxy -t csharp -u https://localhost:44361/ -wd src/Kosai.SossHub.PlatformManager.HttpApi.Client -m PlatformManager --without-contracts

Question
  • ABP Framework version: v8.2.1
  • UI Type:Blazor WASM
  • Database System: EF Core (SQL Serve
  • Tiered (for MVC) or Auth Server Separated (for Angular): YES
  • Exception message and full stack trace: AutoMapperConfigurationException
  • Steps to reproduce the issue: See screenshots below.

If I remove the navigation, I do not get the error.

  • ABP Framework version: 8.2.1
  • UI Type: Blazor WASM
  • Database System: EF Core (SQL Server,
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Microservice Project

We also ran into another issue and had to add this or it would throw an error. This was not documented anywhere. Can you please explain, and we guessed what the migration table name would be?

options.Configure<PaymentDbContext>(c =>
{
    c.UseSqlServer(b =>
    {
        b.MigrationsHistoryTable("__Payment_Migrations");
    });
});

Ok, so we figured out the issue, we had to configure the gateway api by adding the following:

"Payment": {
        "ClusterId": "Platform",
        "Match": {
          "Path": "/api/payment/{**catch-all}"
        }
      },
      "PaymentAdmin": {
        "ClusterId": "Platform",
        "Match": {
          "Path": "/api/payment-admin/{**catch-all}"
        }
      },

I went through all the documentation again and looked at all of the projects in the Administration microservice to make sure I was referencing and including dependon statements in each project. I then ran across this. Where is the 8.2 package for Stripe?

I believe this is clearly a change that occurred in 8.x possibly with the Blazor changes. Please advise.

Thanks, John

This does not help me. This is about adding a microservice not adding a module to a microservice...in addition, there is a bit of confusion on which microservice the payment module should be added...Administration or in the example template the Product microservice. We have multi tenancy enabled as well, so bit of confusion.

Here is the output log on the blazor server instance.

blazor_4e53a607-8]: [17:39:10 INF] Start processing HTTP request GET https://localhost:44325/api/payment-admin/plans?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 [blazor_4e53a607-8]: [17:39:10 INF] Sending HTTP request GET https://localhost:44325/api/payment-admin/plans?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 [blazor_4e53a607-8]: [17:39:10 INF] Received HTTP response headers after 4.9882ms - 404 [blazor_4e53a607-8]: [17:39:10 INF] End processing HTTP request after 5.1511ms - 404 [blazor_4e53a607-8]: [17:39:10 ERR] Not Found [blazor_4e53a607-8]: Volo.Abp.Http.Client.AbpRemoteCallException: Not Found [blazor_4e53a607-8]: at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.ThrowExceptionForResponseAsync(HttpResponseMessage response) [blazor_4e53a607-8]: at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync(ClientProxyRequestContext requestContext) [blazor_4e53a607-8]: at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync[T](ClientProxyRequestContext requestContext) [blazor_4e53a607-8]: at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase1.RequestAsync[T](String methodName, ClientProxyRequestTypeValue arguments) [blazor_4e53a607-8]: at Volo.Payment.Admin.Plans.PlanAdminClientProxy.GetListAsync(PlanGetListInput input) [blazor_4e53a607-8]: at Volo.Abp.BlazoriseUI.AbpCrudPageBase`10.GetEntitiesAsync() [blazor_4e53a607-8]: [17:39:10 ERR] Code:NotFound [blazor_4e53a607-8]: [17:39:10 ERR] Details:

Showing 1 to 10 of 55 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13