RE: JAX-RS Request Matching Wierdness

2009-07-12 Thread Tong, Gary
Hi Sergey, The problems come up in a number of situations, all involving multiple service beans. The simplest case is the following: public class AWebService { @GET @Path(/a) public String a() { return a; } } public class BWebService { @GET @Path(/b) public String b() {

RE: JAX-RS Request Matching Wierdness

2009-07-12 Thread Sergey Beryozkin
Hi Gary The thing is that JAX-RS does not allow for checking on the multiple root resource classes - I think there was a discussion on cxf users list about extending the selection algorithm - I don't mind if it would actually make things simpler. Please see few more comments prefixed with S.B