You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by Felipe Jaekel <fk...@gmail.com> on 2014/09/17 14:48:07 UTC

WebApp startup hang when using @WebServiceRef

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

Re: WebApp startup hang when using @WebServiceRef

Posted by Romain Manni-Bucau <rm...@gmail.com>.
Hi

it is getting the wsdl I get (you can check with a thread dump),
network issue? misconfiguration?


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-09-17 14:48 GMT+02:00 Felipe Jaekel <fk...@gmail.com>:
> 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