Re: CXF 3.1 in OSGi container (equinox)

2010-12-21 Thread Christian Schneider
I read some days ago on Dan Kulp´s blog that Talend released the first version of Talend Service Factory. http://www.dankulp.com/blog/?p=285 The interesting thing for you is that it contains a complete osgi container with Karaf and all dependencies for CXF. That should make it much easier for

Re: CXF 3.1 in OSGi container (equinox)

2010-12-21 Thread Freeman Fang
On 2010-12-21, at 下午6:50, bisior wrote: Hi, Can someone explain me how to run CXF 3.1 in OSGi container? The manifest of cxf-2.3.1.jar looks OK, but there are a lot of missing libraries in the lib directory of the distribution. Finally I have managed to find and resolve all missing con

Re: java.lang.ClassCastException: org.apache.cxf.jaxws.JaxWsClientProxy cannot be cast to org.apache.cxf.frontend.ClientProxy

2010-12-21 Thread Freeman Fang
Hi, First of all, ClientProxy is super class of JaxWsClientProxy. And the exception you saw is java.lang.ClassCastException: org.apache.cxf.jaxws.JaxWsClientProxy cannot be cast to org.apache.cxf.frontend.ClientProxy When you saw the Exception that a subclass can't cast to a super class, the

CXF 3.1 in OSGi container (equinox)

2010-12-21 Thread bisior
Hi, Can someone explain me how to run CXF 3.1 in OSGi container? The manifest of cxf-2.3.1.jar looks OK, but there are a lot of missing libraries in the lib directory of the distribution. Finally I have managed to find and resolve all missing constraints, but then CXF had some class loading issue

Re: DigestAuthTest is failing on 2.3.x

2010-12-21 Thread Sergey Beryozkin
Hi Christian On Tue, Dec 21, 2010 at 11:04 AM, Christian Schneider < ch...@die-schneider.net> wrote: > Hi Sergey, > > thanks for the hints. I have written a systest for the digest auth. When I > only set username and password my test does not do correct digest auth. > I also need to set the authS

Re: DigestAuthTest is failing on 2.3.x

2010-12-21 Thread Christian Schneider
Hi Sergey, thanks for the hints. I have written a systest for the digest auth. When I only set username and password my test does not do correct digest auth. I also need to set the authSupplier. If I don´t set it then the request is not cached and the retransmission is not done. Perhaps I broke