RE: 1.1m4 release notes --- Added a static

2008-07-10 Thread Jerome Louvel
Hi Tim, Thanks for pointing to this issue, I went too fast here. I've just checked in SVN trunk the fix, following your suggestions. Note that in the execute(Runnable) method, I've replaced execute(new Runnable() by exec.execute(new Runnable() to prevent infinite loops. I hope I didn't miss

RE: Increase the number of threads in the pool with SimpleServer

2008-07-10 Thread Jerome Louvel
Hi Thod, Assuming that you want to configure a Simple HTTP server connector, those settings seem correct. Best regards, Jerome _ De : Todd Nguyen [mailto:[EMAIL PROTECTED] Envoyé : lundi 7 juillet 2008 01:39 À : discuss@restlet.tigris.org Objet : Increase the number of threads in

RE: Hanging on ServerSocket.accept()

2008-07-10 Thread Jerome Louvel
Hi Paul, Thanks for the details, this needs to be looked at more closely. Could you enter a bug report? http://www.restlet.org/community/issues Best regards, Jerome -Message d'origine- De : Paul J. Lucas [mailto:[EMAIL PROTECTED] Envoye : lundi 7 juillet 2008 19:40 A :

RE: Map with ? vs Object in Generic declarations

2008-07-10 Thread Jerome Louvel
Hi Leigh, No problem, I've done the suggested change in SVN trunk for Template and Resolver classes. Let me know if you see other areas where this is needed. Best regards, Jerome -Message d'origine- De : Klotz, Leigh [mailto:[EMAIL PROTECTED] Envoye : lundi 7 juillet 2008 22:18 A

RE: Re: XForm integration with the RestLet framework possible?

2008-07-10 Thread Jerome Louvel
Hi all, Thanks for sharing your design details, this helps understanding how you guys concretely use Restlet, and identify areas where we could (maybe) assist more. I've added a link to this thread in the RFE: Support XQuery and XForms http://restlet.tigris.org/issues/show_bug.cgi?id=8 Best

RE: Mapping methods for a Resource?

2008-07-10 Thread Jerome Louvel
Hi Magnus, I would do it this way: /photos - PhotosResource (GET) /photos/{photoID} - PhotoResource (GET) /photos/{photoID}/votes - PhotoVotesResource (GET or POST) /photos/{photoID}/comments - PhotoCommentsResource (GET or POST) If you want/need to identify each vote or comment individually,

Re: SSL + Virtual Hosts and Issue #489?

2008-07-10 Thread Bruno Harbulot
Hi all, Bruno Harbulot wrote: 1. We assume there's going to be a single SSLContext common to all servers of the component created via an SslContextFactory (it's set up in the Context of the Component). In theory, it should be possible to set up the SSLContext to use a custom X509KeyManager

Re: Hanging on ServerSocket.accept()

2008-07-10 Thread Kevin Conaway
Please attach a thread dump to your bug report. On Thu, Jul 10, 2008 at 4:27 AM, Jerome Louvel [EMAIL PROTECTED] wrote: Hi Paul, Thanks for the details, this needs to be looked at more closely. Could you enter a bug report? http://www.restlet.org/community/issues Best regards, Jerome

Re: 1.1m4 release notes --- Added a static

2008-07-10 Thread Tim Peierls
On Thu, Jul 10, 2008 at 4:16 AM, Jerome Louvel [EMAIL PROTECTED] wrote: Thanks for pointing to this issue, I went too fast here. I've just checked in SVN trunk the fix, following your suggestions. Note that in the execute(Runnable) method, I've replaced execute(new Runnable() by

Engine.registerAuthentication() missing in 1.1-M4?

2008-07-10 Thread Anthony Carlucci
I’ve got a Restlet application working with 1.1-M3 that uses a custom AuthenticationHelper for security. It is registered via the following line: Engine.getInstance().registerAuthentication(new MyCustomHelper()); I recently downloaded version 1.1-M4 and it appears the registerAuthentication

how can client make request through proxyserver

2008-07-10 Thread Helen Chen
Hello there, I'm new to restlet and I'm using restlet 1.0 now. I'm trying to do a client request through the proxyserver, I tried the following ways but they don't work. this is one thing I tried (this kind of followed the sample from the document restlet 1.0- First resource - the client

Resource as an Observer...

2008-07-10 Thread Kit Plummer
Curious if anyone has figured a way to get a router.attached Resource to be an Observer? I'd like to be able to get notifications from a thread to a Resource class. Any other ideas? Kit