4

我正在开发 Web 服务客户端,cxf-codegen-plugin它正在MyService extends Service为客户端部分生成类。
我现在的问题是:当我创建客户端时,是否应该MyService在每次我想发送请求或保留它以及每次创建端口时创建我的对象?或者我可以保留端口吗?获得客户的最佳方式是什么?

谢谢

4

2 回答 2

2

保留端口绝对是性能最佳的选择,但请记住线程安全方面:

http://cxf.apache.org/faq.html#FAQ-AreJAXWSclientproxiesthreadsafe%3F

于 2012-07-16T21:07:15.297 回答
0

Service每次发送请求时创建类将是非常低效的方式。创建 Web 服务客户端的正确方法是在第一次应用程序启动时。例如,我从 Web 应用程序调用 Web 服务并使用ServletContextListener它来初始化 Web 服务。CXF Web 服务客户端可以这样创建:

private SecurityService proxy;

/**
 * Security wrapper constructor.
 *
 * @throws SystemException if error occurs
 */
public SecurityWrapper()
        throws SystemException {
    try {
        final String username = getBundle().getString("wswrappers.security.username");
        final String password = getBundle().getString("wswrappers.security.password");
        Authenticator.setDefault(new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(
                        username,
                        password.toCharArray());
            }
        });
        URL url = new URL(getBundle().getString("wswrappers.security.url"));
        QName qname = new QName("http://hltech.lt/ws/security", "Security");
        Service service = Service.create(url, qname);
        proxy = service.getPort(SecurityService.class);
        Map<String, Object> requestContext = ((BindingProvider) proxy).getRequestContext();
        requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, url.toString());
        requestContext.put(BindingProvider.USERNAME_PROPERTY, username);
        requestContext.put(BindingProvider.PASSWORD_PROPERTY, password);
        Map<String, List<String>> headers = new HashMap<String, List<String>>();
        headers.put("Timeout", Collections.singletonList(getBundle().getString("wswrappers.security.timeout")));
        requestContext.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
    } catch (Exception e) {
        LOGGER.error("Error occurred in security web service client initialization", e);
        throw new SystemException("Error occurred in security web service client initialization", e);
    }
}

在应用程序启动时,我创建这个类的实例并将其设置为应用程序上下文。还有一种使用spring创建客户端的好方法。看看这里:http ://cxf.apache.org/docs/writing-a-service-with-spring.html

希望这可以帮助。

于 2012-07-14T22:15:41.873 回答