0
jaq316 created
I've implemented an application service in a separate project (not the Application project). I've added the following code to the WebApi Module's Initialize method.
DynamicApiControllerBuilder
.ForAll<IApplicationService>(typeof(WMSPanelModule).Assembly, "wmspanel")
.Build();
I can call the application service successfully using the api url (/api/wmspanel/), but the auditing is not wired up on methods in the application service. I must be missing something, somewhere, but I just don't know what.
Any help will be greatly appreciated.
3 Answer(s)
-
0
Have you defined an module class (deriving AbpModule) in your seperated app service layer and added DependsOn from web project to this 2nd app service module?
-
0
Yes. I have.
-
0
I can not see any reason for that. .Application project is not special. Is auditing works for other cases?