> -----Original Message-----
> From: KARR, DAVID (ATTCINW)
> Sent: Monday, August 24, 2009 11:02 AM
> To: [email protected]
> Subject: getting "NO_RESOURCES_AVAILABLE" from
> "AbstractJAXRSFactoryBean.checkResources()"
>
> I'm trying to set up a simple REST prototype running alongside some
> other existing code.
>
> When I deploy, I appear to fall into the following "if" block in
> "AbstractJAXRSFactoryBean.checkResources()":
>
> -----------------
> if (list.size() == 0) {
> org.apache.cxf.common.i18n.Message msg =
> new
> org.apache.cxf.common.i18n.Message("NO_RESOURCES_AVAILABLE",
> BUNDLE);
> LOG.severe(msg.toString());
> throw new
> WebApplicationException(Response.Status.NOT_FOUND);
> }
> ---------------
I also noticed the following warning:
WARNING: No resource methods found for resource class
com.att.ecom.catalog.Catalog
I've noticed other people on the net getting a similar error, but even
with those reports I don't understand what causes this.