release() method - doesn't appear to release connections?

2008-08-06 Thread Eric Lui
I'm new to the world of Restlet, but i'm finding it a really expressive framework. I have an application which sends POST requests to a Restlet server using the Restlet Client library, using threads for each POST request. Upon sending the third request, the thread will block indefinitely. It see

Re: 1.0 to 1.1 Migration Guide

2008-08-06 Thread Travis T
Thank you, Thierry. Would you please include information on migrating the 1.0.x poms to 1.1 poms... Information such as changed dependencies would be good. If there is already an online resource for this, can you please send it to me? Thanks. "Thierry Boileau" <[EMAIL PROTECTED]> wrote in mes

GWT.gwt.xml missing in 1.1-M4 classes jar

2008-08-06 Thread Rasmus Agerholm
Hi Just wanted to mention that... while the GWT.gwt.xml is present in the org.restlet.gwt-1.1-M4-sources.jar, it is missing in the org.restlet.gwt-1.1-M4.jar from the maven repo http://maven.restlet.org/org/restlet/org.restlet.gwt/1.1-M4/ Regards, -- Rasmus Agerholm

RE: Restlet way to HttpServletRequest.getPathInfo()

2008-08-06 Thread Sanjay Acharya
>From within a Resource, there are methods you can access of the class >org.restlet.data.Reference to get the necessary information. For example in a >Resource class: getRequest().getResourceRef().getPath(); > To: discuss@restlet.tigris.org > From: [EMA

Restlet way to HttpServletRequest.getPathInfo()

2008-08-06 Thread Leshek
In my Resource, what is the Restlet way to get full path information associated with the URL the client sent when it made the request? That would be function corresponding to HttpServletRequest.getPathInfo(). I am running under servlet adapter, but I do not want to go the ugly way to get the htt

Forward of the request in a Restlet resource

2008-08-06 Thread Dissert Beno�t
Hello, Is there a "standard" Restlet way to make a forward (a J2EE forward, not a redirect), and to decide it in the construction of the representation. (I say a "standard", because I manage to do this, but I won't show the code I wrote since it is a real dirty workaround of the framework). Th

Re: POST from Restlet client to Rails app fails

2008-08-06 Thread Thierry Boileau
Hello Nitya, I think it would be helpful to know the content of the HTTP request sent by both CURL and Restlet client. You can use netcat as a listening program (netcat -l -p number>). It will display the entire content of the request. Could you try this and keep us informed? Best regards, Thi