我有以下代码:
@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中部署服务器
有什么想法吗?
由于