从应用程序外部配置 JAX-WS @WebServiceRef客户机



我想从应用程序外部配置一个受管理的 JAX-WS 客户机(注入@WebServiceRef(,最好使用 WebLogic 管理控制台。

例如,将 HTTP 请求中发送的用户名和密码设置为在执行 Web 服务调用时在服务器上进行身份验证。

需要明确的是,手动执行此操作需要我实现它,而使用容器提供的功能只需要配置。

我能够使用SAP NetWeaver做到这一点,是否可以使用WebLogic做到这一点?

@Stateless
public class HolidayClientImpl {
    // I want this dependency to be already configured, instead of doing it myself.
    @WebServiceRef
    private MyRemoteService myRemoteService;
}

搜索了很多之后,我没有发现此功能在WebLogic中可用。它不存在,至少在版本 10.3.6 和 12 中也不存在。

这意味着您必须实现客户端配置,如下所示:

MyPort port = service.getHTTPPort();
Map<String, Object> requestContext = ((BindingProvider) port).getRequestContext();
// URL
requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://www.remoteservice.com/service");
// Timeouts
requestContext.put(BindingProviderProperties.CONNECT_TIMEOUT, 5000);
requestContext.put(BindingProviderProperties.REQUEST_TIMEOUT, 30000);
// Authentication
requestContext.put(BindingProvider.USERNAME_PROPERTY, "user");
requestContext.put(BindingProvider.PASSWORD_PROPERTY, "password");

相关内容

  • 没有找到相关文章