The request failed:
{ "servlet":"org.apache.felix.http.base.internal.dispatch.DispatcherServlet-22bb003a", "message":"Not Found", "url":"/system/console/components/3376.json", "status":"404" }
I'm getting this error for the service I wrote. How to resolve this? Is it because of the code?
Solved! Go to Solution.
This looks like an issue with custom code with class AssetsReportServiceImpl. Can you add a code snippet for the service annotations that you have used?
//Eg
@Component(service = CustomService.class)
public class CustomServiceImpl implements CustomService
@Reference annotation should be used for a service reference. If any @Reference annotation is not able to pick the correct service, bundle will throw unsatisfied service error. Please check if the highlighted property is properly initialized as a service and is available in the Felix console as a service.
Thanks
This looks like an issue with custom code with class AssetsReportServiceImpl. Can you add a code snippet for the service annotations that you have used?
//Eg
@Component(service = CustomService.class)
public class CustomServiceImpl implements CustomService
Views
Replies
Total Likes
Seems you are using @Reference annotation on implementation class(com.rrd.dam.core.services.impl.AssetReportExportServiveImpl). Try using interface.
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies