InInterceptors注释在WL中不起作用

时间:2014-07-18 22:19:08

标签: maven weblogic cxf jax-ws

我有以下代码:

@WebService(serviceName = "ServicioHTTP")
@Stateless
@InInterceptors(interceptors = "ws.BasicAuthAuthorizationInterceptor")

public class ServicioHTTP {


    @WebMethod(operationName = "serviceAuthHTTP")
    public String serviceAuthHTTP(@WebParam(name = "input") String input) {

            return input;
}
}

我尝试做的是使用HTTP进行身份验证,但它不能正常运行服务总是返回输入,InInterceptors没有触发,我不知道为什么,我在Weblogic中部署服务器

有什么想法吗?

由于

0 个答案:

没有答案