How to obtain rootRef from the Application?

2010-06-18 Thread kevinpauli
I am building a large application with Restlet and I am very pleased so far with it. I see that there is a request.getRootRef() method that I can use to get "http://localhost/myapp";, but I want a way to get this RootRef after the Application is started but BEFORE any requests are routed to it. I

RE: Mention proxy in tutorial

2010-06-18 Thread Jerome Louvel
Hi John, We are refactoring the documentation for Restlet Framework 2.0.0 release. Here is the new table of contents: http://www.restlet.org/documentation/2.0/ This user guide includes a "First client" example: http://wiki.restlet.org/docs_2.0/13-restlet/21-restlet/318-restlet/320-restl et.html

RE: Tomcat with Restlet behind Proxy: Communication Error (1001)

2010-06-18 Thread naveenshan
Hello all, We are working on deploying restlet app into tomcat , we are facing a null pointer exception in the process which we think is because the connection is not established between the client and the server. on running the server and client locally everything is working great but on deployi

Re: [https netty]netty connector answering to only one request

2010-06-18 Thread Laurent Rustuel
Hello, Anybody had a chance to test and confirm this ? If it is confirmed, I can create a bug report. Regards, Laurent. Le 09/06/2010 15:40, Laurent Rustuel a écrit : > Hello, > > We tried, in our project, to configure https support. This part was ok :) > Now, we wanted to use netty with https, a

Re: Status of Asynchronous Support

2010-06-18 Thread Tim Peierls
I never saw a response to this, but it does seem like a problem. I don't love the idea of a special exception used purely to handle control flow, but I can't think of anything better off-hand. --tim On Sat, May 22, 2010 at 8:05 PM, Tal Liron wrote: > Hi Jerome, > > > 2. There is a TaskService a

Re: authentication error with jetty on browser

2010-06-18 Thread Bruno Harbulot
Hi Laurent, On 16/06/10 16:49, Laurent Garrigues wrote: > Hello, > > I have an autentification error when I try to reach the URI on my browser > (Firefox). What kind of authentication error do you get, SSL/certificate or basic/digest authentication? If it's just basic/digest authentication, it

Re: Basic authentication via URL arguments

2010-06-18 Thread Bruno Harbulot
On 17/06/10 20:29, webp...@tigris.org wrote: > I've been using the "ChallengeResponse" mechanism to authenticate users so > far. > > ChallengeResponse challengeResponse = getRequest().getChallengeResponse(); > if( challengeResponse == null ){ > throw new RuntimeException("not authenticated")