Re: how can client make request through proxyserver

2008-07-15 Thread Thierry Boileau
Hello Helen, From this logged issue, does this mean that unless using JDK net connector there is no way to make client request through proxyserver? Actually, the Restlet framework provides 2 HTTP client connectors: - the one based on the Apache HTTP client project - the one based on the JDK

Routing problem

2008-07-15 Thread Ralf Bommersbach
Hello I have a little problem with routing which I just can't seem to find a workaround, perhaps someone here has some idea... Okay the thing is this: In my application I have some routers that are linked together like this: Router rootRouter = new Router(getContext()); Router fooRouter = new

Re: Routing problem

2008-07-15 Thread john . wismar
Ralf Bommersbach [EMAIL PROTECTED] wrote on 07/15/2008 03:01:42 AM: Summary: MODE_STARTS_WITH is a litte too forgiving, MODE_EQUALS a little to strict, particular in regard to slashes at the end (which should make no difference anyways) Any ideas, tips, workarounds are highly welcome!

Cache in Restlet

2008-07-15 Thread Javier Arellano
Hi. I want to implement the Squid cache so it can do something like this: When I get a request like: xxx.com/foo?x=50y=100 it returns a serialized object. So I want that everytime I get the same request, if the object was requested first, the proxy cache returns the cache object without

Re: SSL + Virtual Hosts and Issue #489?

2008-07-15 Thread Alex Milowski
On Sat, Jul 12, 2008 at 5:51 AM, Jerome Louvel [EMAIL PROTECTED] wrote: Hi Alex and Bruno, My understanding is that Alex wants this: - a single server socket accepting all HTTP requests - several SSL certificates selected depending on the matching virtual host I think this can't be done

POST request not return Representation

2008-07-15 Thread Ying Lee
Hi, I want to handle a POST request that I can return my custom response. If it is a GET request, I will override the Representation represent(Variant variant) function, but when the request is a POST, that function is not being called, why?? May be that is by design, if that is the case, how