Hi Evgeny, > > Inside a Restlet Application, the best is to > > leverage the Context.dispatcher mechanism which allows the > > sharing of client connectors between several applications. > > If you have some possibilities and free time could you > describe this more detailly.
There is a diagram in the tutorial that provides an overview of the sharing of client connectors between several applications: http://www.restlet.org/documentation/1.0/tutorial#part05 Then, inside a Restlet or a Resource, you can invoke the getContext().getDispatcher() method to get an instance of the Uniform interface. This dispatcher will automatically route the request to the most appropriate client connector, taking into account the Request.protocol property or the Request.resourceRef's scheme. Best regards, Jerome

