Updated eXist Restlet Integration

2010-06-03 Thread Alex Milowski
I've updated the eXist Restlet integration available at: http://code.google.com/p/existdb-contrib/ I've moved the code forward to the latest eXist (1.4 or the trunk) and I've updated it to be compatible with the forthcoming Restlet 2.0 release. It now uses the 2.0RC4 version. If you've

Updating RIAP Documentation?

2010-06-03 Thread Alex Milowski
I was looking for more information on exactly how the virtual host RIAP references work and it doesn't seem to be on the current wiki page: http://wiki.restlet.org/docs_2.0/13-restlet/48-restlet/86-restlet/45-restlet.html Here's some specific feedback: 1. I really had to dig to find this

More RIAP Features?

2010-06-03 Thread Alex Milowski
I've been thinking more about how I'd like to use and/or limit the use of RIAP, especially in the context of hosted applications where you are trying to limit access to the resources used by each. Here's a couple of things I'd like to be able to do: 1. I'd like to restrict attached

RE: Acrobat hangs when loading a file via Tomcat

2010-06-03 Thread Jerome Louvel
Hi Hannes, This is weird indeed. Could you try again with 1.1.10? If you still have an issue please file a defect report with details (especially server connector used) and ideally a simple test case to reproduce. Best regards, Jerome Louvel -- Restlet ~ Founder and Technical Lead ~

RE: Multipart form post from android client

2010-06-03 Thread Jerome Louvel
Hi Chris, There is a related discussion here: http://linklens.blogspot.com/2009/06/android-multipart-upload.html We are planning to have direct support for multipart in Restlet API 2.1 only… Best regards, Jerome Louvel -- Restlet ~ Founder and Technical Lead ~ http://www.restlet.org/

Re: Using multiple Applications

2010-06-03 Thread Bruno Harbulot
On 01/06/10 21:51, jupiterroom wrote: Hi. I have an application and have implemented createInboundRoot to root the the resources I want to use. Now I have something I consider to be a new application and what to keep the routing seperate with a different implementation of createInboundRoot.

RE: Restlet and OSGi: not a good combination

2010-06-03 Thread Jerome Louvel
Hi Rickard, Good point, I've updated the ServletAdapter class as well. The clean-up is done just before leaving the service(HttpServletRequest, HttpServletResponse) method. Best regards, Jerome Louvel -- Restlet ~ Founder and Technical Lead ~ http://www.restlet.org Noelios Technologies ~

Question on GWT-Restlet-GAE

2010-06-03 Thread webpost
I have downloaded your Serialization(Contact address) example and test it. I have a couple of confusion if you could help me out: 1. The ContactResourceProxy doesn't implement/inherit from the ContactResource Interface, which is implemented by the ContactServerResource. How does the framework

RE: How to use setStatus(...) ?

2010-06-03 Thread chandra gorantala
Hi HT, You could handle the exception and convert the exception to meaningful message using Representation and send it through getResponse().setEntity(expMessageRep); This will give the better message to caller. Thanks, Chandra --

Restlet and FF in Windows: range out of range (NEW?)

2010-06-03 Thread pegpeg
Hi all, The header request of FF3.6.3 contains a range and if-range header that apparently causes an error with restlet 2.0m7 and the ultimate snapshot too: FF generates call http get and on the second Restlet returns a '501 not implemented error (returning a FileRepresentation of a PDF file).

Re: Restlet and FF in Windows: range out of range (NEW?)

2010-06-03 Thread pegpeg
well, I can't really get around ... some times it works (null-ing range tag) .. some times not don't understand ... help? thanks -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Restlet-and-FF-in-Windows-range-out-of-range-NEW-tp5136708p5136817.html Sent from

Re: Restlet and FF in Windows: range out of range (NEW?)

2010-06-03 Thread pegpeg
how can I know if this is a adobe plugin problem with restlet ? is this the Issue 651 ? I thought it was corrected. -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Restlet-and-FF-in-Windows-range-out-of-range-NEW-tp5136708p5136831.html Sent from the Restlet

Re: Restlet and FF in Windows: range out of range (NEW?)

2010-06-03 Thread pegpeg
well this is th adobe plugin / restlet relationship that causes this error. so this is Issue 651. is there a good way to get around ? -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Restlet-and-FF-in-Windows-range-out-of-range-NEW-tp5136708p5136876.html Sent

Re: Restlet and OSGi: not a good combination

2010-06-03 Thread Rickard Öberg
On 2010-06-04 00.40, Jerome Louvel wrote: Hi Rickard, Good point, I've updated the ServletAdapter class as well. The clean-up is done just before leaving the service(HttpServletRequest, HttpServletResponse) method. Ok, good. Is there any particular reason the cleanup is not done properly?