RE: Re: Re: Restlet Method Call with multiple parameters?

2012-06-23 Thread Philipp E.
dot org Objet : Re: Re: Re: Restlet Method Call with multiple parameters? This isn't currently supported in Restlet. You could make a feature request if you could nail down the behavior precisely. I don't see what's wrong with defining a type for a collection of entities

RE: Re: Re: Restlet Method Call with multiple parameters?

2012-06-22 Thread Philipp E.
thats a valid question, if one would be building a truly restful service, there should be need for a second parameter. Most of my calls use one parameter, but I have one Put call, that updates the Location of a Collection of Entities, that can not be broken of in seperate calls. @Put public

Re: Re: Re: Restlet Method Call with multiple parameters?

2012-06-22 Thread Tim Peierls
This isn't currently supported in Restlet. You could make a feature request if you could nail down the behavior precisely. I don't see what's wrong with defining a type for a collection of entities with a location. It's a resource in your application, so having a class to represent it sounds like

RE: Re: Re: Restlet Method Call with multiple parameters?

2012-06-22 Thread Jerome Louvel
Envoyé : vendredi 22 juin 2012 07:02 À : discuss@restlet.tigris.org Objet : Re: Re: Re: Restlet Method Call with multiple parameters? This isn't currently supported in Restlet. You could make a feature request if you could nail down the behavior precisely. I don't see what's wrong

Re: Restlet Method Call with multiple parameters?

2012-06-21 Thread Tim Peierls
Why do you explicitly clear the list of registered converters and explicitly add the Jackson and XML converters? On Thu, Jun 21, 2012 at 8:30 AM, Philipp E. ftw4r...@gmail.com wrote: I've been playing around with Restlet(2.1 rc5) in the last week to get an Android Client to communicate with a

RE: Re: Restlet Method Call with multiple parameters?

2012-06-21 Thread Philipp E.
Hello Tim, this is a workaround for Android, information about it is available here: http://wiki.restlet.org/docs_2.0/13-restlet/275-restlet/266-restlet.html Why do you explicitly clear the list of registered converters and explicitly add the Jackson and XML converters? On Thu, Jun 21,

Re: Re: Restlet Method Call with multiple parameters?

2012-06-21 Thread Tim Peierls
Ah, makes sense. But why would you expect to be able to send two parameters in a POST? --tim On Thu, Jun 21, 2012 at 11:32 AM, Philipp E. ftw4r...@gmail.com wrote: Hello Tim, this is a workaround for Android, information about it is available here: