What is missing from Restlet?

2008-11-03 Thread Jerome Louvel
Hi all, Could you tell me, from your point of view, what are the three most important features missing from Restlet ? There is already a draft roadmap for Restlet 1.2 but I would like to get more input before making definitive choices and sorting out priorities. Best regards, Jérôme Louvel

Re: What is missing from Restlet?

2008-11-03 Thread Stephan Koops
Hi Jerome, also if we already talked about this: better authentication and an authorization. I also want to give input to it, if it is time for that. best regards Stephan Hi all, Could you tell me, from your point of view, what are the three most important features missing from

RE: Where to find SVN tags for 1.1-RC2

2008-11-03 Thread Jerome Louvel
Hi Tamas, I've just checked and they still seem to be present at: http://restlet.tigris.org/svn/restlet/tags/1.1/1.1rc2 Best regards, Jérôme Louvel -- Restlet ~ Founder and Lead developer ~ http://www.restlet.org/ http://www.restlet.org Noelios Technologies ~ Co-founder ~

Guard, authenticate failure, HTTP 401

2008-11-03 Thread Diego Ballve
Hello, By default Guard returns 403 (forbidden) if authentication fails? Shouldn't it be 401? 401: The request requires user authentication 403: request, but is refusing to fulfill it as it could be explained in the entity. br, DIego -- Diego Ballve Digital Artefacts Europe

Re: Guard, authenticate failure, HTTP 401

2008-11-03 Thread Stephan Koops
Hi Diego, this was a bug in Restlet 1.0. It is resolved in Restlet 1.1. See also the Migration Guide from 1.0 to 1.1: http://wiki.restlet.org/docs_1.1/13-restlet/171-restlet/155-restlet.html best regards Stephan Hello, By default Guard returns 403 (forbidden) if authentication fails?

Re: Guard, authenticate failure, HTTP 401

2008-11-03 Thread Thierry Boileau
Hello Diego, I suppose you are running with Restlet 1.0, since Restlet 1.1 behaves differently (returns 401 status). We think that this behaviour won't be changed in the future. Thus, we kindly encourage you to use Restlet 1.1 or create a subclass and override the "forbid" method (which sets

Re: Problem with Url redirection

2008-11-03 Thread Thierry Boileau
Hello Murilo, Here is a sample code where http://localhost:8182/blabla/blibli are redirected tohttps://services.dev/blabla/blibli : *** Component component = new Component(); component.getServers().add(Protocol.HTTP, 8182); component.getClients().add(Protocol.HTTP);

Re: Browsing the content of a zip and/or tarball

2008-11-03 Thread Marc-Elian BŽégin
Hi Jeff and Jerome, Jerome, I'd love to contribute to Restlet, but at the moment we're busy preparing a release alpha of our cloud powered full-scale system-test automation application, so I have very few free cycles. I'm really interested in learning how you guys design and test though, so

Re: Browsing the content of a zip and/or tarball

2008-11-03 Thread Rob Heittman
I also can report good results using TrueZip to explore inside archives of various types (https://truezip.dev.java.net/) If you need pluggable support for the whole suite of common archives (.tar, .tar.gz, etc.) and/or need write access, this may be the way to go. Jeff Ramsdale wrote: It's

Re: What is missing from Restlet?

2008-11-03 Thread Jon Blower
Hi Jerome, As a newbie user I don't have anything very profound to say except that I'd greatly value more documentation, particularly more tutorials that go a little bit beyond the basics. The Restlet docs are already better than most OS projects and I appreciate the effort that has gone into

Re: Problem with Url redirection

2008-11-03 Thread Murilo Foltran
Thanks Again Thierry I'll try this and post the result. Cheers, Murilo On Mon, Nov 3, 2008 at 4:43 PM, Thierry Boileau [EMAIL PROTECTED] wrote: Hello Murilo, Here is a sample code where http://localhost:8182/blabla/blibli are redirected to https://services.dev/blabla/blibli :

Re: Problem with Url redirection

2008-11-03 Thread Tim Peierls
On Mon, Nov 3, 2008 at 1:43 PM, Thierry Boileau [EMAIL PROTECTED] wrote: NB: for a complete list of supported predefined variables:

Re: Guard, authenticate failure, HTTP 401

2008-11-03 Thread Diego Ballve
Hi Stephan, Thierry, Thanks for the answers, but.. er.. I'm using 1.1.1 fresh from maven repo. Sources pulled from there too. And I am overriding the forbid method, which in 1.1.1 returns CLIENT_ERROR_FORBIDDEN. Check here:

Enhancement for Router to ignore double slashes?

2008-11-03 Thread Avi Flax
Hi everyone! Currently, if one creates a route like this: router.attach(books/{book}, BookResource.class); and then sends a request like this: GET books//some_book the response is a 404; the Router, Route, and Template classes consult each other and determine that the requested path is not