Re: Routing woes...

2013-12-09 Thread Thierry Boileau
Hello,

perhaps you don't need the ServerResource class, and can directly define
your own Restlet subclass:

@Override
public Restlet createInboundRoot() {
Restlet restlet = new Restlet(getContext()) {
@Override
public void handle(Request request, Response response) {
// TODO Auto-generated method stub
super.handle(request, response);
}
};
return restlet;
}

Best regards,
Thierry Boileau



2013/12/9 Arjohn Kampman arjohn.kamp...@vound-software.com

 Perhaps attachDefault(...) does what you're looking for? Or maybe you
 don't need the router at all and attach the Finder to whatever you are
 attaching the Router to?


 On 08/12/2013 16:46, Niclas Hedhman wrote:
 
  Hi, (not sure if this is still the proper mailing list)
 
  I have in a new project the need to let a Finder provide the
  ServerResource subclass for ALL URI paths, instead of individual
 matching.
 
  I want to do something like;
 
  Finder finder = createRestletFinder(
  EntityListServerResource.class, getContext() );
  router.attach( /*, finder );
  return router;
 

 --

 http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3069980


--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3069985

Routing woes...

2013-12-08 Thread Niclas Hedhman
Hi, (not sure if this is still the proper mailing list)

I have in a new project the need to let a Finder provide the ServerResource
subclass for ALL URI paths, instead of individual matching.

I want to do something like;

Finder finder = createRestletFinder(
EntityListServerResource.class, getContext() );
router.attach( /*, finder );
return router;

But I can't figure out what I really need to write as the pathTemplate,
RFC6570 isn't the easiest document to understand coming from the cold.

I also tried to set the RequiredScore to a very negative number, but that
didn't help.


Thanks
-- 
Niclas Hedhman, Software Developer
河南南路555弄15号1901室。
http://www.qi4j.org - New Energy for Java

I live here; http://tinyurl.com/3xugrbk
I work here; http://tinyurl.com/6a2pl4j
I relax here; http://tinyurl.com/2cgsug

--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3069956

Re: Routing woes...

2013-12-08 Thread Arjohn Kampman
Perhaps attachDefault(...) does what you're looking for? Or maybe you 
don't need the router at all and attach the Finder to whatever you are 
attaching the Router to?


On 08/12/2013 16:46, Niclas Hedhman wrote:

 Hi, (not sure if this is still the proper mailing list)

 I have in a new project the need to let a Finder provide the 
 ServerResource subclass for ALL URI paths, instead of individual matching.

 I want to do something like;

 Finder finder = createRestletFinder( 
 EntityListServerResource.class, getContext() );
 router.attach( /*, finder );
 return router;


--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=3069980