I am using a REST Auth filter:
@Provider
@PreMatching
@Stateless
public class ContainerRequestAuthFilter implements ContainerRequestFilter {
...
}
The service works OK and authenticates correctly my REST requests but before the method filter() is executed I always get multiple annoying CWWKS1100A errors. After that I get the confirmation (logged in the INFO line shown above by my filter showing that the request is granted access to the service).
[AUDIT ] CWWKS1100A: Authentication did not succeed for user ID XXXX. An invalid user ID or password was specified.
[INFO ] Authorized access to v0.1/token to user XXXX OK.
Everything is working but I want to get rid of those error messages. How can I solve this? thanks.