Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
- ABP Framework version: v4.3.0
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace: Failed to load resource: the server responded with a status of 500 () data: {ActivatorChain: "Volo.Forms.Questions.QuestionController"}
- Steps to reproduce the issue:
- Log to a new or existing Project with the Forms module installed as a project.*
- Enter the Forms module*
- Create a new or edit an existing form*
- Add a question*
- Change any question's parameters and wait for the update event or delete the question.*
- You will see a pop-up error message saying "An Internal Error occurred during your request!".*
From what I discovered while attempting to debug this problem the UI is not connecting to the endpoint in Volo.Forms.Questions.QuestionsController. In a non-tiered solution this error is not happening.
EDIT: the issue seems to happen when injecting Volo.Forms.Questions.QuestionAppService
2 Answer(s)
-
0
I have solved this issue. The problem was that Volo.Forms.Questions.IQuestionAppService was missing the inheritance to IApplicationService. Just modify line 8 to public interface IQuestionAppService : IApplicationService and that fixes the problem
-
0
Glad to hear your problem solved. Closing the issue, feel free to create a new one whenever you have a new question.