Re: @Resource declared in impl class not getting populated

2009-05-22 Thread Scott Archer
I'm getting the following stack trace when I start up a minimal webapp with a cxf web service configured. It fails when I add the spring CommonAnnotationBeanPostProcessor to the spring beans.xml file. Is there a way the CommonAnnotationBeanPostProcessor and CXF can both work together? Thanks, Sc

TLS/SSL Authentication Using CXF

2009-02-12 Thread Scott Archer
We're trying to access a web service secured by a certificate. The security is setup on IIS and the web service is behind it. I don't think WS-SECURITY will do this type of authentication. Is there any way to pass the client certificate when you call the web service? We're just getting an IIS Err

How do I make CXF use commons-logging?

2008-10-14 Thread Scott Archer
I found where you can use Log4j using: LogUtils.setLoggerClass(Log4jLogger.class); I'd like to use commons-logging though. Has anyone Written a commons-logging log implementation?

CXF Spring Configuration - multiple endpoints in one service

2008-07-11 Thread Scott Archer
I currently have 10 or so java services I'd like to expose as web services. CXF is allowing me to do this currently as separate services. Is it possible to expose one service with multiple ports all coming from 10 different java "Services"? (correct me if my terminology is wrong) I'm currently ex