I found that once I stopped the component: comp.stop I could no longer call my JaxRs resources.
If I restart the application like this after I've loaded new resource classes they work :-) ArrayList<javax.ws.rs.core.Application> apps = new ArrayList<javax.ws.rs.core.Application>( ); apps.add( JaxRsApp.getInstance( ) ); this.application.stop( ); this.application.setApplications( apps ); this.application.start( ); However if I remove resources and restart they are still available. ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2847801

