Activities of "gterdem"

If Azure service bus support publishing events topic by topic, we can make improvements about it.

Try running authorization server on https.

AuthServer is an MVC application. Can you check this community article about customizing the login page? There is also sample code in the article.

Version 5.1.3 is live now and it should fix the problem.

I will close this issue and redirect to issue#2459 since they are same.

@boltth I have refunded your question. Please continue under issue#2459 if you still get errors.

Thanks for reporting!

Answer

5.1.3 is live now. I was able to build docker image after updating the cli then solution to version 5.1.3.

This is the Dockerfile under TestDocker.Web project I have used:

FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
COPY ["NuGet.Config", "."]
COPY ["src/TestDocker.Web/TestDocker.Web.csproj", "src/TestDocker.Web/"]
COPY ["src/TestDocker.HttpApi/TestDocker.HttpApi.csproj", "src/TestDocker.HttpApi/"]
COPY ["src/TestDocker.Application.Contracts/TestDocker.Application.Contracts.csproj", "src/TestDocker.Application.Contracts/"]
COPY ["src/TestDocker.Domain.Shared/TestDocker.Domain.Shared.csproj", "src/TestDocker.Domain.Shared/"]
COPY ["src/TestDocker.HttpApi.Client/TestDocker.HttpApi.Client.csproj", "src/TestDocker.HttpApi.Client/"]
RUN dotnet restore "src/TestDocker.Web/TestDocker.Web.csproj"
COPY . .
WORKDIR "/src/src/TestDocker.Web"
RUN dotnet build "TestDocker.Web.csproj" -c Release -o /app/build

FROM build AS publish
RUN dotnet publish "TestDocker.Web.csproj" -c Release -o /app/publish

FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "TestDocker.Web.dll"]

Let me know if you still get any error.

@AlderCove I have refunded your question. Thanks for reporting!

We found some of the 5.1.2 packages has some directory separator problem and we'll fix it very soon.

Interesting. We do see issues as well currently involving some of these packages, but our MO is a bit different. We get

@MichelZ, I am guessing you are using mac. Seems like the same problem with different error message.

We are having microservice solution and tried to add Custom Login page and Model in IdentityService.HttpApi.Host project and getting nuget package conflict.

Login is not hosted by IdentityService but AuthServer application (localhost44330 default). You should make these changes under AuthServer. IdentityService doesn't host any UI.

Answer

This was working for me prior to updating to 5.1.1 and 5.1.2.

I have reproduced this issue. It seems like related with wrong path format for linux as @AlderCove mentioned above. We'll investigate further. Thank you.

A user belongs to an organization unit can be called member. On the contrary, they are different functionality and naming both of them same would mean no difference in functionality at all.

To put it simply, a member is a specific user that belongs to an organization unit where a user is a generic identity that has access to the system.

Hello,

I would suggest checking microservice startup template docs to understand the components of the microservice template.

If you are only interested in communication between microservices, there are two ways to achieve this; synchronous communication and asynchronous communication.

Showing 571 to 580 of 867 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11