Hi, I'm trying to use a web service from another webapp on the same server. When I add @WebServiceRef to the Filter that is going to use the web service the webapp hang on startup.
@WebFilter(urlPatterns = "/*")
public class AuthenticationFilter implements Filter
{
@WebServiceRef(TokenServiceService.class)
private TokenService tokenService;
TomEE version is 1.7.0+.
Any ideas?
Thanks
