Re: CXF Client issue with upgrade from CXF 2.2.7 to 2.4.2

2011-12-05 Thread srinivas thallapalli
Hi Dan, Could you please let me know whether the attached project is sufficient to reproduce the problem or any other inputs needed from my side?. Thanks -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-Client-issue-with-upgrade-from-CXF-2-2-7-to-2-4-2-tp4845738p5051272.html

CXF Marshalling Concurrency Problem?

2011-12-05 Thread eamiller83
I am running CXF 2.4.2 based web services on Tomcat 7. When put under a moderately heavy load I am occasionally receiving the following error: org.apache.cxf.interceptor.Fault: Marshalling Error: cvc-complex-type.2.4.b: The content of element ... is not complete. One of ... is expected. My web s

Re: Why is the default 'accept' for WebClient text/xml

2011-12-05 Thread Sergey Beryozkin
On 29/11/11 10:13, Sergey Beryozkin wrote: Hi On 29/11/11 01:19, douglassparker wrote: If a server method is annotated with @Produces( {MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML} ) and the client does not provide an Accept Header, my understanding is that the response MIME type shoul

Re: JAX-RS Annotations and path resolution

2011-12-05 Thread Sergey Beryozkin
Hi On 05/12/11 10:55, Jeff Wang wrote: > 1) I have 2 service classes with the following annotations: > @Path("/user/{userId}") > public class Foo { >@GET >@Path("/fooResourceA") >public FooResourceA fooResourceA(); > >@GET >@Path("/fooResourceB") >public FooResourceB fooReso

JAX-RS Annotations and path resolution

2011-12-05 Thread Jeff Wang
1) I have 2 service classes with the following annotations: @Path("/user/{userId}") public class Foo { @GET @Path("/fooResourceA") public FooResourceA fooResourceA(); @GET @Path("/fooResourceB") public FooResourceB fooResourceB(); } @Path("/user/{userId}") public class Bar { @GET