Sergey,

The JAXRSClientServerBookTest.testGetBookXmlWildcard test seems to randomly 
fail for me.   Looking into the test, it looks like the URL it's getting can 
match either:

    @GET
    @Path("/books/{bookId}/")
    @Produces("application/xml")
    public Book getBook(@PathParam("bookId") String id) throws 
BookNotFoundFault {
        return doGetBook(id);
    }

or:
    
    @GET
    @Path("/books/{bookId}/")
    @Produces("text/xml")
    public Book getBookTextXml(@PathParam("bookId") String id) throws 
BookNotFoundFault {
        return doGetBook(id);
    }


And thus either of the two return content types would be valid, right?


Can you look into that test a bit?

Thanks!


-- 
Daniel Kulp
[email protected] - http://dankulp.com/blog
Talend Community Coder - http://coders.talend.com



Reply via email to