Activities of "liangshiwei"

Hi,

I can share the localization files with you, could you provide your email with me? shiwei.liang@volosoft.com

Hi,

You should make sure the project version and ABP CLI are the same.

Because your project version is v5.2.1. Without Contracts is suited for you.

Hi,

Here are two ways:

1

Install the saas domain and entityframeworkcore packages. Set the connection string to read tenant data from the Monalite database: https://docs.abp.io/en/abp/latest/Connection-Strings#configuring-the-database-structures

"ConnectionStrings": {
  "Saas": "Server=localhost;Database=MyMainDb;Trusted_Connection=True;"
}

2

Load the tenant data from the remote service(SupplierEvaluation > gateway > Monalite) You need to install the Volo.Abp.AspNetCore.Mvc.Client package, it provides the MvcRemoteTenantStore class

  • You should configure the Remote service in the SupplierEvaluation project.
{
  "RemoteServices": {
    "Default": {
      "BaseUrl": "http://localhost:53929/" (gateway)
    } 
  } 
}
  • You should configure the gateway to forward the request
{
  "ServiceKey": "Multi-tenancy Service",
  "DownstreamPathTemplate": "/api/abp/multi-tenancy/{everything}",
  "DownstreamScheme": "https",
  "DownstreamHostAndPorts": [
    {
      "Host": "localhost",
      "Port": 44367 (Monalite)
    }
  ],
  "UpstreamPathTemplate": "/api/abp/multi-tenancy/{everything}",
  "UpstreamHttpMethod": [ "Put", "Delete", "Get", "Post" ]
},

Hi,

This feature is available from 7.0: https://github.com/abpframework/abp/issues/13613

A connection attempt failed because the connected party did not properly respond after a period of time,or established connection failed because connected host has failed to respond

It looks like your email configuration is wrong.

You can use the example to check your email config: https://github.com/abpframework/abp-samples/blob/master/EmailSendDemo/src/EmailSendDemo/Program.cs

Hi,

I will check it

Hi,

According to my understanding:

You can use the JWT to get tenant owner data from Monalite but not SupplierEvaluation.

What's the result if you output the ICurrentTenant.Id in the SupplierEvaluation project?

Hi,

We are aware of this issue, I will try to fix it, and your ticket refunded.

Hi,

The problem was fixed in the 2.0.x version. You can upgrade your project

Hi,

With Contracts generate all the classes/enums/other types in the client side (including application service interfaces) , This is also the default behavior of the generate-proxy command.

There is no problem and the MyClientapp should add project references Application and MyApplication.Http.Client. it will generate all needed classes(Dtos, Interfaces, Proxies)

Showing 131 to 140 of 2428 entries
Made with ❤️ on ABP v9.1.0-rc.1. Updated on January 17, 2025, 14:13