我正在使用cxf codegen开发Web服务客户端,并为客户端部分生成类MyService extends Service
我现在的问题是当我创建客户端时,应该是每次我想发送请求时创建的MyService对象还是保留它并且每次创建端口?或者我可以保留港口吗?制作客户的最佳方式是什么?
由于
答案 0 :(得分:2)
保持端口周围绝对是最佳性能选项,但请记住线程安全方面:
http://cxf.apache.org/faq.html#FAQ-AreJAXWSclientproxiesthreadsafe%3F
答案 1 :(得分: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
希望这有帮助。